TAG LINE
TAG LINE
SMALL TITLE
This entity is the system defined type of contract commitment such as "invoice amount", "package", "service" and "usage".
identity READ-ONLY | "identity": 18 Type: Number This is the unique numeric identifier for the ContractCommitmentType |
name | "name": "Invoice Amount" Type: String System defined name for the Commitment Type |
sortOrder | "sortOrder": 27 Type: Number Unused |
GET | Contract/CommitmentType/ |
Retrieve all of the ContractCommitmentType objects. | |
Retrieve all of the ContractCommitmentType objects. GET Contract/CommitmentType/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "name": "Invoice Amount", "sortOrder": 10 } ] } |
GET | Contract/CommitmentType/Paged |
Retrieve all of the ContractCommitmentType 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 ContractCommitmentType objects in a paged fashion. GET Contract/CommitmentType/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, "name": "Invoice Amount", "sortOrder": 22 } ] } } |
GET | Contract/CommitmentType/{id} |
Retrieve an instance of the ContractCommitmentType object by its ID. | |
{id} | Unique identifier for the ContractCommitmentType object. |
Retrieve an instance of the ContractCommitmentType object by its ID. GET Contract/CommitmentType/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "name": "Invoice Amount", "sortOrder": 4 } } |