TAG LINE
TAG LINE
SMALL TITLE

Contract / Commitment Type

(API Version v6)


This entity is the system defined type of contract commitment such as "invoice amount", "package", "service" and "usage".


What can you do with ContractCommitmentType?


Properties

Property Details
identity
READ-ONLY
"identity": 12
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": 4
Type: Number
Unused


End Points

GETContract/CommitmentType/
Retrieve all of the ContractCommitmentType objects.
Retrieve all of the ContractCommitmentType objects.
GET Contract/CommitmentType/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "name": "Invoice Amount",
            "sortOrder": 10
        }
    ]
}
GETContract/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
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,
                "name": "Invoice Amount",
                "sortOrder": 19
            }
        ]
    }
}
GETContract/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}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "name": "Invoice Amount",
        "sortOrder": 21
    }
}