TAG LINE
TAG LINE
SMALL TITLE

Account / Summary

(API Version v6)


What can you do with AccountSummary?


Properties

Property Details
identity
READ-ONLY
"identity": 7
Type: Number
This is the unique numeric identifier for the AccountSummary
accountId
"accountId": 1
Type: Number
Unique identifier for the associated Account object.
accountName
"accountName": "Sample Name"
Type: String
The name of the object associated with the accountId property.
balance
"balance": 18
Type: Number
charge
"charge": 27
Type: Number
tax
"tax": 27
Type: Number
discount
"discount": 4
Type: Number
payment
"payment": 13
Type: Number
credit
"credit": 16
Type: Number
balanceDue
"balanceDue": 23
Type: Number


End Points

GETAccount/Summary/
Retrieve all of the AccountSummary objects.
Retrieve all of the AccountSummary objects.
GET Account/Summary/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "accountId": 4,
            "accountName": "Sample Text Data",
            "balance": 22,
            "charge": 25,
            "tax": 15,
            "discount": 22,
            "payment": 10,
            "credit": 16,
            "balanceDue": 22
        }
    ]
}
GETAccount/Summary/Paged
Retrieve all of the AccountSummary 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 AccountSummary objects in a paged fashion.
GET Account/Summary/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,
                "accountId": 13,
                "accountName": "Sample Text Data",
                "balance": 5,
                "charge": 12,
                "tax": 22,
                "discount": 6,
                "payment": 6,
                "credit": 18,
                "balanceDue": 1
            }
        ]
    }
}
GETAccount/Summary/{id}
Retrieve an instance of the AccountSummary object by its ID.
{id}Unique identifier for the AccountSummary object.
Retrieve an instance of the AccountSummary object by its ID.
GET Account/Summary/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "accountId": 13,
        "accountName": "Sample Text Data",
        "balance": 0,
        "charge": 24,
        "tax": 21,
        "discount": 14,
        "payment": 19,
        "credit": 26,
        "balanceDue": 8
    }
}