I try to create a new user by REST API as documented but I get an error.
This is an example:
POST https://MYCOMPANY.docuware.cloud/DocuWare/Platform/Organization/UserInfo
{
"Name": "Demo",
"DbName": "DEMO",
"Email": "demo@mycompany.com",
"NetworkId": "",
"Password": "mysecretpw"
}
Response:
{
"Message": "'' is not valid user id",
"Exception": "InvalidGuidException: '' is not valid user id",
"Uri": "http://MYCOMPANY.docuware.cloud/DocuWare/Platform/Organization/UserInfo",
"Method": "POST",
"StatusCode": 422,
"Status": "Unprocessable Entity",
"InternalCode": 0
}
I would like to know what I am doing wrong.
Thank you in advance.