# Change Service Name

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

# Parameters

These are in addition to the standard parameters.

Params Type Required
newName string true

# Example “Change Service Name” Request

# POST /v1/changeServiceName

{
  "user": {
    "username": "MarioG",
    "password": "Stuttgart"
  },
  "service":{
    "cli": "07836123456"
  },
  "newName": "IMK Testing 2"
}

# Example “Change Service Name” Response (Success)

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

# Example “Change Service Name” Response (Error)

{
  "ok": false,
  "errorCode": "205",
  "errorMessage": "'newName' missing."
}