Billiecart API

<back to all web services

UpdatePersonRequest

Requires Authentication
Requires the role:manager
The following routes are available for this service:
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 .json suffix or ?format=json

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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: application/json
Content-Type: application/json
Content-Length: length

{"id":"String","phoneNumber":"String","timezone":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
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"}}