Disconnect Number

Overview

Disconnect a number currently assigned to your account.

Authentication

circle-info

This function is available via our new GraphQL API. You can read more about how to authenticate to this API here.

Per your MSA, there is a 90 day number holding requirement. You can not specify a disconnect date, and the number will be disconnected at the earliest possible time (immediately if outside of the 90 day window).

Example Mutation

# if a number is 12345600000
mutation {
  disconnectNumbers(numbers: ["12345600000"]) {
    internalId
    orderId
    orderName
    requests {
      disconnectAt
      numbers
      requestId
      requestName
      requestNotes
    }
  }
}

Example Response

This is an example of a response - this one will disconnect right away (a disconnectAt timestamp is provided to provide some info for the user):

Another response example - this one has a delayed disconnect request:

Last updated

Was this helpful?