TAG LINE
TAG LINE
SMALL TITLE

Account

(API Version v6)


The Account object represents a customer account in the system. It holds essential information about the details of the account such as when it is billed.


What can you do with Account?


Properties

Property Details
identity
READ-ONLY
"identity": 16
Type: Number
This is the unique numeric identifier for the Account
currencyId
"currencyId": 1
Type: Number
Unique identifier for the associated Currency object.
currencyName
"currencyName": "Sample Name"
Type: String
The name of the object associated with the currencyId property.
ownerId
READ-ONLY
"ownerId": 6
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.
name
"name": "My Account"
Type: String
This is the name given to the account.
created
READ-ONLY
"created": "2021-04-26T15:25:27.587Z"
Type: Date
This is a system generated date when the record was created. Date and time values are specified in the ISO 8601 format.
accountStatusTypeId
"accountStatusTypeId": 17
Type: Number
Unique identifier for the associated AccountStatusType object.
accountStatusTypeName
"accountStatusTypeName": "Sample Name"
Type: String
The name of the object associated with the accountStatusTypeId property.
billGroupId
"billGroupId": 15
Type: Number
Unique identifier for the associated BillGroup object.
billGroupName
"billGroupName": "Sample Name"
Type: String
The name of the object associated with the billGroupId property.
actingOwnerId
READ-ONLY
"actingOwnerId": 0
Type: Number
Unique identifier for the associated Owner object.
actingOwnerName
READ-ONLY
"actingOwnerName": "Sample Name"
Type: String
The name of the object associated with the actingOwnerId property.
lastUpdate
"lastUpdate": "2021-04-26T15:25:27.587Z"
Type: Date
Date and time values are specified in the ISO 8601 format.
effectiveCancel
"effectiveCancel": "2021-04-26T15:25:27.587Z"
Type: Date
This is the date for when the account is to be cancelled.

Date and time values are specified in the ISO 8601 format.
invoiceDeliveryId
"invoiceDeliveryId": 11
Type: Number
Unique identifier for the associated InvoiceDelivery object.
invoiceDeliveryName
"invoiceDeliveryName": "Sample Name"
Type: String
The name of the object associated with the invoiceDeliveryId property.
accountsReceivableTermsId
"accountsReceivableTermsId": 7
Type: Number
Unique identifier for the associated AccountsReceivableTerms object.
accountsReceivableTermsName
"accountsReceivableTermsName": "Sample Name"
Type: String
The name of the object associated with the accountsReceivableTermsId property.
accountTypeId
"accountTypeId": 19
Type: Number
Unique identifier for the associated AccountType object.
accountTypeName
"accountTypeName": "Sample Name"
Type: String
The name of the object associated with the accountTypeId property.
billDay
"billDay": 1
Type: Number
The day of the month that this account's subscriptions and one time charges are billed.
accountTaxCategoryId
"accountTaxCategoryId": 0
Type: Number
Unique identifier for the associated AccountTaxCategory object.
accountTaxCategoryName
"accountTaxCategoryName": "Sample Name"
Type: String
The name of the object associated with the accountTaxCategoryId property.
taxCodeId
"taxCodeId": 8
Type: Number
Unique identifier for the associated TaxCode object.
taxCodeName
"taxCodeName": "Sample Name"
Type: String
The name of the object associated with the taxCodeId property.
invoicerAccountId
"invoicerAccountId": My Invoicer Account
Type: Number
This is the account that will receive the invoice for subscriptions and one-time charges.

Unique identifier for the associated Account object.
invoicerAccountName
"invoicerAccountName": "Sample Name"
Type: String
The name of the object associated with the invoicerAccountId property.
usageInvoicerAccountId
"usageInvoicerAccountId": My Usage Invoicer Account
Type: Number
This is the account that will receive the invoice for usage charges.

Unique identifier for the associated Account object.
usageInvoicerAccountName
"usageInvoicerAccountName": "Sample Name"
Type: String
The name of the object associated with the usageInvoicerAccountId property.
taxSettingAccountId
"taxSettingAccountId": My Usage Invoicer Account
Type: Number
This is the account that is used for tax calculation purposes.

Unique identifier for the associated Account object.
taxSettingAccountName
"taxSettingAccountName": "Sample Name"
Type: String
The name of the object associated with the taxSettingAccountId property.
usageBillDay
"usageBillDay": 1
Type: Number
The day of the month that this account's metered usage is billed.
isReadOnlyBillDay
"isReadOnlyBillDay": true
Type: Boolean
If this account's bill day is inherited from an another invoicer account.
isReadOnlyUsageBillDay
"isReadOnlyUsageBillDay": false
Type: Boolean
If this account's usage bill day is inherited from an another invoicer account.
displayName
"displayName": "Hello World"
Type: String
createdByUserId
"createdByUserId": 13
Type: Number
Unique identifier for the associated User object.
createdByUserName
"createdByUserName": "Sample Name"
Type: String
The name of the object associated with the createdByUserId property.
pendingBillDay
"pendingBillDay": 6
Type: Number
pendingUsageBillDay
"pendingUsageBillDay": 12
Type: Number
lifeline
"lifeline": true
Type: Boolean
id
"id": 15
Type: Number


Patch Types

The PATCH verb allows you to update an object. Just like a put, you only need to supply the fields that will be updated in the payload. However, a patch allows you to update many objects at once.

PATCH operations can be used as a standard API call. Below you will find the child objects that can be updated as part of PATCH operations for the Account object.

Standard PATCH objects:

DataFlow PATCH objects:


End Points

