Web service end point to update assessment results for PSI client(aka PSI account) and client provided eligibility code.
PUT https:///accounts/{account_code}/{eligibility_code}/results
Parameter name | Value | Description | Additional |
---|---|---|---|
account_code | string | Global account code as specified in Atlas |
Required |
eligibility_code | string | Client eligibility code |
Required |
The request body takes a complete Candidate Results Details resource, containing the following writable properties:
{
"result": "string",
"score": "string"
}
Name | Type | Description | Additional |
---|---|---|---|
result | string |
What was the outcome of scoring. Possible values are:
|
Optional |
score | string |
How much did the candidate score. The score can either be Integer or Real or AlphaNumeric. |
Optional |
This request requires the use of one of following authorisation methods:
OAuth2
.
The following HTTP status codes may be returned, optionally with a response resource.
Status code | Description | Resource |
---|---|---|
200 | OK Expected response to a valid request |
|
400 | Bad Request Error details in case of error situation (When a matching client eligibility id is not found in Atlas). |
error |
500 | Internal Server Error Internal Server Error (When one or more components are down in Atlas system). In this case test driver is expected to retry to ensure guaranteed delivery. |
error |