TAG LINE
TAG LINE
SMALL TITLE

Contract Commitment Penalty Charge Type

(API Version v6)


This entity represents different types of penalty charges such as fixed penalties, per unit, per unit charge type or other categorizations of penalty charges.


What can you do with ContractCommitmentPenaltyChargeType?


Properties

Property Details
identity
READ-ONLY
"identity": 4
Type: Number
This is the unique numeric identifier for the ContractCommitmentPenaltyChargeType
name
"name": "Fixed Penalty Charge"
Type: String
User friendly name for a penalty charge type


End Points

GETContract/Commitment/PenaltyChargeType/
Retrieve all of the ContractCommitmentPenaltyChargeType objects.
Retrieve all of the ContractCommitmentPenaltyChargeType objects.
GET Contract/Commitment/PenaltyChargeType/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "name": "Fixed Penalty Charge"
        }
    ]
}
GETContract/Commitment/PenaltyChargeType/Paged
Retrieve all of the ContractCommitmentPenaltyChargeType 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 ContractCommitmentPenaltyChargeType objects in a paged fashion.
GET Contract/Commitment/PenaltyChargeType/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": "Fixed Penalty Charge"
            }
        ]
    }
}
GETContract/Commitment/PenaltyChargeType/{id}
Retrieve an instance of the ContractCommitmentPenaltyChargeType object by its ID.
{id}Unique identifier for the ContractCommitmentPenaltyChargeType object.
Retrieve an instance of the ContractCommitmentPenaltyChargeType object by its ID.
GET Contract/Commitment/PenaltyChargeType/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "name": "Fixed Penalty Charge"
    }
}