DELETEAccount/{id}
Delete an instance of the Account 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 Account object.
Delete an instance of the Account object.
DELETE Account/{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": "account"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
DELETEAccount/{id}/Contact
Delete a Contact object from the Account. 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 Account object.
{contactId}Unique identifier for the Contact object sent down in the body of the request in JSON format.
{
    "details": {
        "items": [
            {
                "identity": 1
            }
        ]
    }
}
Delete a Contact object from the Account.
DELETE Account/{id}/Contact
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": "account"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
DELETEAccount/{id}/Contact/{contactId}
Delete a Contact/{contactId} object from the Account. 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 Account object.
{contact/{contactid}Id}Unique identifier for the Contact/{contactId} object sent down in the body of the request in JSON format.
{
    "details": {
        "items": [
            {
                "identity": 1
            }
        ]
    }
}
Delete a Contact/{contactId} object from the Account.
DELETE Account/{id}/Contact/{contactId}
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": "account"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
DELETEAccount/{id}/Note
Delete a Note object from the Account. 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 Account object.
{noteId}Unique identifier for the Note object sent down in the body of the request in JSON format.
{
    "details": {
        "items": [
            {
                "identity": 1
            }
        ]
    }
}
Delete a Note object from the Account.
DELETE Account/{id}/Note
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": "account"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETAccount/
Retrieve all of the Account objects.
Retrieve all of the Account objects.
GET Account/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "currencyId": 24,
            "currencyName": "Sample Text Data",
            "ownerId": 12,
            "ownerName": "Sample Text Data",
            "name": "My Account",
            "created": "2021-04-26T15:25:27.587Z",
            "accountStatusTypeId": 23,
            "accountStatusTypeName": "Sample Text Data",
            "billGroupId": 16,
            "billGroupName": "Sample Text Data",
            "actingOwnerId": 19,
            "actingOwnerName": "Sample Text Data",
            "lastUpdate": "2021-04-26T15:25:27.587Z",
            "effectiveCancel": "2021-04-26T15:25:27.587Z",
            "invoiceDeliveryId": 13,
            "invoiceDeliveryName": "Sample Text Data",
            "accountsReceivableTermsId": 3,
            "accountsReceivableTermsName": "Sample Text Data",
            "accountTypeId": 27,
            "accountTypeName": "Sample Text Data",
            "billDay": 1,
            "accountTaxCategoryId": 16,
            "accountTaxCategoryName": "Sample Text Data",
            "taxCodeId": 6,
            "taxCodeName": "Sample Text Data",
            "invoicerAccountId": "My Invoicer Account",
            "invoicerAccountName": "Sample Text Data",
            "usageInvoicerAccountId": "My Usage Invoicer Account",
            "usageInvoicerAccountName": "Sample Text Data",
            "taxSettingAccountId": "My Usage Invoicer Account",
            "taxSettingAccountName": "Sample Text Data",
            "usageBillDay": 1,
            "isReadOnlyBillDay": true,
            "isReadOnlyUsageBillDay": false,
            "displayName": "Sample Text Data",
            "createdByUserId": 1,
            "createdByUserName": "Sample Text Data",
            "pendingBillDay": 21,
            "pendingUsageBillDay": 27,
            "lifeline": true,
            "id": 23
        }
    ]
}
GETAccount/Paged
Retrieve all of the Account 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 Account objects in a paged fashion.
GET Account/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,
                "currencyId": 11,
                "currencyName": "Sample Text Data",
                "ownerId": 23,
                "ownerName": "Sample Text Data",
                "name": "My Account",
                "created": "2021-04-26T15:25:27.587Z",
                "accountStatusTypeId": 21,
                "accountStatusTypeName": "Sample Text Data",
                "billGroupId": 0,
                "billGroupName": "Sample Text Data",
                "actingOwnerId": 13,
                "actingOwnerName": "Sample Text Data",
                "lastUpdate": "2021-04-26T15:25:27.587Z",
                "effectiveCancel": "2021-04-26T15:25:27.587Z",
                "invoiceDeliveryId": 11,
                "invoiceDeliveryName": "Sample Text Data",
                "accountsReceivableTermsId": 5,
                "accountsReceivableTermsName": "Sample Text Data",
                "accountTypeId": 23,
                "accountTypeName": "Sample Text Data",
                "billDay": 1,
                "accountTaxCategoryId": 22,
                "accountTaxCategoryName": "Sample Text Data",
                "taxCodeId": 2,
                "taxCodeName": "Sample Text Data",
                "invoicerAccountId": "My Invoicer Account",
                "invoicerAccountName": "Sample Text Data",
                "usageInvoicerAccountId": "My Usage Invoicer Account",
                "usageInvoicerAccountName": "Sample Text Data",
                "taxSettingAccountId": "My Usage Invoicer Account",
                "taxSettingAccountName": "Sample Text Data",
                "usageBillDay": 1,
                "isReadOnlyBillDay": true,
                "isReadOnlyUsageBillDay": false,
                "displayName": "Sample Text Data",
                "createdByUserId": 16,
                "createdByUserName": "Sample Text Data",
                "pendingBillDay": 12,
                "pendingUsageBillDay": 22,
                "lifeline": true,
                "id": 7
            }
        ]
    }
}
GETAccount/Paged/Detail
Retrieve all of the Account objects in a paged fashion with all object details. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
Retrieve all of the Account objects in a paged fashion with all object details.
GET Account/Paged/Detail
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,
                "currencyId": 17,
                "currencyName": "Sample Text Data",
                "ownerId": 6,
                "ownerName": "Sample Text Data",
                "name": "My Account",
                "created": "2021-04-26T15:25:27.587Z",
                "accountStatusTypeId": 8,
                "accountStatusTypeName": "Sample Text Data",
                "billGroupId": 27,
                "billGroupName": "Sample Text Data",
                "actingOwnerId": 16,
                "actingOwnerName": "Sample Text Data",
                "lastUpdate": "2021-04-26T15:25:27.587Z",
                "effectiveCancel": "2021-04-26T15:25:27.587Z",
                "invoiceDeliveryId": 7,
                "invoiceDeliveryName": "Sample Text Data",
                "accountsReceivableTermsId": 4,
                "accountsReceivableTermsName": "Sample Text Data",
                "accountTypeId": 11,
                "accountTypeName": "Sample Text Data",
                "billDay": 1,
                "accountTaxCategoryId": 24,
                "accountTaxCategoryName": "Sample Text Data",
                "taxCodeId": 3,
                "taxCodeName": "Sample Text Data",
                "invoicerAccountId": "My Invoicer Account",
                "invoicerAccountName": "Sample Text Data",
                "usageInvoicerAccountId": "My Usage Invoicer Account",
                "usageInvoicerAccountName": "Sample Text Data",
                "taxSettingAccountId": "My Usage Invoicer Account",
                "taxSettingAccountName": "Sample Text Data",
                "usageBillDay": 1,
                "isReadOnlyBillDay": true,
                "isReadOnlyUsageBillDay": false,
                "displayName": "Sample Text Data",
                "createdByUserId": 0,
                "createdByUserName": "Sample Text Data",
                "pendingBillDay": 14,
                "pendingUsageBillDay": 17,
                "lifeline": true,
                "id": 7,
                "details": {
                    "parent": {
                        "identity": 90,
                        "accountId": 91,
                        "accountName": "Sample Text Data",
                        "parentAccountId": 72,
                        "parentAccountName": "Sample Text Data",
                        "topAccountId": 50,
                        "topAccountName": "Sample Text Data"
                    },
                    "contacts": [
                        {
                            "identity": 89,
                            "contactTypeId": 82,
                            "contactTypeName": "Sample Text Data",
                            "title": "Sample Text Data",
                            "firstName": "Sample Text Data",
                            "lastName": "Sample Text Data",
                            "isUsedForTax": true,
                            "name": "Sample Text Data",
                            "details": {
                                "contactPoints": [
                                    {
                                        "identity": 32,
                                        "contactPointTypeId": 30,
                                        "contactPointTypeName": "Sample Text Data",
                                        "value": "Sample Text Data",
                                        "contactId": 45
                                    }
                                ],
                                "address": {
                                    "identity": 18,
                                    "address1": "Sample Text Data",
                                    "address2": "Sample Text Data",
                                    "stateId": 12,
                                    "stateName": "Sample Text Data",
                                    "countryId": 5,
                                    "countryName": "Sample Text Data",
                                    "zipCode": "Sample Text Data",
                                    "latitude": 34.38,
                                    "longitude": 72.51,
                                    "cityName": "Sample Text Data",
                                    "taxJurisdictionCodeUpdated": "2021-04-26T15:25:27.587Z",
                                    "isIncorporated": true,
                                    "stateCode": "Sample Text Data",
                                    "countryCode": "Sample Text Data"
                                }
                            }
                        }
                    ],
                    "currentRatePlan": {
                        "identity": 77,
                        "name": "Sample Text Data",
                        "displayName": "Sample Text Data",
                        "start": "2021-04-26T15:25:27.587Z"
                    },
                    "currentPricePlan": {
                        "identity": 4,
                        "name": "Sample Text Data",
                        "accountId": 77,
                        "accountName": "Sample Text Data",
                        "description": "Sample Text Data",
                        "start": "2021-04-26T15:25:27.587Z",
                        "end": "2021-04-26T15:25:27.587Z",
                        "lastUsedForBilling": "2021-04-26T15:25:27.587Z",
                        "includeChildAccounts": true
                    },
                    "accountTaxExemptLevels": [
                        {
                            "identity": 4,
                            "accountId": 9,
                            "accountName": "Sample Text Data",
                            "taxExemptLevelId": 65,
                            "taxExemptLevelName": "Sample Text Data"
                        }
                    ],
                    "accountSummary": {
                        "identity": 60,
                        "accountId": 56,
                        "accountName": "Sample Text Data",
                        "balance": 38.03,
                        "charge": 99.87,
                        "tax": 3.54,
                        "discount": 14.56,
                        "payment": 91.08,
                        "credit": 96.63,
                        "balanceDue": 55.47
                    },
                    "priceBookRegions": [
                        {
                            "identity": 69,
                            "name": "Sample Text Data",
                            "description": "Sample Text Data",
                            "isActive": true,
                            "created": "2021-04-26T15:25:27.587Z"
                        }
                    ]
                }
            }
        ]
    }
}
GETAccount/{id}
Retrieve an instance of the Account object by its ID.
{id}Unique identifier for the Account object.
Retrieve an instance of the Account object by its ID.
GET Account/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "currencyId": 2,
        "currencyName": "Sample Text Data",
        "ownerId": 11,
        "ownerName": "Sample Text Data",
        "name": "My Account",
        "created": "2021-04-26T15:25:27.587Z",
        "accountStatusTypeId": 19,
        "accountStatusTypeName": "Sample Text Data",
        "billGroupId": 4,
        "billGroupName": "Sample Text Data",
        "actingOwnerId": 15,
        "actingOwnerName": "Sample Text Data",
        "lastUpdate": "2021-04-26T15:25:27.587Z",
        "effectiveCancel": "2021-04-26T15:25:27.587Z",
        "invoiceDeliveryId": 27,
        "invoiceDeliveryName": "Sample Text Data",
        "accountsReceivableTermsId": 7,
        "accountsReceivableTermsName": "Sample Text Data",
        "accountTypeId": 1,
        "accountTypeName": "Sample Text Data",
        "billDay": 1,
        "accountTaxCategoryId": 5,
        "accountTaxCategoryName": "Sample Text Data",
        "taxCodeId": 5,
        "taxCodeName": "Sample Text Data",
        "invoicerAccountId": "My Invoicer Account",
        "invoicerAccountName": "Sample Text Data",
        "usageInvoicerAccountId": "My Usage Invoicer Account",
        "usageInvoicerAccountName": "Sample Text Data",
        "taxSettingAccountId": "My Usage Invoicer Account",
        "taxSettingAccountName": "Sample Text Data",
        "usageBillDay": 1,
        "isReadOnlyBillDay": true,
        "isReadOnlyUsageBillDay": false,
        "displayName": "Sample Text Data",
        "createdByUserId": 10,
        "createdByUserName": "Sample Text Data",
        "pendingBillDay": 5,
        "pendingUsageBillDay": 15,
        "lifeline": true,
        "id": 26
    }
}
GETAccount/{id}/Contact
Retrieve all of the Contact objects for the specified Account.
{id}Unique identifier for the Account object.
Retrieve all of the Contact objects for the specified Account.
GET Account/{id}/Contact
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "details": {
            "totalCount": 1,
            "items": [
                {
                    "identity": 1,
                    "contactTypeId": 12,
                    "contactTypeName": "Sample Text Data",
                    "title": "Mr.",
                    "firstName": "John",
                    "lastName": "Doe",
                    "isUsedForTax": true
                }
            ]
        }
    }
}
GETAccount/{id}/Contact/Paged
Retrieve all of the Contact objects for a specified Account 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.
{id}Unique identifier for the Account object.
Retrieve all of the Contact objects for a specified Account in a paged fashion.
GET Account/{id}/Contact/Paged
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "details": {
            "pagination": {
                "pageNumber": 1,
                "pageSize": 20,
                "excludeTotalCount": false
            },
            "pagedResults": {
                "totalCount": 1,
                "items": [
                    {
                        "identity": 1,
                        "contactTypeId": 3,
                        "contactTypeName": "Sample Text Data",
                        "title": "Mr.",
                        "firstName": "John",
                        "lastName": "Doe",
                        "isUsedForTax": true
                    }
                ]
            }
        }
    }
}
GETAccount/{id}/Contact/{contactId}
Retrieve a specified Contact object by its ID for a specified Account.
{id}Unique identifier for the Account object.
{contactId}Unique identifier for the Contact object.
Retrieve a specified Contact object by its ID for a specified Account.
GET Account/{id}/Contact/{contactId}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "details": {
            "totalCount": 1,
            "items": [
                {
                    "identity": 1,
                    "contactTypeId": 7,
                    "contactTypeName": "Sample Text Data",
                    "title": "Mr.",
                    "firstName": "John",
                    "lastName": "Doe",
                    "isUsedForTax": true
                }
            ]
        }
    }
}
GETAccount/{id}/Contact/{contactId}/Detail
Retrieve deep detail of the Account object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
{id}Unique identifier for the Account object.
Retrieve deep detail of the Account object by its ID.
GET Account/{id}/Contact/{contactId}/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "currencyId": 12,
        "currencyName": "Sample Text Data",
        "ownerId": 9,
        "ownerName": "Sample Text Data",
        "name": "My Account",
        "created": "2021-04-26T15:25:27.587Z",
        "accountStatusTypeId": 9,
        "accountStatusTypeName": "Sample Text Data",
        "billGroupId": 8,
        "billGroupName": "Sample Text Data",
        "actingOwnerId": 9,
        "actingOwnerName": "Sample Text Data",
        "lastUpdate": "2021-04-26T15:25:27.587Z",
        "effectiveCancel": "2021-04-26T15:25:27.587Z",
        "invoiceDeliveryId": 26,
        "invoiceDeliveryName": "Sample Text Data",
        "accountsReceivableTermsId": 11,
        "accountsReceivableTermsName": "Sample Text Data",
        "accountTypeId": 15,
        "accountTypeName": "Sample Text Data",
        "billDay": 1,
        "accountTaxCategoryId": 19,
        "accountTaxCategoryName": "Sample Text Data",
        "taxCodeId": 24,
        "taxCodeName": "Sample Text Data",
        "invoicerAccountId": "My Invoicer Account",
        "invoicerAccountName": "Sample Text Data",
        "usageInvoicerAccountId": "My Usage Invoicer Account",
        "usageInvoicerAccountName": "Sample Text Data",
        "taxSettingAccountId": "My Usage Invoicer Account",
        "taxSettingAccountName": "Sample Text Data",
        "usageBillDay": 1,
        "isReadOnlyBillDay": true,
        "isReadOnlyUsageBillDay": false,
        "displayName": "Sample Text Data",
        "createdByUserId": 1,
        "createdByUserName": "Sample Text Data",
        "pendingBillDay": 17,
        "pendingUsageBillDay": 12,
        "lifeline": true,
        "id": 3,
        "details": {
            "parent": {
                "identity": 90,
                "accountId": 91,
                "accountName": "Sample Text Data",
                "parentAccountId": 72,
                "parentAccountName": "Sample Text Data",
                "topAccountId": 50,
                "topAccountName": "Sample Text Data"
            },
            "contacts": [
                {
                    "identity": 89,
                    "contactTypeId": 82,
                    "contactTypeName": "Sample Text Data",
                    "title": "Sample Text Data",
                    "firstName": "Sample Text Data",
                    "lastName": "Sample Text Data",
                    "isUsedForTax": true,
                    "name": "Sample Text Data",
                    "details": {
                        "contactPoints": [
                            {
                                "identity": 32,
                                "contactPointTypeId": 30,
                                "contactPointTypeName": "Sample Text Data",
                                "value": "Sample Text Data",
                                "contactId": 45
                            }
                        ],
                        "address": {
                            "identity": 18,
                            "address1": "Sample Text Data",
                            "address2": "Sample Text Data",
                            "stateId": 12,
                            "stateName": "Sample Text Data",
                            "countryId": 5,
                            "countryName": "Sample Text Data",
                            "zipCode": "Sample Text Data",
                            "latitude": 34.38,
                            "longitude": 72.51,
                            "cityName": "Sample Text Data",
                            "taxJurisdictionCodeUpdated": "2021-04-26T15:25:27.587Z",
                            "isIncorporated": true,
                            "stateCode": "Sample Text Data",
                            "countryCode": "Sample Text Data"
                        }
                    }
                }
            ],
            "currentRatePlan": {
                "identity": 77,
                "name": "Sample Text Data",
                "displayName": "Sample Text Data",
                "start": "2021-04-26T15:25:27.587Z"
            },
            "currentPricePlan": {
                "identity": 4,
                "name": "Sample Text Data",
                "accountId": 77,
                "accountName": "Sample Text Data",
                "description": "Sample Text Data",
                "start": "2021-04-26T15:25:27.587Z",
                "end": "2021-04-26T15:25:27.587Z",
                "lastUsedForBilling": "2021-04-26T15:25:27.587Z",
                "includeChildAccounts": true
            },
            "accountTaxExemptLevels": [
                {
                    "identity": 4,
                    "accountId": 9,
                    "accountName": "Sample Text Data",
                    "taxExemptLevelId": 65,
                    "taxExemptLevelName": "Sample Text Data"
                }
            ],
            "accountSummary": {
                "identity": 60,
                "accountId": 56,
                "accountName": "Sample Text Data",
                "balance": 38.03,
                "charge": 99.87,
                "tax": 3.54,
                "discount": 14.56,
                "payment": 91.08,
                "credit": 96.63,
                "balanceDue": 55.47
            },
            "priceBookRegions": [
                {
                    "identity": 69,
                    "name": "Sample Text Data",
                    "description": "Sample Text Data",
                    "isActive": true,
                    "created": "2021-04-26T15:25:27.587Z"
                }
            ]
        }
    }
}
GETAccount/{id}/Detail
Retrieve deep detail of the Account object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
{id}Unique identifier for the Account object.
Retrieve deep detail of the Account object by its ID.
GET Account/{id}/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "currencyId": 25,
        "currencyName": "Sample Text Data",
        "ownerId": 4,
        "ownerName": "Sample Text Data",
        "name": "My Account",
        "created": "2021-04-26T15:25:27.587Z",
        "accountStatusTypeId": 17,
        "accountStatusTypeName": "Sample Text Data",
        "billGroupId": 1,
        "billGroupName": "Sample Text Data",
        "actingOwnerId": 13,
        "actingOwnerName": "Sample Text Data",
        "lastUpdate": "2021-04-26T15:25:27.587Z",
        "effectiveCancel": "2021-04-26T15:25:27.587Z",
        "invoiceDeliveryId": 17,
        "invoiceDeliveryName": "Sample Text Data",
        "accountsReceivableTermsId": 15,
        "accountsReceivableTermsName": "Sample Text Data",
        "accountTypeId": 25,
        "accountTypeName": "Sample Text Data",
        "billDay": 1,
        "accountTaxCategoryId": 15,
        "accountTaxCategoryName": "Sample Text Data",
        "taxCodeId": 18,
        "taxCodeName": "Sample Text Data",
        "invoicerAccountId": "My Invoicer Account",
        "invoicerAccountName": "Sample Text Data",
        "usageInvoicerAccountId": "My Usage Invoicer Account",
        "usageInvoicerAccountName": "Sample Text Data",
        "taxSettingAccountId": "My Usage Invoicer Account",
        "taxSettingAccountName": "Sample Text Data",
        "usageBillDay": 1,
        "isReadOnlyBillDay": true,
        "isReadOnlyUsageBillDay": false,
        "displayName": "Sample Text Data",
        "createdByUserId": 4,
        "createdByUserName": "Sample Text Data",
        "pendingBillDay": 0,
        "pendingUsageBillDay": 4,
        "lifeline": true,
        "id": 3,
        "details": {
            "parent": {
                "identity": 90,
                "accountId": 91,
                "accountName": "Sample Text Data",
                "parentAccountId": 72,
                "parentAccountName": "Sample Text Data",
                "topAccountId": 50,
                "topAccountName": "Sample Text Data"
            },
            "contacts": [
                {
                    "identity": 89,
                    "contactTypeId": 82,
                    "contactTypeName": "Sample Text Data",
                    "title": "Sample Text Data",
                    "firstName": "Sample Text Data",
                    "lastName": "Sample Text Data",
                    "isUsedForTax": true,
                    "name": "Sample Text Data",
                    "details": {
                        "contactPoints": [
                            {
                                "identity": 32,
                                "contactPointTypeId": 30,
                                "contactPointTypeName": "Sample Text Data",
                                "value": "Sample Text Data",
                                "contactId": 45
                            }
                        ],
                        "address": {
                            "identity": 18,
                            "address1": "Sample Text Data",
                            "address2": "Sample Text Data",
                            "stateId": 12,
                            "stateName": "Sample Text Data",
                            "countryId": 5,
                            "countryName": "Sample Text Data",
                            "zipCode": "Sample Text Data",
                            "latitude": 34.38,
                            "longitude": 72.51,
                            "cityName": "Sample Text Data",
                            "taxJurisdictionCodeUpdated": "2021-04-26T15:25:27.587Z",
                            "isIncorporated": true,
                            "stateCode": "Sample Text Data",
                            "countryCode": "Sample Text Data"
                        }
                    }
                }
            ],
            "currentRatePlan": {
                "identity": 77,
                "name": "Sample Text Data",
                "displayName": "Sample Text Data",
                "start": "2021-04-26T15:25:27.587Z"
            },
            "currentPricePlan": {
                "identity": 4,
                "name": "Sample Text Data",
                "accountId": 77,
                "accountName": "Sample Text Data",
                "description": "Sample Text Data",
                "start": "2021-04-26T15:25:27.587Z",
                "end": "2021-04-26T15:25:27.587Z",
                "lastUsedForBilling": "2021-04-26T15:25:27.587Z",
                "includeChildAccounts": true
            },
            "accountTaxExemptLevels": [
                {
                    "identity": 4,
                    "accountId": 9,
                    "accountName": "Sample Text Data",
                    "taxExemptLevelId": 65,
                    "taxExemptLevelName": "Sample Text Data"
                }
            ],
            "accountSummary": {
                "identity": 60,
                "accountId": 56,
                "accountName": "Sample Text Data",
                "balance": 38.03,
                "charge": 99.87,
                "tax": 3.54,
                "discount": 14.56,
                "payment": 91.08,
                "credit": 96.63,
                "balanceDue": 55.47
            },
            "priceBookRegions": [
                {
                    "identity": 69,
                    "name": "Sample Text Data",
                    "description": "Sample Text Data",
                    "isActive": true,
                    "created": "2021-04-26T15:25:27.587Z"
                }
            ]
        }
    }
}
GETAccount/{id}/Note
Retrieve all of the Note objects for the specified Account.
{id}Unique identifier for the Account object.
Retrieve all of the Note objects for the specified Account.
GET Account/{id}/Note
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "details": {
            "totalCount": 1,
            "items": [
                {
                    "identity": 1,
                    "subject": "Delivery Instuctions",
                    "text": "Drop off at rear door.",
                    "noteTypeId": 8,
                    "noteTypeName": "Sample Text Data",
                    "created": "2021-04-26T15:25:27.587Z",
                    "createdByUserId": 2,
                    "createdByUserName": "Sample Text Data",
                    "updated": "2021-04-26T15:25:27.587Z",
                    "updatedByUserId": 12,
                    "updatedByUserName": "Sample Text Data",
                    "showOnOverview": true,
                    "isImportant": true
                }
            ]
        }
    }
}
GETAccount/{id}/Note/Paged
Retrieve all of the Note objects for a specified Account 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.
{id}Unique identifier for the Account object.
Retrieve all of the Note objects for a specified Account in a paged fashion.
GET Account/{id}/Note/Paged
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "details": {
            "pagination": {
                "pageNumber": 1,
                "pageSize": 20,
                "excludeTotalCount": false
            },
            "pagedResults": {
                "totalCount": 1,
                "items": [
                    {
                        "identity": 1,
                        "subject": "Delivery Instuctions",
                        "text": "Drop off at rear door.",
                        "noteTypeId": 25,
                        "noteTypeName": "Sample Text Data",
                        "created": "2021-04-26T15:25:27.587Z",
                        "createdByUserId": 24,
                        "createdByUserName": "Sample Text Data",
                        "updated": "2021-04-26T15:25:27.587Z",
                        "updatedByUserId": 1,
                        "updatedByUserName": "Sample Text Data",
                        "showOnOverview": true,
                        "isImportant": true
                    }
                ]
            }
        }
    }
}
GETAccount/{id}/Note/{noteId}
Retrieve a specified Note object by its ID for a specified Account.
{id}Unique identifier for the Account object.
{noteId}Unique identifier for the Note object.
Retrieve a specified Note object by its ID for a specified Account.
GET Account/{id}/Note/{noteId}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "details": {
            "totalCount": 1,
            "items": [
                {
                    "identity": 1,
                    "subject": "Delivery Instuctions",
                    "text": "Drop off at rear door.",
                    "noteTypeId": 18,
                    "noteTypeName": "Sample Text Data",
                    "created": "2021-04-26T15:25:27.587Z",
                    "createdByUserId": 27,
                    "createdByUserName": "Sample Text Data",
                    "updated": "2021-04-26T15:25:27.587Z",
                    "updatedByUserId": 10,
                    "updatedByUserName": "Sample Text Data",
                    "showOnOverview": true,
                    "isImportant": true
                }
            ]
        }
    }
}
PATCHAccount/{id}
Update or Add the Account object and optionally make changes to any child objects. Patch end points allow for adding/updating multiple related entities and the results of those changes will be reported in the response JSON payload in the items array.
{id}Unique identifier for the Account object.
Update or Add the Account object and optionally make changes to any child objects.
PATCH Account/{id}

