Submit job

Once your file is successfully uploaded, you can continue to next step submit_job

Request

  • Endpoint: POST https://app.real-api.online/rapi/ask_service

  • Headers:

    • Content-Type: application/json

  • Body:

{
  "prodCred": {
    "insID": 0,
    "appKey": <app_key>,
    "prodKey": <prod_key>
  },
  "ask": "submit",
  "service": {
      "jobID": "<job_id>"
  }
}

Response

  • Status: 200 OK

  • Body:

{
    "msg": "SUCCESS",
    "data": {
        "status": "UPLOADED",
        "jobID": <job_id>,
        "url": null
    }
}

Last updated