About: Checking History
This request will return a full history of checks ran under your account. Meaning that depending on your history size, requests can take longer. Retrieval of full checking history should be used carefully, in most cases it is not necessary as check id's are provided after a new check is created (more explained in the next sections).
Similar to retrieving account information, this request does not require sending of any additional data. We can retrieve checking history just by providing the API Key header.
curl -X POST \
https://codequiry.com/api/v1/checks \
-H 'Accept: */*' \
-H 'apikey: YOUR_API_KEY_HERE '
Sample Response (JSON Array of Objects)
[
{
"id": 1,
"course_id": 412,
"name": "Python Checks",
"created_at": "2019-02-02 01:09:32",
"updated_at": "2019-02-14 05:48:54",
"status_id": 2,
"job_id": 0
}
]
About the data
This probably looks foreign to you, don't worry, we will explain what each property means, its importance, and the different values they can take on. For now all you need to know is how to retrieve your checking history for future usage. Note that the checks will be returned with the order of most recent being first in the array.
What's next
For optimal understanding of API usage, we recommend following this guide.