curl --request GET \
--url https://staging.api.us.aptlydone.com/auth/v1/user/positions \
--header 'Authorization: Bearer <token>'
{
"statusCode": 200,
"timestamp": "2025-06-25T06:16:48.664Z",
"message": "Success",
"data": [
{
"id": "1b639583-b421-439f-9bbc-e909aa78126e",
"userId": "86e26861-524b-4d36-94c6-70a70726add9",
"tenantId": "62c0e2b7-259d-4692-9f3d-3655665366c2",
"positionsId": "54256ae5-3c62-4447-adf8-3e3cc6612a99",
"autoProvisioned": false,
"isEditable": false,
"isDeleted": true,
"deletedOn": "2024-10-28T09:18:34.656Z",
"createdOn": "2025-06-24T15:29:46.577Z",
"updatedOn": "2025-06-24T20:18:43.389Z",
"positionName": "Senior Developer",
"isSCIMProvisioned": false
}
]
}
curl --request GET \
--url https://staging.api.us.aptlydone.com/auth/v1/user/positions \
--header 'Authorization: Bearer <token>'
{
"statusCode": 200,
"timestamp": "2025-06-25T06:16:48.664Z",
"message": "Success",
"data": [
{
"id": "1b639583-b421-439f-9bbc-e909aa78126e",
"userId": "86e26861-524b-4d36-94c6-70a70726add9",
"tenantId": "62c0e2b7-259d-4692-9f3d-3655665366c2",
"positionsId": "54256ae5-3c62-4447-adf8-3e3cc6612a99",
"autoProvisioned": false,
"isEditable": false,
"isDeleted": true,
"deletedOn": "2024-10-28T09:18:34.656Z",
"createdOn": "2025-06-24T15:29:46.577Z",
"updatedOn": "2025-06-24T20:18:43.389Z",
"positionName": "Senior Developer",
"isSCIMProvisioned": false
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
User positions retrieved successfully
The response is of type object
.