TAG LINE
TAG LINE
SMALL TITLE

Account / Status Type

(API Version v6)


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.


What can you do with AccountStatusType?


Properties

Property Details
identity
READ-ONLY
"identity": 23
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": 17
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": 10
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.


End Points

DELETEAccount/StatusType/{id}
Delete an instance of the AccountStatusType object. Upon successful delete, this API will return a record of all of the reelated 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}
View Sample Response
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"
            }
        ]
    }
}
GETAccount/StatusType/
Retrieve all of the AccountStatusType objects.
Retrieve all of the AccountStatusType objects.
GET Account/StatusType/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "name": "Sample Text Data",
            "ownerId": 3,
            "ownerName": "Sample Text Data",
            "isDefault": true,
            "preventChanges": true,
            "baseBillingStatusTypeId": 3,
            "baseBillingStatusTypeName": "Sample Text Data"
        }
    ]
}
GETAccount/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
View Sample Response
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": 12,
                "ownerName": "Sample Text Data",
                "isDefault": true,
                "preventChanges": true,
                "baseBillingStatusTypeId": 6,
                "baseBillingStatusTypeName": "Sample Text Data"
            }
        ]
    }
}
GETAccount/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}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "name": "Sample Text Data",
        "ownerId": 16,
        "ownerName": "Sample Text Data",
        "isDefault": true,
        "preventChanges": true,
        "baseBillingStatusTypeId": 5,
        "baseBillingStatusTypeName": "Sample Text Data"
    }
}
POSTAccount/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": 12
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "name": "Sample Text Data",
                "ownerId": 19,
                "ownerName": "Sample Text Data",
                "isDefault": true,
                "preventChanges": true,
                "baseBillingStatusTypeId": 19,
                "baseBillingStatusTypeName": "Sample Text Data"
            }
        ]
    }
}
PUTAccount/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": 27
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "name": "Sample Text Data",
                "ownerId": 12,
                "ownerName": "Sample Text Data",
                "isDefault": true,
                "preventChanges": true,
                "baseBillingStatusTypeId": 0,
                "baseBillingStatusTypeName": "Sample Text Data"
            }
        ]
    }
}