jobs
Get Job Representatives
Use this endpoint to get the list of representatives for a Job. This endpoint will return a paginated response starting from the given record index.
get/jobs/{jobId}/representatives
Path parameters
jobIdstring uuid required
The job's unique identifier
Query parameters
pageSizeinteger
Controls how many items are returned per page in paginated responses.
- Default: 25 items per page if not specified
- Minimum: 1 item per page
- Use with pageStartIndex for navigating through large result sets
recordStartIndexinteger
The index of the first element to return
Response
OK
Example response
{
"items": [
{
"id": "9c9502f7-72f0-4162-8643-4467d235ae62",
"user": {
"id": "228db892-3b49-4455-b839-ffd8576d8731",
"_link": "https://api.acculynx.com/api/v2/users/228db892-3b49-4455-b839-ffd8576d8731"
},
"_link": "https://api.acculynx.com/v2/jobs/61370abe-3534-4ba8-b2f2-2ff56cdd5e02/representatives/company"
}
]
}