Get all contract discounts at the given site
GET
/v1/sites/{id}/contract-discounts
Sites
Default to show valid discounts only - validFrom <= Today and (validTo >= Today or null)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/sites//contract-discounts'
Response Response Example
200 - Example 1
[
{
"id": 0,
"description": "string",
"contractClassification": {
"id": 1,
"name": "Commercial Refuse"
},
"wasteStream": {
"id": 1,
"name": "Clinical Collection Service"
},
"wasteStreamItem": {
"id": 1,
"name": "FW-240"
},
"amount": 0,
"unitType": "1",
"isAbsolute": true,
"validFrom": "2019-08-24T14:15:22Z",
"validTo": "2019-08-24T14:15:22Z"
}
]
Request
Path Params
id
integer
required
Query Params
contractId
integer
optional
contractClassificationId
integer
optional
wasteStreamId
integer
optional
includeNotValid
boolean
optional
Responses
Modified at 2025-06-19 07:13:40