Application list
This endpoint retrieves the list of applications received for a business's job listings or for a specific listing.
Endpoint
POST https://canadamotorjobs.com/api/v1/{locale}/applications/list
# or for a specific business
POST https://canadamotorjobs.com/api/v1/{locale}/businesses/{business_id}/applications
# or for a specific job listing
POST https://canadamotorjobs.com/api/v1/{locale}/job-listings/{job_listing_id}/applications
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
business_id | string | Filter by business ID | No |
job_listing_id | string | Filter by job listing ID | No |
status | string | Filter by application status (e.g.: new, viewed, shortlisted, interviewed, hired, rejected) | No |
page | number | Page number | No |
limit | number | Number of items per page | No |
sort | string | Sort by date (e.g.: applied_at:desc, updated_at:asc) | No |
from_applied_at | string | Application date from (YYYY-MM-DD) | No |
to_applied_at | string | Application date to (YYYY-MM-DD) | No |
api_token | string | Your API key | required or bearer token |
Errors
| Code | Message |
|---|---|
| 401 | Unauthorized |
| 404 | Not Found (if business_id or job_listing_id not found) |
| 500 | Internal Server Error |