Get status of the task

GET /differentMe/status

Query parameters

  • task_id string Required

    Task id to be queried.

Responses

  • 200 application/json

    Default Response

    Hide response attributes Show response attributes object
  • 400 application/json

    Invalid request error

    Hide response attributes Show response attributes object
  • 401 application/json

    Authorization error

    Hide response attributes Show response attributes object
  • 500 application/json

    Internal server error

    Hide response attributes Show response attributes object
GET /differentMe/status
curl \
 -X GET https://api.itsrose.rest/differentMe/status?task_id=string
Response examples (200)
{
  "status": true,
  "message": "success",
  "result": {
    "task_id": "string",
    "status": "completed",
    "images": "string",
    "backend_processing_time": 42.0,
    "error_msg": "string"
  }
}
Response examples (400)
{
  "status": false,
  "message": "string",
  "result": {}
}
Response examples (401)
{
  "status": false,
  "message": "string",
  "result": {}
}
Response examples (500)
{
  "status": false,
  "message": "string",
  "result": {}
}