Skip to main content
POST
/
simcards
/
{simCardId}
/
configure
Apply a SIM configuration to a single SIM card
curl --request POST \
  --url https://dashboard.hologram.io/api/1/simcards/{simCardId}/configure/ \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "configuration_id": 123,
  "immediate": true,
  "validity_period": 123,
  "plan_id": 123,
  "zone": "<string>",
  "orgid": 123
}
'
{
  "success": true,
  "data": {
    "requested_deviceids": [
      123
    ],
    "requested_simcardids": [
      123
    ],
    "async_request_id": 123,
    "child_ids": [
      123
    ],
    "warnings": [
      "<string>"
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.hologram.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key. You can find your API key on the Hologram Dashboard under Account Settings.

Path Parameters

simCardId
integer
required

SIM card ID

Body

application/json
configuration_id
integer
required
immediate
boolean

Skip the configuration queue

validity_period
integer

Configuration validity period in seconds

plan_id
integer

Change the device plan simultaneously; requires zone and orgid

zone
string

Required when plan_id is provided

orgid
integer

Required when plan_id is provided

Response

OK

success
boolean

Indicates whether the request was successful.

Example:

true

data
object