POST
/
v1
/
evaluation
/
job
import Roark from '@roarkanalytics/sdk';

const client = new Roark({
  bearerToken: process.env['ROARK_API_BEARER_TOKEN'], // This is the default and can be omitted
});

const response = await client.evaluation.createJob({ evaluators: ['string'] });

console.log(response.data);
{
  "data": {
    "jobId": "<string>",
    "status": "PENDING"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Created evaluation job

The response is of type object.