# Disconnect Service

Raise a ticket to disconnect an active service.

# Parameters

These are in addition to the standard parameters.

Params Type Required
newSIM string true

# Example “Disconnect Service” Request

# POST /v1/disconnectService

{
  "user": {
    "username": "MarioG",
    "password": "Stuttgart"
  },
  "service":{
    "cli": "07718123456"
  }
}

# Example “Disconnect Service” Response (Success)

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

# Example “Disconnect Service” Response (Error)

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