Client tests

Submit answers to test’s questions

Use this method to submit answers to the questions included in a specific client test.

POST
/api/v2/my/quizzes/{quizId}/answers

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

quizId*integer

The identifier of a test.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v2/my/quizzes/1/answers" \  -H "Content-Type: application/json" \  -d '{    "answers": {}  }'
{  "id": 1,  "quizId": 1,  "status": "COMPLETED"}