{
    "details": {},
    "accounts": {
        "items": [
            {
                "patchType": "create",
                "patchClientId": 1,
                "currencyId": 26,
                "name": "My Account",
                "accountStatusTypeId": 11,
                "billGroupId": 23,
                "lastUpdate": "2021-04-26T15:25:27.587Z",
                "effectiveCancel": "2021-04-26T15:25:27.587Z",
                "invoiceDeliveryId": 24,
                "accountsReceivableTermsId": 24,
                "accountTypeId": 12,
                "billDay": 1,
                "accountTaxCategoryId": 10,
                "taxCodeId": 22,
                "invoicerAccountId": "My Invoicer Account",
                "usageInvoicerAccountId": "My Usage Invoicer Account",
                "taxSettingAccountId": "My Usage Invoicer Account",
                "usageBillDay": 1,
                "isReadOnlyBillDay": true,
                "isReadOnlyUsageBillDay": false,
                "displayName": "Sample Text Data",
                "createdByUserId": 19,
                "pendingBillDay": 2,
                "pendingUsageBillDay": 19,
                "lifeline": true,
                "id": 24
            }
        ]
    }
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "patch",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "action": "created",
                "dtoTypeKey": "account",
                "instance": {
                    "identity": 1,
                    "currencyId": 25,
                    "currencyName": "Sample Text Data",
                    "ownerId": 18,
                    "ownerName": "Sample Text Data",
                    "name": "My Account",
                    "created": "2021-04-26T15:25:27.587Z",
                    "accountStatusTypeId": 24,
                    "accountStatusTypeName": "Sample Text Data",
                    "billGroupId": 7,
                    "billGroupName": "Sample Text Data",
                    "actingOwnerId": 22,
                    "actingOwnerName": "Sample Text Data",
                    "lastUpdate": "2021-04-26T15:25:27.587Z",
                    "effectiveCancel": "2021-04-26T15:25:27.587Z",
                    "invoiceDeliveryId": 19,
                    "invoiceDeliveryName": "Sample Text Data",
                    "accountsReceivableTermsId": 26,
                    "accountsReceivableTermsName": "Sample Text Data",
                    "accountTypeId": 3,
                    "accountTypeName": "Sample Text Data",
                    "billDay": 1,
                    "accountTaxCategoryId": 12,
                    "accountTaxCategoryName": "Sample Text Data",
                    "taxCodeId": 10,
                    "taxCodeName": "Sample Text Data",
                    "invoicerAccountId": "My Invoicer Account",
                    "invoicerAccountName": "Sample Text Data",
                    "usageInvoicerAccountId": "My Usage Invoicer Account",
                    "usageInvoicerAccountName": "Sample Text Data",
                    "taxSettingAccountId": "My Usage Invoicer Account",
                    "taxSettingAccountName": "Sample Text Data",
                    "usageBillDay": 1,
                    "isReadOnlyBillDay": true,
                    "isReadOnlyUsageBillDay": false,
                    "displayName": "Sample Text Data",
                    "createdByUserId": 8,
                    "createdByUserName": "Sample Text Data",
                    "pendingBillDay": 22,
                    "pendingUsageBillDay": 0,
                    "lifeline": true,
                    "id": 19
                }
            }
        ]
    }
}
POSTAccount/
Create a new instance of the Account object.
Create a new instance of the Account object.
POST Account/

