;

Process Callbacks

API will reprocess all testinvitationids passed by API user.

API will reprocess all testinvitationids passed by API user. At a time only 100 records will be processed.

Successful response of API calls means that testinvitation ids are scheduled for processing in queue. Actual response will be received to your endpoints shortly.

POST https://apiv3.imocha.io/v3/callbacks/process
  • Docs
  • Try it
Request Body Parameters
Field Type Required Default Description
testinvitationIds Array of Integer64 Yes - -
Example API endpoint

URL 1: /v3/callbacks/process

Sample Request Body
Request Body
{ "testinvitationIds":[2944056,2935600] }
Successful response

Status 200 OK

Response
{ "result": { "testinvitationIds": { "successful": [ 2631727, 2633244, 2633386 ], "failed": [] } }, "errors": null }
Failed response

Status 401 Unauthorized Request

If required parameters have invalid values.

Response
{ "result": null, "errors": [ "testinvitationIds does not belong to account or not found", "94761" ] }
Parameter Value Description Parameter Type Data Type
testinvitationIds Unique identifier given to each test attempt

Note: Enter multiple testinvitationId seperated by a comma

Body Array of Integer64
  • Response Body