GET api/AdminServices/GetIIGTestCompletionReport?ConsumerKey={ConsumerKey}&StartDate={StartDate}&EndDate={EndDate}
Returns a JSON object with a list of candidates who passed a test in the given date range.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ConsumerKey |
Required, Consumer Key to acess the data. |
string |
Required |
| StartDate |
Not null, start date of the search window |
string |
Required |
| EndDate |
Nullable, end date of the search window, set to DateTime.Now if null or 1/1/0001 12:00:00 AM |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
Success| Name | Description | Type | Additional information |
|---|---|---|---|
| Successful | boolean |
None. |
|
| MsgSuccess | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Successful": true,
"MsgSuccess": "sample string 2"
}
application/xml, text/xml
Sample:
<Success xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ManagementServices.Repositories.Response"> <MsgSuccess>sample string 2</MsgSuccess> <Successful>true</Successful> </Success>