TAG LINE
TAG LINE
SMALL TITLE

Account / Contract / Tracking / Commitment / Invoice

(API Version v6)


This object contains any of the invoices which have contract commitment charges and their associated periods.


What can you do with AccountContractTrackingCommitmentInvoice?


Properties

Property Details
identity
READ-ONLY
"identity": 18
Type: Number
This is the unique numeric identifier for the AccountContractTrackingCommitmentInvoice
contractCommitmentId
"contractCommitmentId": 8
Type: Number
Unique identifier for the associated ContractCommitment object.
contractCommitmentName
"contractCommitmentName": "Sample Name"
Type: String
The name of the object associated with the contractCommitmentId property.
invoiceId
"invoiceId": 11
Type: Number
If a penalty charge was generated from this contract commitment, this identifier references the invoice representing that charge.

Unique identifier for the associated Invoice object.
invoiceName
"invoiceName": "Sample Name"
Type: String
The name of the object associated with the invoiceId property.
lastProcessed
READ-ONLY
"lastProcessed": "2021-04-26T15:25:27.587Z"
Type: Date
The date in which this contract commitment was last calculated.

Date and time values are specified in the ISO 8601 format.
contractCommitmentPeriodId
"contractCommitmentPeriodId": 14
Type: Number
Unique identifier for the associated ContractCommitmentPeriod object.
contractCommitmentPeriodName
"contractCommitmentPeriodName": "Sample Name"
Type: String
The name of the object associated with the contractCommitmentPeriodId property.


End Points

GETAccount/Contract/Tracking/Commitment/Invoice/
Retrieve all of the AccountContractTrackingCommitmentInvoice objects.
Retrieve all of the AccountContractTrackingCommitmentInvoice objects.
GET Account/Contract/Tracking/Commitment/Invoice/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "contractCommitmentId": 1,
            "contractCommitmentName": "Sample Text Data",
            "invoiceId": 17,
            "invoiceName": "Sample Text Data",
            "lastProcessed": "2021-04-26T15:25:27.587Z",
            "contractCommitmentPeriodId": 15,
            "contractCommitmentPeriodName": "Sample Text Data"
        }
    ]
}
GETAccount/Contract/Tracking/Commitment/Invoice/Paged
Retrieve all of the AccountContractTrackingCommitmentInvoice 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 AccountContractTrackingCommitmentInvoice objects in a paged fashion.
GET Account/Contract/Tracking/Commitment/Invoice/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,
                "contractCommitmentId": 3,
                "contractCommitmentName": "Sample Text Data",
                "invoiceId": 10,
                "invoiceName": "Sample Text Data",
                "lastProcessed": "2021-04-26T15:25:27.587Z",
                "contractCommitmentPeriodId": 15,
                "contractCommitmentPeriodName": "Sample Text Data"
            }
        ]
    }
}
GETAccount/Contract/Tracking/Commitment/Invoice/{id}
Retrieve an instance of the AccountContractTrackingCommitmentInvoice object by its ID.
{id}Unique identifier for the AccountContractTrackingCommitmentInvoice object.
Retrieve an instance of the AccountContractTrackingCommitmentInvoice object by its ID.
GET Account/Contract/Tracking/Commitment/Invoice/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "contractCommitmentId": 20,
        "contractCommitmentName": "Sample Text Data",
        "invoiceId": 12,
        "invoiceName": "Sample Text Data",
        "lastProcessed": "2021-04-26T15:25:27.587Z",
        "contractCommitmentPeriodId": 22,
        "contractCommitmentPeriodName": "Sample Text Data"
    }
}