{
    "currencyId": 12,
    "name": "My Account",
    "accountStatusTypeId": 8,
    "billGroupId": 21,
    "lastUpdate": "2021-04-26T15:25:27.587Z",
    "effectiveCancel": "2021-04-26T15:25:27.587Z",
    "invoiceDeliveryId": 13,
    "accountsReceivableTermsId": 9,
    "accountTypeId": 6,
    "billDay": 1,
    "accountTaxCategoryId": 10,
    "taxCodeId": 15,
    "invoicerAccountId": "My Invoicer Account",
    "usageInvoicerAccountId": "My Usage Invoicer Account",
    "taxSettingAccountId": "My Usage Invoicer Account",
    "usageBillDay": 1,
    "isReadOnlyBillDay": true,
    "isReadOnlyUsageBillDay": false,
    "displayName": "Sample Text Data",
    "createdByUserId": 26,
    "pendingBillDay": 22,
    "pendingUsageBillDay": 23,
    "lifeline": true,
    "id": 4
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "currencyId": 5,
                "currencyName": "Sample Text Data",
                "ownerId": 6,
                "ownerName": "Sample Text Data",
                "name": "My Account",
                "created": "2021-04-26T15:25:27.587Z",
                "accountStatusTypeId": 26,
                "accountStatusTypeName": "Sample Text Data",
                "billGroupId": 5,
                "billGroupName": "Sample Text Data",
                "actingOwnerId": 27,
                "actingOwnerName": "Sample Text Data",
                "lastUpdate": "2021-04-26T15:25:27.587Z",
                "effectiveCancel": "2021-04-26T15:25:27.587Z",
                "invoiceDeliveryId": 10,
                "invoiceDeliveryName": "Sample Text Data",
                "accountsReceivableTermsId": 22,
                "accountsReceivableTermsName": "Sample Text Data",
                "accountTypeId": 20,
                "accountTypeName": "Sample Text Data",
                "billDay": 1,
                "accountTaxCategoryId": 2,
                "accountTaxCategoryName": "Sample Text Data",
                "taxCodeId": 3,
                "taxCodeName": "Sample Text Data",
                "invoicerAccountId": "My Invoicer Account",
                "invoicerAccountName": "Sample Text Data",
                "usageInvoicerAccountId": "My Usage Invoicer Account",
                "usageInvoicerAccountName": "Sample Text Data",
                "taxSettingAccountId": "My Usage Invoicer Account",
                "taxSettingAccountName": "Sample Text Data",
                "usageBillDay": 1,
                "isReadOnlyBillDay": true,
                "isReadOnlyUsageBillDay": false,
                "displayName": "Sample Text Data",
                "createdByUserId": 15,
                "createdByUserName": "Sample Text Data",
                "pendingBillDay": 21,
                "pendingUsageBillDay": 3,
                "lifeline": true,
                "id": 6
            }
        ]
    }
}
POSTAccount/{id}/Contact
Create a new instance of a Contact object that belongs to the Account.
{id}Unique identifier for the Account object.
Create a new instance of a Contact object that belongs to the Account.
POST Account/{id}/Contact

