Requires the role: | manager |
PUT,PATCH | /persons/{Id} |
---|
export class PutPatchOperationUnTenanted<TResponse> implements IPatch, IPut
{
public constructor(init?: Partial<PutPatchOperationUnTenanted<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 UpdatePersonResponse
{
public responseStatus?: ResponseStatus;
public person?: Person;
public constructor(init?: Partial<UpdatePersonResponse>) { (Object as any).assign(this, init); }
}
export class UpdatePersonRequest extends PutPatchOperationUnTenanted<UpdatePersonResponse>
{
public id?: string;
public phoneNumber?: string;
public timezone?: string;
public constructor(init?: Partial<UpdatePersonRequest>) { super(init); (Object as any).assign(this, init); }
}
TypeScript UpdatePersonRequest 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.
PUT /persons/{Id} HTTP/1.1
Host: staging-api.billiecart.com.au
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
id: String,
phoneNumber: String,
timezone: 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 } }