Adjustment Types
View adjustment types
This endpoint returns the adjustment types configured in the integrated system for the specified location
get/adjustment_types
Query parameters
subdomainstring required
Used to scope the request to the specified institution
location_idinteger required
Used to scope the request to the specified location
updated_sincestring date-time
Adjustment types updated after the specified time (UTC)
activeboolean
Filter active/not active
start_cursorstring
First item of the current page. Starts empty
end_cursorstring
Last item of the current page. Starts empty
per_pageinteger
Number of results to return per page. Maximum allowed amount is 1000.
Headers
Nex-Api-Versionstring required
The NexHealth API version
Response
Successful
Example response
{
"description": "Description",
"error": [
"Error message"
],
"data": [
{
"id": 113,
"name": "Cash",
"active": true,
"action": "credit",
"updated_at": "2020-06-05T20:16:57.007Z"
}
],
"page_info": {
"has_previous_page": false,
"has_next_page": false,
"start_cursor": "AAAAA",
"end_cursor": "BBBBBB"
}
}