{
    "contactTypeId": 20,
    "title": "Mr.",
    "firstName": "John",
    "lastName": "Doe",
    "isUsedForTax": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "contactTypeId": 19,
                "contactTypeName": "Sample Text Data",
                "title": "Mr.",
                "firstName": "John",
                "lastName": "Doe",
                "isUsedForTax": true
            }
        ]
    }
}
POSTAccount/{id}/Note
Create a new instance of a Note object that belongs to the Account.
{id}Unique identifier for the Account object.
Create a new instance of a Note object that belongs to the Account.
POST Account/{id}/Note

{
    "subject": "Delivery Instuctions",
    "text": "Drop off at rear door.",
    "noteTypeId": 25,
    "createdByUserId": 26,
    "updatedByUserId": 16,
    "showOnOverview": true,
    "isImportant": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "subject": "Delivery Instuctions",
                "text": "Drop off at rear door.",
                "noteTypeId": 1,
                "noteTypeName": "Sample Text Data",
                "created": "2021-04-26T15:25:27.587Z",
                "createdByUserId": 27,
                "createdByUserName": "Sample Text Data",
                "updated": "2021-04-26T15:25:27.587Z",
                "updatedByUserId": 0,
                "updatedByUserName": "Sample Text Data",
                "showOnOverview": true,
                "isImportant": true
            }
        ]
    }
}
POSTAccount/{id}/Patch
This method is only created as work around in order to provide PATCH capability for Salesforce that can only submit POST calls. Typically an internal API with limited use.
{id}Unique identifier for the Account object.
PUTAccount/{id}
Update an existing instance of the Account object.
Update an existing instance of the Account object.
PUT Account/{id}

