cURL
curl --request GET \ --url https://api.nugen.in/api/v3/alignment-project/status/{id} \ --header 'Authorization: Bearer <token>'
{ "status": "pending", "data": { "id": 123, "name": "<string>", "baseModel": "<string>", "status": "pending", "createdDate": "<string>", "completedDate": "<string>", "documents": [ "<string>" ], "documentCount": 123, "creator": "<string>", "performanceMetrics": { "accuracyBefore": 123, "accuracyAfter": 123, "uncertaintyBefore": 123, "uncertaintyAfter": 123, "domainViolationsBefore": 123, "domainViolationsAfter": 123 }, "progress": 123, "estimatedCompletion": "<string>", "error": "<string>" } }
Get status of alignment project creation task
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
The response is of type object.
object
Was this page helpful?