Wireless eBonding

Version 1.0.0 (latest)

Wireless eBonding

Version 1.0.0 (latest)

Order Cancellation

Version 1.0.0
download iconDownload spec

Endpoint

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

Order Cancellation requests can be used to cancel active orders.

arrowRequest

Header Parameters

            Body Parameters

            Responses

            Accepted

            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
            curl --request POST \
                 --url https://serverroot/api/orderingMobility/v1/orderCancellation \
                 --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 '
            {
              "orderCancellationRequest": {
                "accountGroupId": "a1234567890",
                "cancelOrders": [
                  {
                    "orderId": "10-123456789012345"
                  }
                ],
                "orderContact": {
                  "phone": {
                    "number": "1234567890",
                    "extension": "1885"
                  },
                  "email": "abell@att.com",
                  "contactName": {
                    "lastName": "Bell",
                    "firstName": "Alex"
                  }
                }
              }
            }
            '