TAG LINE
TAG LINE
SMALL TITLE
This object contains any of the invoices which have contract commitment charges and their associated periods.
identity READ-ONLY | "identity": 19 Type: Number This is the unique numeric identifier for the AccountContractTrackingCommitmentInvoice |
contractCommitmentId | "contractCommitmentId": 23 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": 24 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": 22 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. |
GET | Account/Contract/Tracking/Commitment/Invoice/ |
Retrieve all of the AccountContractTrackingCommitmentInvoice objects. | |
Retrieve all of the AccountContractTrackingCommitmentInvoice objects. GET Account/Contract/Tracking/Commitment/Invoice/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "contractCommitmentId": 8, "contractCommitmentName": "Sample Text Data", "invoiceId": 4, "invoiceName": "Sample Text Data", "lastProcessed": "2021-04-26T15:25:27.587Z", "contractCommitmentPeriodId": 20, "contractCommitmentPeriodName": "Sample Text Data" } ] } |
GET | Account/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 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": 15, "contractCommitmentName": "Sample Text Data", "invoiceId": 23, "invoiceName": "Sample Text Data", "lastProcessed": "2021-04-26T15:25:27.587Z", "contractCommitmentPeriodId": 12, "contractCommitmentPeriodName": "Sample Text Data" } ] } } |
GET | Account/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} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "contractCommitmentId": 9, "contractCommitmentName": "Sample Text Data", "invoiceId": 21, "invoiceName": "Sample Text Data", "lastProcessed": "2021-04-26T15:25:27.587Z", "contractCommitmentPeriodId": 1, "contractCommitmentPeriodName": "Sample Text Data" } } |