curl --request GET \
--url https://staging.api.us.aptlydone.com/settings/v1/decision-sections \
--header 'Authorization: Bearer <token>'
{
"statusCode": 200,
"timestamp": "2025-06-24T08:51:42.549Z",
"message": "Success",
"data": {
"page": 1,
"limit": 10,
"total": 100,
"data": [
{
"id": "887fc457-023f-4f73-8690-0783b1f797d1",
"tenantId": "c18841c9-b6bc-4231-91c0-a05458cbfb03",
"sectionName": "Finance Department",
"isDeleted": false,
"categories": [
{
"id": "2f814d21-28bb-45fd-9e59-abc0e1a6ebb4",
"tenantId": "12d1757e-8bd3-4180-a8a9-10b4d9a74533",
"sectionId": "0500df64-ea8e-4f93-8389-b13a4b1be930",
"categoryName": "Finance",
"isDeleted": false
}
],
"createdAt": "2024-01-15T12:00:00Z"
}
]
}
}
curl --request GET \
--url https://staging.api.us.aptlydone.com/settings/v1/decision-sections \
--header 'Authorization: Bearer <token>'
{
"statusCode": 200,
"timestamp": "2025-06-24T08:51:42.549Z",
"message": "Success",
"data": {
"page": 1,
"limit": 10,
"total": 100,
"data": [
{
"id": "887fc457-023f-4f73-8690-0783b1f797d1",
"tenantId": "c18841c9-b6bc-4231-91c0-a05458cbfb03",
"sectionName": "Finance Department",
"isDeleted": false,
"categories": [
{
"id": "2f814d21-28bb-45fd-9e59-abc0e1a6ebb4",
"tenantId": "12d1757e-8bd3-4180-a8a9-10b4d9a74533",
"sectionId": "0500df64-ea8e-4f93-8389-b13a4b1be930",
"categoryName": "Finance",
"isDeleted": false
}
],
"createdAt": "2024-01-15T12:00:00Z"
}
]
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Page number
x >= 1
1
Number of items per page
1 <= x <= 100
10
Tenant ID
"3783eb06-9553-4793-accb-7fc1a609d316"
Section IDs (comma separated)
"ffcc642e-c078-4205-aa20-8ee9541a4530, 3532dd0a-e143-4008-a736-3d09deae14f8"
Category IDs (comma separated)
"f453cb72-0248-49d8-9f21-d547c6266212, e0827e48-ab11-457c-bc1f-1db9c3c7c000"
Search
"Finance"
Field to sort by
"id"
Sort order (asc/desc)
asc
, desc
"asc"
Decision sections list retrieved successfully
The response is of type object
.