> For the complete documentation index, see [llms.txt](https://docs.monogoto.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.monogoto.io/developer/api/softsim-nordic/generate-softsim-profile.md).

# Generate SoftSIM Profile

## Generate SoftSIM Profile

> 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.<br>

```json
{"openapi":"3.0.1","info":{"title":"Monogoto SoftSIM API for Nordic Devices","version":"v2.1"},"servers":[{"url":"https://api.monogoto.io/api/v1"}],"security":[{"bearerAuth":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}}},"paths":{"/softsim/nordic/generate-profile":{"post":{"summary":"Generate SoftSIM Profile","description":"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.\n","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["iccid","imsi","ki","opc","device"],"properties":{"iccid":{"type":"string","description":"Unique identifier of the SIM profile."},"imsi":{"type":"string","description":"International Mobile Subscriber Identity."},"ki":{"type":"string","description":"Secret key used for authentication."},"opc":{"type":"string","description":"Operator variant key."},"device":{"type":"string","description":"Target chip model (e.g., nRF9160, nRF9151)"},"hexfile":{"type":"boolean","default":true,"description":"Output mode selector: - true: generate a HEX file and return taskId - false: return profile object directly\n"}}}}}},"responses":{"200":{"description":"Returns either:\n- taskId (if hexfile is true), or\n- profile (if hexfile is false)\n","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"taskId":{"type":"string","description":"Identifier for the generated HEX file task."}}},{"type":"object","properties":{"profile":{"type":"object","description":"SoftSIM profile in JSON format."}}}]}}}}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.monogoto.io/developer/api/softsim-nordic/generate-softsim-profile.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
