TAG LINE
TAG LINE
SMALL TITLE
The user defined statuses that can be configured and assigned to an Account. Their meaning is then tied to a base status type to determine if it is billable, non-billable or cancelled.
identity READ-ONLY | "identity": 2 Type: Number This is the unique numeric identifier for the AccountStatusType |
name | "name": "Hello World" Type: String The user defined name given to this status type. |
ownerId READ-ONLY | "ownerId": 13 Type: Number Unique identifier for the associated Owner object. |
ownerName READ-ONLY | "ownerName": "Sample Name" Type: String The name of the object associated with the ownerId property. |
isDefault | "isDefault": true Type: Boolean Should this status be used as the default status type. |
preventChanges | "preventChanges": true Type: Boolean If true, a service is assigned this status then the Account will be locked down to prevent changes. |
baseBillingStatusTypeId | "baseBillingStatusTypeId": 17 Type: Number Unique identifier for the associated BaseBillingStatusType object. |
baseBillingStatusTypeName | "baseBillingStatusTypeName": "Sample Name" Type: String The name of the object associated with the baseBillingStatusTypeId property. |
DELETE | Account/StatusType/{id} |
Delete an instance of the AccountStatusType object. Upon successful delete, this API will return a record of all of the related objects deleted with this operation. The specifics on which objects have been deleted will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the AccountStatusType object. |
Delete an instance of the AccountStatusType object. DELETE Account/StatusType/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "delete", "results": { "totalCount": 4, "items": [ { "identity": 1, "action": "deleted", "dtoTypeKey": "accountStatusType" }, { "lhsId": 2, "rhsId": 2, "action": "detached", "dtoTypeKey": "sampleObjectConnector" }, { "foreignKeyIdentity": 2, "action": "deleted", "dtoTypeKey": "sampleObject" } ] } } |
GET | Account/StatusType/ |
Retrieve all of the AccountStatusType objects. | |
Retrieve all of the AccountStatusType objects. GET Account/StatusType/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "name": "Sample Text Data", "ownerId": 7, "ownerName": "Sample Text Data", "isDefault": true, "preventChanges": true, "baseBillingStatusTypeId": 17, "baseBillingStatusTypeName": "Sample Text Data" } ] } |
GET | Account/StatusType/Paged |
Retrieve all of the AccountStatusType objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints. | |
Retrieve all of the AccountStatusType objects in a paged fashion. GET Account/StatusType/Paged HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "pagination": { "pageNumber": 1, "pageSize": 20, "excludeTotalCount": false }, "pagedResults": { "totalCount": 1, "items": [ { "identity": 1, "name": "Sample Text Data", "ownerId": 22, "ownerName": "Sample Text Data", "isDefault": true, "preventChanges": true, "baseBillingStatusTypeId": 0, "baseBillingStatusTypeName": "Sample Text Data" } ] } } |
GET | Account/StatusType/{id} |
Retrieve an instance of the AccountStatusType object by its ID. | |
{id} | Unique identifier for the AccountStatusType object. |
Retrieve an instance of the AccountStatusType object by its ID. GET Account/StatusType/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "name": "Sample Text Data", "ownerId": 7, "ownerName": "Sample Text Data", "isDefault": true, "preventChanges": true, "baseBillingStatusTypeId": 21, "baseBillingStatusTypeName": "Sample Text Data" } } |
POST | Account/StatusType/ |
Create a new instance of the AccountStatusType object. | |
Create a new instance of the AccountStatusType object. POST Account/StatusType/ { "name": "Sample Text Data", "isDefault": true, "preventChanges": true, "baseBillingStatusTypeId": 23 } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "create", "results": { "totalCount": 1, "items": [ { "identity": 1, "name": "Sample Text Data", "ownerId": 0, "ownerName": "Sample Text Data", "isDefault": true, "preventChanges": true, "baseBillingStatusTypeId": 14, "baseBillingStatusTypeName": "Sample Text Data" } ] } } |
PUT | Account/StatusType/{id} |
Update an existing instance of the AccountStatusType object. | |
Update an existing instance of the AccountStatusType object. PUT Account/StatusType/{id} { "identity": 1, "name": "Sample Text Data", "isDefault": true, "preventChanges": true, "baseBillingStatusTypeId": 4 } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "update", "results": { "totalCount": 1, "items": [ { "identity": 1, "name": "Sample Text Data", "ownerId": 23, "ownerName": "Sample Text Data", "isDefault": true, "preventChanges": true, "baseBillingStatusTypeId": 3, "baseBillingStatusTypeName": "Sample Text Data" } ] } } |