POST | /persons |
---|
export class PostOperationUnTenanted<TResponse> implements IPost
{
public constructor(init?: Partial<PostOperationUnTenanted<TResponse>>) { (Object as any).assign(this, init); }
}
export class UserAccountName
{
public firstName?: string;
public lastName?: string;
public constructor(init?: Partial<UserAccountName>) { (Object as any).assign(this, init); }
}
export class Person implements IIdentifiableResource
{
public name?: UserAccountName;
public displayName?: string;
public email?: string;
public phoneNumber?: string;
public timezone?: string;
public defaultOrganisationId?: string;
public id?: string;
public constructor(init?: Partial<Person>) { (Object as any).assign(this, init); }
}
export class CreatePersonResponse
{
public responseStatus?: ResponseStatus;
public person?: Person;
public constructor(init?: Partial<CreatePersonResponse>) { (Object as any).assign(this, init); }
}
export class CreatePersonRequest extends PostOperationUnTenanted<CreatePersonResponse>
{
public userAccountId?: string;
public timezone?: string;
public phoneNumber?: string;
public constructor(init?: Partial<CreatePersonRequest>) { super(init); (Object as any).assign(this, init); }
}
TypeScript CreatePersonRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /persons HTTP/1.1
Host: staging-api.billiecart.com.au
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
userAccountId: String,
timezone: String,
phoneNumber: String
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { responseStatus: { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String, meta: { String: String } } ], meta: { String: String } }, person: { name: { firstName: String, lastName: String }, displayName: String, email: String, phoneNumber: String, timezone: String, defaultOrganisationId: String, id: String } }