Get Started
API backend
API system
More information

POST api/2.0/people/thirdparty/signup

Description

Creates a third-party account with the parameters specified in the request.

Parameters
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
Example
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"
}
Returns

This method doesn't return any data.