# Query Service

Query the status of a service. This will return the status at the network where available.

# Example “Query Service” Request

# POST /v1/queryService

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

# Example “Query Service” Response (Success)

{
  "ok": true,
  "service": {
    "nina": {
      "code": "5012345",
      "name": "Marion Gomez",
      "status_code": "A",
      "cli": "07979123456",
      "sim": "8944110011462295831",
      "network": "AS",
      "contract": "2001288",
      "customer": "1023896"
    }
  }
}

# Example “Query Service” Response (Error)

{
  "ok": false,
  "errorCode": "104",
  "errorMessage": "'service' missing."
}