Generate SoftSIM Profile

Generate SoftSIM Profile

post

Generates a SoftSIM profile for use with Nordic devices. The output format is controlled by the hexfile parameter: true (default): returns a taskId for downloading a HEX file. false: returns the SostSIM profile.

Authorizations
Body
iccidstringRequired

Unique identifier of the SIM profile.

imsistringRequired

International Mobile Subscriber Identity.

kistringRequired

Secret key used for authentication.

opcstringRequired

Operator variant key.

devicestringRequired

Target chip model (e.g., nRF9160, nRF9151)

hexfilebooleanOptional

Output mode selector: - true: generate a HEX file and return taskId - false: return profile object directly

Default: true
Responses
200

Returns either:

  • taskId (if hexfile is true), or
  • profile (if hexfile is false)
application/json
Responseone of
or
post
POST /api/v1/softsim/nordic/generate-profile HTTP/1.1
Host: api.monogoto.io
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 86

{
  "iccid": "text",
  "imsi": "text",
  "ki": "text",
  "opc": "text",
  "device": "text",
  "hexfile": true
}
200

Returns either:

  • taskId (if hexfile is true), or
  • profile (if hexfile is false)
{
  "taskId": "text"
}

Last updated

Was this helpful?