Release Subscriber Number

Endpoint

POST
https://lgw.att.com/ReleaseSubscriberNumber

Release previously reserved subscriber number(s). Multiple subscriber numbers can be released in one request. All subscriber numbers must be in a pre-activation/reserved state, or else an error will be returned to the partner.

arrowRequest

Body Parameters

Responses

success

arrowBody

application/json

REQUEST

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
curl --request POST \
     --url https://lgw.att.com/ReleaseSubscriberNumber \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "MessageHeader": {
    "TrackingMessageHeader": {
      "version": "string",
      "messageId": "string",
      "returnURL": "string",
      "responseTo": "string",
      "timeToLive": 0,
      "originatorId": "string",
      "dateTimeStamp": "2025-03-03T13:34:52.217Z",
      "conversationId": "string",
      "applicationName": "string",
      "originalVersion": "string",
      "uniqueTransactionId": "string",
      "infrastructureVersion": "string",
      "routingRegionOverride": [
        "string"
      ],
      "originalInfrastructureVersion": "string"
    },
    "SecurityMessageHeader": {
      "userName": "string",
      "userPassword": "string"
    },
    "SequenceMessageHeader": {
      "sequenceNumber": "string",
      "totalInSequence": "string"
    }
  },
  "ReleaseSubscriberNumberRequest": {
    "subscriberNumber": [
      "string"
    ],
    "marketServiceInfo": {
      "productType": "C",
      "billingMarket": {
        "localMarket": "string",
        "billingMarket": "string",
        "billingSubMarket": "string"
      },
      "serviceZipCode": "string",
      "billingSystemId": "string"
    },
    "billingAccountNumber": "string"
  }
}
'

RESPONSE

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
  "MessageHeader": {
    "TrackingMessageHeader": {
      "version": "string",
      "messageId": "string",
      "returnURL": "string",
      "responseTo": "string",
      "timeToLive": 0,
      "originatorId": "string",
      "dateTimeStamp": "2025-03-03T13:34:52.211Z",
      "conversationId": "string",
      "applicationName": "string",
      "originalVersion": "string",
      "uniqueTransactionId": "string",
      "infrastructureVersion": "string",
      "routingRegionOverride": [
        "string"
      ],
      "originalInfrastructureVersion": "string"
    },
    "SecurityMessageHeader": {
      "userName": "string",
      "userPassword": "string"
    },
    "SequenceMessageHeader": {
      "sequenceNumber": "string",
      "totalInSequence": "string"
    }
  },
  "ReleaseSubscriberNumberResponse": {
    "Response": {
      "code": "string",
      "description": "string"
    },
    "ReleaseResults": [
      {
        "error": {
          "code": "string",
          "description": "string"
        },
        "isReleased": false,
        "subscriberNumber": "string"
      }
    ]
  }
}