Wireless Account Lock Request

Version 1.0.0
download iconDownload spec

Endpoint

POST
https://serverRoot/api/orderingMobility/v1/wirelessAccountLock

Used to apply or manage a lock to a specified Billing Account Number (BAN). A lock prevents users from completing a simSwap or portout request transaction.

arrowRequest

Header Parameters

            Body Parameters

            Responses

            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
            curl --request POST \
                 --url https://serverroot/api/orderingMobility/v1/wirelessAccountLock \
                 --header 'Accept: string' \
                 --header 'Content-Length: integer' \
                 --header 'X-ATT-ClientId: string' \
                 --header 'X-ATT-ConversationId: string' \
                 --header 'X-ATT-MessageId: string' \
                 --header 'content-type: application/json' \
                 --data '
            {
              "wirelessAccountLockRequest": {
                "accountGroupId": "a98765432109",
                "manageListDetails": [
                  {
                    "enableLock": "string",
                    "ctnException": [
                      {
                        "ctn": "string",
                        "action": "ADD"
                      }
                    ],
                    "billingAccountNumber": "string",
                    "billingAccountNumberTransactionException": [
                      {
                        "action": "ADD",
                        "transaction": "portout"
                      }
                    ]
                  }
                ],
                "foundationAccountNumber": "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
            {
              "wirelessAccountLockResponse": {
                "manageListDetails": [
                  {
                    "enableLock": "string",
                    "ctnException": [
                      {
                        "ctn": "string",
                        "action": "ADD",
                        "exceptionStatusDetail": {
                          "status": "string",
                          "errorCode": "string",
                          "errorDescription": "string"
                        }
                      }
                    ],
                    "billingAccountNumber": "string",
                    "exceptionStatusDetail": {
                      "status": "string",
                      "errorCode": "string",
                      "errorDescription": "string"
                    },
                    "billingAccountNumberTransactionException": [
                      {
                        "action": "ADD",
                        "transaction": "portout",
                        "exceptionStatusDetail": {
                          "status": "string",
                          "errorCode": "string",
                          "errorDescription": "string"
                        }
                      }
                    ]
                  }
                ]
              }
            }