Generate Report

Version 1.0.0
download iconDownload spec

Endpoint

POST
https://serverRoot/api/orderingMobility/v1/report/generate

Generate a report. Once the report is generated, use the Retrieve Report request to retrieve it.

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
            curl --request POST \
                 --url https://serverroot/api/orderingMobility/v1/report/generate \
                 --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 '
            {
              "generateReportRequest": {
                "accountGroupId": "a98765432109",
                "ctn": "5555055525",
                "accountType": "FAN",
                "accountLevelValue": "12345678",
                "reportType": "wirelessInventory",
                "dateRange": {
                  "startDate": "MM/DD/YYYY",
                  "endDate": "MM/DD/YYYY"
                }
              }
            }
            '

            RESPONSE

            1
            2
            3
            4
            5
            6
            {
              "generateReportResponse": {
                "reportCode": "SC_REPORTS_1001",
                "reportDescription": "Generating Reports is in process."
              }
            }