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": 20 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": 20 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": 15
}
]
} | |
| 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": 20
}
]
}
} | |
| 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": 1
}
} | |