curl --request POST \
--url https://backend.codedamn.com/api/public/get-user-io-lab-result \
--header 'Content-Type: application/json' \
--header 'FERMION-API-KEY: <api-key>' \
--data '{
"data": [
{
"data": {
"userId": "<string>",
"labId": "<string>"
}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"result": {
"isLabAttempted": true,
"isRunComplete": true,
"resultArray": [
{
"testCaseId": "<string>",
"status": "pending"
}
]
}
}
}
}
]
Get result of a single user for a given I/O lab
Authentication with the “FERMION-API-KEY” header is required to use this endpoint.
Rate limit: Maximum 60 requests in a window of 1m.
curl --request POST \
--url https://backend.codedamn.com/api/public/get-user-io-lab-result \
--header 'Content-Type: application/json' \
--header 'FERMION-API-KEY: <api-key>' \
--data '{
"data": [
{
"data": {
"userId": "<string>",
"labId": "<string>"
}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"result": {
"isLabAttempted": true,
"isRunComplete": true,
"resultArray": [
{
"testCaseId": "<string>",
"status": "pending"
}
]
}
}
}
}
]
API Request Body
The body is of type object
.
API Response Body
The response is of type object[]
.