curl --request GET \
--url https://api.siit.io/v1/applications/{uid}/users \
--header 'Authorization: Bearer <token>'{
"meta": {
"count": 123,
"current_page": 123,
"next_page_link": "<string>",
"per_page": 20,
"previous_page_link": "<string>",
"total": 123
},
"results": [
{
"uid": "<string>",
"archived_at": "2023-11-07T05:31:56Z",
"birthday_date": "2023-12-25",
"city": "<string>",
"contract_type": "temporary",
"country": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"department": "<string>",
"department_uid": "<string>",
"emails": [
"<string>"
],
"employee_number": "<string>",
"first_name": "<string>",
"full_name": "<string>",
"gender": "female",
"hire_date": "2023-12-25",
"job_leave_date": "2023-12-25",
"job_start_date": "2023-12-25",
"job_title": "<string>",
"last_name": "<string>",
"last_working_date": "2023-12-25",
"legal_entity": "<string>",
"legal_entity_uid": "<string>",
"microsoft_entra_ids": [
"<string>"
],
"office_location": "<string>",
"office_location_uid": "<string>",
"preferred_language": "<string>",
"probation_end_date": "2023-12-25",
"report_to": "<string>",
"report_to_uid": "<string>",
"role_name": "owner",
"slack_user_id": "<string>",
"status": "employee",
"team_uids": [
"<string>"
],
"teams": [
"<string>"
],
"timezone": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"work_phone": "<string>"
}
]
}Fetch users associated with an application
curl --request GET \
--url https://api.siit.io/v1/applications/{uid}/users \
--header 'Authorization: Bearer <token>'{
"meta": {
"count": 123,
"current_page": 123,
"next_page_link": "<string>",
"per_page": 20,
"previous_page_link": "<string>",
"total": 123
},
"results": [
{
"uid": "<string>",
"archived_at": "2023-11-07T05:31:56Z",
"birthday_date": "2023-12-25",
"city": "<string>",
"contract_type": "temporary",
"country": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"department": "<string>",
"department_uid": "<string>",
"emails": [
"<string>"
],
"employee_number": "<string>",
"first_name": "<string>",
"full_name": "<string>",
"gender": "female",
"hire_date": "2023-12-25",
"job_leave_date": "2023-12-25",
"job_start_date": "2023-12-25",
"job_title": "<string>",
"last_name": "<string>",
"last_working_date": "2023-12-25",
"legal_entity": "<string>",
"legal_entity_uid": "<string>",
"microsoft_entra_ids": [
"<string>"
],
"office_location": "<string>",
"office_location_uid": "<string>",
"preferred_language": "<string>",
"probation_end_date": "2023-12-25",
"report_to": "<string>",
"report_to_uid": "<string>",
"role_name": "owner",
"slack_user_id": "<string>",
"status": "employee",
"team_uids": [
"<string>"
],
"teams": [
"<string>"
],
"timezone": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"work_phone": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The UID of the Application
Fields to expand into full objects. Example: ?expand[]=assignee_admin&expand[]=tags
The current page
Number of results retrieved per page.