{
    "identity": 1,
    "currencyId": 24,
    "name": "My Account",
    "accountStatusTypeId": 10,
    "billGroupId": 13,
    "lastUpdate": "2021-04-26T15:25:27.587Z",
    "effectiveCancel": "2021-04-26T15:25:27.587Z",
    "invoiceDeliveryId": 5,
    "accountsReceivableTermsId": 27,
    "accountTypeId": 12,
    "billDay": 1,
    "accountTaxCategoryId": 5,
    "taxCodeId": 17,
    "invoicerAccountId": "My Invoicer Account",
    "usageInvoicerAccountId": "My Usage Invoicer Account",
    "taxSettingAccountId": "My Usage Invoicer Account",
    "usageBillDay": 1,
    "isReadOnlyBillDay": true,
    "isReadOnlyUsageBillDay": false,
    "displayName": "Sample Text Data",
    "createdByUserId": 18,
    "pendingBillDay": 16,
    "pendingUsageBillDay": 1,
    "lifeline": true,
    "id": 11
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "currencyId": 15,
                "currencyName": "Sample Text Data",
                "ownerId": 5,
                "ownerName": "Sample Text Data",
                "name": "My Account",
                "created": "2021-04-26T15:25:27.587Z",
                "accountStatusTypeId": 21,
                "accountStatusTypeName": "Sample Text Data",
                "billGroupId": 20,
                "billGroupName": "Sample Text Data",
                "actingOwnerId": 5,
                "actingOwnerName": "Sample Text Data",
                "lastUpdate": "2021-04-26T15:25:27.587Z",
                "effectiveCancel": "2021-04-26T15:25:27.587Z",
                "invoiceDeliveryId": 22,
                "invoiceDeliveryName": "Sample Text Data",
                "accountsReceivableTermsId": 2,
                "accountsReceivableTermsName": "Sample Text Data",
                "accountTypeId": 15,
                "accountTypeName": "Sample Text Data",
                "billDay": 1,
                "accountTaxCategoryId": 7,
                "accountTaxCategoryName": "Sample Text Data",
                "taxCodeId": 19,
                "taxCodeName": "Sample Text Data",
                "invoicerAccountId": "My Invoicer Account",
                "invoicerAccountName": "Sample Text Data",
                "usageInvoicerAccountId": "My Usage Invoicer Account",
                "usageInvoicerAccountName": "Sample Text Data",
                "taxSettingAccountId": "My Usage Invoicer Account",
                "taxSettingAccountName": "Sample Text Data",
                "usageBillDay": 1,
                "isReadOnlyBillDay": true,
                "isReadOnlyUsageBillDay": false,
                "displayName": "Sample Text Data",
                "createdByUserId": 22,
                "createdByUserName": "Sample Text Data",
                "pendingBillDay": 7,
                "pendingUsageBillDay": 0,
                "lifeline": true,
                "id": 18
            }
        ]
    }
}
PUTAccount/{id}/Contact
Update an existing instance of a Contact object that belongs to the Account.
{id}Unique identifier for the Account object.
Update an existing instance of a Contact object that belongs to the Account.
PUT Account/{id}/Contact

