# Change SIM

Raise a ticket to change the SIM on an active service.

# Parameters

These are in addition to the standard parameters.

Params Type Required
newSIM string true

# Example “Change SIM” Request

# POST /v1/changeSim

{
  "user": {
    "username": "MarioG",
    "password": "Stuttgart"
  },
  "service":{
    "sim": "89490200001122333682"
  },
  "newSIM": "89430301907722137214"
}

# Example “Change SIM” Response (Success)

{
  "ok": true,
  "ticket": {
    "id": "1229",
    "status": "Processing"
  }
}

# Example “Change SIM” Response (Error)

{
  "ok": false,
  "errorCode": "302",
  "errorMessage": "Service is not Active."
}