Queue Workday Job
Workday is a difficult ATS to deal with given login requirements and multiple pages. In order to submit Workday applications, a Workday job must be queued to allow HTML scraping.
Usage
Endpoint: POST /api-queue-workday-job
POST/api/api-queue-workday-job
Queue a Workday Job
To queue a Workday job, provide the job's URL and a unique identifier.
Required Attributes
- Name
url
- Type
- string
- Description
The URL of the Workday job listing. Eg: "https://company.wd5.myworkdayjobs.com/...".
- Name
id
- Type
- string
- Description
A unique identifier for the job listing.
Request
POST
/api/api-queue-workday-jobcurl -X POST https://app.wranglejobs.com/api/api-queue-workday-job \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {api-key}' \
-d '{
"url": "https://company.wd5.myworkdayjobs.com/...",
"id": "unique-job-id"
}'