{
    "identity": 1,
    "contactTypeId": 5,
    "title": "Mr.",
    "firstName": "John",
    "lastName": "Doe",
    "isUsedForTax": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "contactTypeId": 3,
                "contactTypeName": "Sample Text Data",
                "title": "Mr.",
                "firstName": "John",
                "lastName": "Doe",
                "isUsedForTax": true
            }
        ]
    }
}
PUTAccount/{id}/Note
Update an existing instance of a Note object that belongs to the Account.
{id}Unique identifier for the Account object.
Update an existing instance of a Note object that belongs to the Account.
PUT Account/{id}/Note

{
    "identity": 1,
    "subject": "Delivery Instuctions",
    "text": "Drop off at rear door.",
    "noteTypeId": 26,
    "createdByUserId": 12,
    "updatedByUserId": 15,
    "showOnOverview": true,
    "isImportant": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "subject": "Delivery Instuctions",
                "text": "Drop off at rear door.",
                "noteTypeId": 17,
                "noteTypeName": "Sample Text Data",
                "created": "2021-04-26T15:25:27.587Z",
                "createdByUserId": 4,
                "createdByUserName": "Sample Text Data",
                "updated": "2021-04-26T15:25:27.587Z",
                "updatedByUserId": 25,
                "updatedByUserName": "Sample Text Data",
                "showOnOverview": true,
                "isImportant": true
            }
        ]
    }
}