TAG LINE
TAG LINE
SMALL TITLE
This object contains any of the penalties generated by contract early termination.
identity READ-ONLY | "identity": 27 Type: Number This is the unique numeric identifier for the AccountContractTrackingTermination |
contractTerminationId | "contractTerminationId": 12 Type: Number Unique identifier for the associated ContractTermination object. |
contractTerminationName | "contractTerminationName": "Sample Name" Type: String The name of the object associated with the contractTerminationId property. |
invoiceItemId | "invoiceItemId": 4 Type: Number If a penalty charge was generated from this contract termination, this identifier references the invoice item representing that charge. Unique identifier for the associated InvoiceItem object. |
invoiceItemName | "invoiceItemName": "Sample Name" Type: String The name of the object associated with the invoiceItemId property. |
processed READ-ONLY | "processed": "2021-04-26T15:25:27.587Z" Type: Date The date in which this contract termination was processed. Date and time values are specified in the ISO 8601 format. |
GET | Account/Contract/Tracking/Termination/ |
Retrieve all of the AccountContractTrackingTermination objects. | |
Retrieve all of the AccountContractTrackingTermination objects. GET Account/Contract/Tracking/Termination/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "contractTerminationId": 27, "contractTerminationName": "Sample Text Data", "invoiceItemId": 24, "invoiceItemName": "Sample Text Data", "processed": "2021-04-26T15:25:27.587Z" } ] } |
GET | Account/Contract/Tracking/Termination/Paged |
Retrieve all of the AccountContractTrackingTermination 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 AccountContractTrackingTermination objects in a paged fashion. GET Account/Contract/Tracking/Termination/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, "contractTerminationId": 17, "contractTerminationName": "Sample Text Data", "invoiceItemId": 12, "invoiceItemName": "Sample Text Data", "processed": "2021-04-26T15:25:27.587Z" } ] } } |
GET | Account/Contract/Tracking/Termination/{id} |
Retrieve an instance of the AccountContractTrackingTermination object by its ID. | |
{id} | Unique identifier for the AccountContractTrackingTermination object. |
Retrieve an instance of the AccountContractTrackingTermination object by its ID. GET Account/Contract/Tracking/Termination/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "contractTerminationId": 10, "contractTerminationName": "Sample Text Data", "invoiceItemId": 12, "invoiceItemName": "Sample Text Data", "processed": "2021-04-26T15:25:27.587Z" } } |