For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get of SoftSIM Profile Task Status

Get status of a profile generation task

get

Checks the current status of a profile generation task using the provided task ID.

Authorizations
AuthorizationstringRequired

Use the JWT access token returned by the login endpoint. Include it in the Authorization header as: Bearer .

Path parameters
iccidstringRequired

ICCID of the Thing.

Example: 89999*********
task_idstringRequired

SoftSIM task ID.

Responses
200

Task status successfully retrieved

application/json
statusstringOptionalExample: Success
messagestringOptional

Status returned by Nordic API

Example: file generated
get/v1/things/{iccid}/softsim/nordic/task/{task_id}
GET /v1/things/{iccid}/softsim/nordic/task/{task_id} HTTP/1.1
Host: api.monogoto.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "status": "Success",
  "message": "file generated"
}

Last updated

Was this helpful?