POST api/Signing/Account/CreateAccount

Allows a signer to create an account for signing/reviewing documents in a SigningRoom.

Request Information

URI Parameters

None.

Body Parameters

The create account data.

ESignSystems.SmartSAFE.Models.Signing.CreateAccountModel
NameDescriptionTypeAdditional information
Username

Gets or sets the user name for the new account.

string

Required

Max length: 256

Password

Gets or sets the password for the new account.

string

Required

Data type: Password

InvitationCode

Gets or sets the invitation code for the new account.

string

Required

String length: inclusive between 6 and 60

AccessCode

Gets or sets an access code that, if the specified by the SigningRoom admin, the user must provide when signing in to the SigningRoom for the first time.

string

Max length: 32

Request Formats

application/json, text/json

Sample:
{
  "Username": "sample string 1",
  "Password": "sample string 2",
  "InvitationCode": "sample string 3",
  "AccessCode": "sample string 4"
}

application/xml, text/xml

Sample:
<CreateAccountModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Signing">
  <AccessCode>sample string 4</AccessCode>
  <InvitationCode>sample string 3</InvitationCode>
  <Password>sample string 2</Password>
  <Username>sample string 1</Username>
</CreateAccountModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The created user.

ESignSystems.Security.Services.Data.Entities.ApplicationUser
NameDescriptionTypeAdditional information
FirstName

string

Required

Max length: 50

LastName

string

Required

Max length: 50

OrganizationId

integer

None.

ClientId

integer

None.

SignatureFont

string

Max length: 256

Active

boolean

Required

LastLoginDate

date

None.

UpdatedBy

string

Required

Max length: 256

UpdatedDate

date

Required

RequiresPasswordChange

boolean

None.

CustodianId

string

Max length: 64

CreatedBy

string

Required

Max length: 256

CreatedDate

date

Required

Email

string

None.

EmailConfirmed

boolean

None.

PasswordHash

string

None.

SecurityStamp

string

None.

PhoneNumber

string

None.

PhoneNumberConfirmed

boolean

None.

TwoFactorEnabled

boolean

None.

LockoutEndDateUtc

date

None.

LockoutEnabled

boolean

None.

AccessFailedCount

integer

None.

Roles

Collection of ESignSystems.Security.Services.Data.Entities.AspNetUserRole

None.

Claims

Collection of ESignSystems.Security.Services.Data.Entities.AspNetUserClaim

None.

Logins

Collection of ESignSystems.Security.Services.Data.Entities.AspNetExternalLogin

None.

Id

integer

None.

UserName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "FirstName": "sample string 1",
  "LastName": "sample string 2",
  "OrganizationId": 1,
  "ClientId": 1,
  "SignatureFont": "sample string 3",
  "Active": true,
  "LastLoginDate": "2026-01-01T17:28:19.1907674-05:00",
  "UpdatedBy": "sample string 5",
  "UpdatedDate": "2026-01-01T17:28:19.1907674-05:00",
  "RequiresPasswordChange": true,
  "CustodianId": "sample string 8",
  "CreatedBy": "sample string 9",
  "CreatedDate": "2026-01-01T17:28:19.1907674-05:00",
  "Email": "sample string 11",
  "EmailConfirmed": true,
  "PasswordHash": "sample string 13",
  "SecurityStamp": "sample string 14",
  "PhoneNumber": "sample string 15",
  "PhoneNumberConfirmed": true,
  "TwoFactorEnabled": true,
  "LockoutEndDateUtc": "2026-01-01T17:28:19.1907674-05:00",
  "LockoutEnabled": true,
  "AccessFailedCount": 19,
  "Roles": [],
  "Claims": [],
  "Logins": [],
  "Id": 20,
  "UserName": "sample string 21"
}

application/xml, text/xml

Sample:
<ApplicationUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.Security.Services.Data.Entities">
  <AccessFailedCount xmlns="http://schemas.datacontract.org/2004/07/Microsoft.AspNet.Identity.EntityFramework">19</AccessFailedCount>
  <Email xmlns="http://schemas.datacontract.org/2004/07/Microsoft.AspNet.Identity.EntityFramework">sample string 11</Email>
  <EmailConfirmed xmlns="http://schemas.datacontract.org/2004/07/Microsoft.AspNet.Identity.EntityFramework">true</EmailConfirmed>
  <Id xmlns="http://schemas.datacontract.org/2004/07/Microsoft.AspNet.Identity.EntityFramework">20</Id>
  <LockoutEnabled xmlns="http://schemas.datacontract.org/2004/07/Microsoft.AspNet.Identity.EntityFramework">true</LockoutEnabled>
  <LockoutEndDateUtc xmlns="http://schemas.datacontract.org/2004/07/Microsoft.AspNet.Identity.EntityFramework">2026-01-01T17:28:19.1907674-05:00</LockoutEndDateUtc>
  <PasswordHash xmlns="http://schemas.datacontract.org/2004/07/Microsoft.AspNet.Identity.EntityFramework">sample string 13</PasswordHash>
  <PhoneNumber xmlns="http://schemas.datacontract.org/2004/07/Microsoft.AspNet.Identity.EntityFramework">sample string 15</PhoneNumber>
  <PhoneNumberConfirmed xmlns="http://schemas.datacontract.org/2004/07/Microsoft.AspNet.Identity.EntityFramework">true</PhoneNumberConfirmed>
  <SecurityStamp xmlns="http://schemas.datacontract.org/2004/07/Microsoft.AspNet.Identity.EntityFramework">sample string 14</SecurityStamp>
  <TwoFactorEnabled xmlns="http://schemas.datacontract.org/2004/07/Microsoft.AspNet.Identity.EntityFramework">true</TwoFactorEnabled>
  <UserName xmlns="http://schemas.datacontract.org/2004/07/Microsoft.AspNet.Identity.EntityFramework">sample string 21</UserName>
  <Active>true</Active>
  <ClientId>1</ClientId>
  <CreatedBy>sample string 9</CreatedBy>
  <CreatedDate>2026-01-01T17:28:19.1907674-05:00</CreatedDate>
  <CustodianId>sample string 8</CustodianId>
  <FirstName>sample string 1</FirstName>
  <LastLoginDate>2026-01-01T17:28:19.1907674-05:00</LastLoginDate>
  <LastName>sample string 2</LastName>
  <OrganizationId>1</OrganizationId>
  <RequiresPasswordChange>true</RequiresPasswordChange>
  <SignatureFont>sample string 3</SignatureFont>
  <UpdatedBy>sample string 5</UpdatedBy>
  <UpdatedDate>2026-01-01T17:28:19.1907674-05:00</UpdatedDate>
</ApplicationUser>