Remove Reserved Number From Cart

Overview

Remove reserved numbers you no longer want from your cart.

Authentication

circle-info

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

Example Mutation

mutation CartRemove($numbers:[String]) {
  releaseReserved(numbers:$numbers) {
    excluded
    excludedCount
    releasedCount
    totalCount
  }
}

Query Variables

{
  "numbers": ["8572391651"]
}

Example Response

Last updated

Was this helpful?