question |
réponse |
What is the default response page limit for Workday REST and Graph APIs? commencer à apprendre
|
|
|
|
|
What is the maximum response page limit for Workday REST and Graph APIs? commencer à apprendre
|
|
|
|
|
Do Workday REST and Graph APIs perform change detection? commencer à apprendre
|
|
No. They do not perform change detection.
|
|
|
What type of security do Workday REST and Graph APIs require? commencer à apprendre
|
|
They require user-based security.
|
|
|
Through which gateway do all Workday API calls from Extend and Integration apps go? commencer à apprendre
|
|
Through the WCP API Gateway.
|
|
|
What is the client timeout for Workday APIs? commencer à apprendre
|
|
The client timeout is 5 minutes.
|
|
|
What is the client timeout for the Graph API? commencer à apprendre
|
|
The Graph API has a 3-minute client timeout.
|
|
|
What API does Workday recommend for writing or updating Workday data? commencer à apprendre
|
|
|
|
|
What additional benefit does Graph API provide when writing data? commencer à apprendre
|
|
You can also retrieve the exact data you need in the same call.
|
|
|
What happens when a WQL query is executed for the first time? commencer à apprendre
|
|
The WQL in the query parameter runs and builds a cache containing a maximum of 10,000 rows.
|
|
|
How can you access rows beyond the first cached result set? commencer à apprendre
|
|
By paginating through the results using the limit and offset REST API parameters.
|
|
|
What does the limit parameter specify? commencer à apprendre
|
|
It specifies the number of rows returned on one page.
|
|
|
What does the offset parameter specify? commencer à apprendre
|
|
It specifies the starting row for the result set and is used together with limit.
|
|
|
How do you request the next 1,000 rows? commencer à apprendre
|
|
Increase the offset to 1,000:? limit=1000&offset=1000
|
|
|
To return 1,000 rows starting with the first row of the result set: commencer à apprendre
|
|
{baseURL}/data? limit=1000&offset=0&query=select worker, location from allWorkers
|
|
|
To return the next 1,000 rows, increase the offset to 1,000: commencer à apprendre
|
|
{baseURL}/data? limit=1000&offset=1000&query=select worker, location from allWorkers
|
|
|
Workday tenanted host URL commencer à apprendre
|
|
https://{hostname}/api/wql/{version}/{tenant}
|
|
|
|
commencer à apprendre
|
|
https://api. workday.com/wql/{version}
|
|
|