Inquire device status by IMEI

Endpoint

GET
undefined/resource/{id}

This operation retrieves a Resource entity. Attribute selection is enabled for all first level attributes. Retrieves device unlock status. (TMF 639)

arrowSecurity

oauth2

Get a JWT Token from AT&T's Azure AD
authorizationCode:
scopes:
tokenUrl:https://login.microsoftonline.com/xxxxxxxxx/oauth2/v2.0/token
authorizationUrl:https://login.microsoftonline.com/xxxxxxxxxx/oauth2/v2.0/token
arrowRequest

Query Parameters

        Header Parameters

                Body Parameters

                Responses

                Success

                arrowBody

                application/json

                REQUEST

                1
                2
                3
                4
                curl --request GET \
                     --url 'https://example.com/resource/id?fields=string&@type=MobileDevice&deviceStatusDetails.mode=DU' \
                     --header 'accept: application/json' \
                     --header 'authorization: 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
                {
                  "id": "1234567",
                  "href": "https://tmf639-resourceinventory-mobiledevice.gw.cloud.att.com/api/resource/MobileDevice-1234567?fields=deviceStatusDetails",
                  "deviceStatusDetails": {
                    "@type": "MobileDevice",
                    "lteType": "6",
                    "imeiType": "LTE",
                    "frequency": "10",
                    "imeiItemId": "123",
                    "manufacturer": {
                      "make": "APPLE",
                      "model": "iPhone5",
                      "marketingName": "Apple Inc."
                    },
                    "nfcCapability": "U",
                    "attCompatibility": "Green",
                    "dataOnlyIndicator": "true",
                    "blacklistStatusDate": "2001-12-17T09:30:47Z",
                    "blacklistedIndicator": "B",
                    "umtsCapableIndicator": "true",
                    "volteSupportIndicator": "true",
                    "deviceCapabilitiesType": "A",
                    "certificationStateIndicator": "true"
                  }
                }