<?xml version="1.0" encoding="utf-16"?>
<GetJobsResponse status="ok" responseCode="200">
<jobs>
<job sourceJobId="YourJobId_1" name="Job 1" length="65 minutes" lengthSeconds="4000" matchEnabled="false" createdUtc="1669109395.70753" updatedUtc="1700645395.70753" />
<job sourceJobId="YourJobId_2" name="Job 2" length="50 minutes" lengthSeconds="3000" matchEnabled="true" createdUtc="1669109395.70753" updatedUtc="1700645395.70753" />
<job sourceJobId="YourJobId_3" name="Job 3" length="35 minutes" lengthSeconds="2000" matchEnabled="true" createdUtc="1669109395.70753" updatedUtc="1700645395.70753" />
<job sourceJobId="YourJobId_4" name="Job 4" length="15 minutes" lengthSeconds="1000" matchEnabled="true" createdUtc="1669109395.70753" updatedUtc="1700645395.70753" />
</jobs>
</GetJobsResponse>
{
"jobs": {
"job": [
{
"sourceJobId": "YourJobId_1",
"name": "Job 1",
"length": "65 minutes",
"lengthSeconds": 4000,
"matchEnabled": false,
"created": "1669109395.70753",
"updated": "1700645395.70753"
},
{
"sourceJobId": "YourJobId_2",
"name": "Job 2",
"length": "50 minutes",
"lengthSeconds": 3000,
"matchEnabled": true,
"created": "1669109395.70753",
"updated": "1700645395.70753"
},
{
"sourceJobId": "YourJobId_3",
"name": "Job 3",
"length": "35 minutes",
"lengthSeconds": 2000,
"matchEnabled": true,
"created": "1669109395.70753",
"updated": "1700645395.70753"
},
{
"sourceJobId": "YourJobId_4",
"name": "Job 4",
"length": "15 minutes",
"lengthSeconds": 1000,
"matchEnabled": true,
"created": "1669109395.70753",
"updated": "1700645395.70753"
}
]
},
"status": "ok",
"response": null,
"responseCode": "200"
}
<?xml version="1.0" encoding="utf-16"?>
<berkeResponse status="[!=ok]" response="[Error Message], [Parameter]=[[ParameterValue]]" responseCode="[!=200]" />
{
"status": "[!=ok]",
"response": "[Error Message], [Parameter]=[[ParameterValue]]",
"responseCode": "[!=200]"
}
|
Most API exceptions are due to invalid parameters. Review the notes below each parameter as well as
the output and HTTP response code from the error message. If all values
are appropriate, the failure is likely authentication-related. Authentication failure
types include, but are not limited to,:
- Too many failed calls
- Maximum per minute or per day API calls reached
- API call made via insecure connection
- Invalid API key
- API is not enabled for target company
- API is disabled for all companies (typically during maintenance)
- Company is inactive or expired
- Invalid username
- User is inactive or expired
- Unknown source candidate id
|
|
Most API exceptions are due to invalid parameters. Review the notes below each parameter as well as
the output and HTTP response code from the error message. If all values
are appropriate, the failure is likely authentication-related. Authentication failure
types include, but are not limited to,:
- Too many failed calls
- Maximum per minute or per day API calls reached
- API call made via insecure connection
- Invalid API key
- API is not enabled for target company
- API is disabled for all companies (typically during maintenance)
- Company is inactive or expired
- Invalid username
- User is inactive or expired
- Unknown sourceJobId - check your API job assignments in the primary Berke customer site
- Invalid assessment complete action
<?xml version="1.0" encoding="utf-16"?>
<berkeResponse status="[!=ok]" response="[API Method] API method requests exceeded burst limit of 120 occurrences within 60000 milliseconds. Excess requests occurred 3 times from [2024-11-22T09:29:55.0075340Z] to [2024-11-22T09:29:55.6075340Z]." responseCode="429" callDeniedDateTime="2024-11-22T09:29:55.707534Z" callExpiresOnCompletion="true" countCallsExceeded="3" estimatedMillisecondsToNextAllowedCall="423" firstCallDeniedDateTime="2024-11-22T09:29:55.407534Z" isDailyLimit="false" maximumCallsPerTimeFrame="120" timeFrameMilliseconds="60000" />
{
"callDeniedDateTime": "2024-11-22T09:29:55.707534Z",
"callExpiresOnCompletion": true,
"countCallsExceeded": 3,
"estimatedMillisecondsToNextAllowedCall": 423,
"firstCallDeniedDateTime": "2024-11-22T09:29:55.407534Z",
"isDailyLimit": false,
"maximumCallsPerTimeFrame": 120,
"timeFrameMilliseconds": 60000,
"status": "[!=ok]",
"response": "[API Method] API method requests exceeded burst limit of 120 occurrences within 60000 milliseconds. Excess requests occurred 3 times from [2024-11-22T09:29:55.0075340Z] to [2024-11-22T09:29:55.6075340Z].",
"responseCode": "429"
}
API requests exceeded the maximum allowed per time-frame or the maximum allowed at any point in time.
API throttle limits are set per-company. Please login and return to this area to see
your company's specific throttle configuration.
Your application can use the following API method response information to determine its course of action when HTTP status code 429
is returned by an API method call:
-
callDeniedDateTime: The date and time that the API method call was denied execution.
-
callExpiresUponCompletion: If this value is true then too many simultaneous calls occurred to a particular group of API methods.
If this value is false then too many requests occurred for a particular time frame (daily or short-term).
-
countCallsExceeded: The count of calls that exceeded the maximum number of allowed API calls for the time frame.
-
estimatedMillisecondsToNextAllowedCall: The estimated number of milliseconds, from the callDeniedDateTime, before an API
call will be allowed to execute. If callExpiresUponCompletion is true then this value will be zero as the time is dependent on
numerous factors.
If callExpiresUponCompletion is false then this value indicates the amount of time your application(s) should wait before
attempting to make the same API method call. If a daily API call limit has been exceeded the this value indicates the amount of time
your application(s) should wait before calling any API method.
-
firstCallDeniedDateTime: The date and time that the first call, of potentially many calls, was denied for the time frame.
For example, if an application was denied ten calls within a time frame then firstCallDeniedDateTime
indicates date and time that the first of the ten calls was denied.
-
isDailyLimit: If this value is true then the response indicates that the maximum number of API methods calls for the current day has been exceeded. If this
value is false then the response indicates that the maximum number of API method calls for a time frame, other than daily, has been exceeded.
-
maximumCallsPerTimeFrame: Indicates the maximum number of times an API method can be called for daily, short-term or simultaneous call limits.
-
timeFrameMilliseconds: Indicates the number of milliseconds in which maximumCallsPerTimeFrame API method calls is allowed.
|