POST api/2.0/people/thirdparty/signup
Creates a third-party account with the parameters specified in the request.
Name |
Description |
Type |
Example |
EmployeeType
sent in body
|
Employee type (All, RoomAdmin, User, DocSpaceAdmin, Collaborator)
|
System.Nullable{ASC.Core.Users.EmployeeType}
|
|
FirstName
sent in body
|
First name
|
System.String
|
|
LastName
sent in body
|
Last name
|
System.String
|
|
Email
sent in body
|
Email address
|
System.String
|
|
PasswordHash
sent in body
|
Password hash
|
System.String
|
|
POST api/2.0/people/thirdparty/signup
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"FirstName": "some text",
"LastName": "some text",
"Email": "some text",
"PasswordHash": "some text"
}
This method doesn't return any data.