v1.35
about 1 year ago by Esteban Deel
New Adjustments endpoints
Added
Retrieve adjustments
Get all adjustments for your organization.
Endpoint: POST rest/v1/adjustments
Sample request
curl --request GET \
--url https://api.letsdeel.com/rest/v1/adjustments \
--header 'accept: application/json' \
--header 'authorization: Bearer toke'
Create new adjustment
Create a new adjustment.
Endpoint: POST rest/v1/adjustments
Sample request
curl --request POST \
--url https://api.letsdeel.com/rest/v1/adjustments \
--header 'accept: application/json' \
--header 'authorization: Bearer token' \
--header 'content-type: application/json' \
--data '
{
"data": {
"contract_id": "m3jk2j",
"amount": 100.25,
"date_of_adjustment": "1999-12-31",
"title": "Your title here",
"description": "Your description here",
"cycle_reference": "my_cycle_reference",
"adjustment_category_id": "c9cf4c2c0165f48f494415390c3b49",
"move_next_cycle": true
}
}
'
Retrieve an adjustment
Retrieve an adjustment.
Endpoint: GET rest/v1/adjustments/{adjustment_id}
Sample request
curl --request GET \
--url https://api.letsdeel.com/rest/v1/adjustments/adjustment_id \
--header 'accept: application/json' \
--header 'authorization: Bearer token'
Update an adjustment
Update an adjustment.
Endpoint: PATCH rest/v1/adjustments/{adjustment_id}
Sample request
curl --request PATCH \
--url https://api.letsdeel.com/rest/v1/adjustments/adjustment_id \
--header 'accept: application/json' \
--header 'authorization: Bearer token' \
--header 'content-type: application/json' \
--data '
{
"data": {
"amount": 100.25,
"title": "Your title here",
"description": "Your description here",
"cycle_reference": "my_cycle_reference"
}
}
'
Delete an adjustment
Delete an adjustment.
Endpoint: DELETE rest/v1/adjustments/{adjustment_id}
Sample request
curl --request DELETE \
--url https://api.letsdeel.com/rest/v1/adjustments/adjustment_id \
--header 'accept: application/json' \
--header 'authorization: Bearer token'
Retrieve categories
Get all categories for your organization.
Endpoint: GET rest/v1/adjustments/categories
Sample request
curl --request GET \
--url https://api.letsdeel.com/rest/v1/adjustments/categories \
--header 'accept: application/json' \
--header 'authorization: Bearer token'