Retrieve Job

get

/mobile/system/analyticsDataManagement/jobs/{id}

Retrieves the analytics data management job that matches the ID.

Permissions

Only team members with the MobileEnvironment_System role can access the Analytics Data Management API.

Request

Path Parameters
  • The ID of the job. This ID must be an existing job ID.

Back to Top

Response

Supported Media Types

200 Response

Job successfully retrieved.
Body ()
Root Schema : Job
Type: object
Title: Job
Information about a purge job.
Show Source
Nested Schema : Filters
Type: object
Title: Filters
The date range of the data to delete and, optionally, for which mobile backends.
Show Source
Nested Schema : mobileBackends
Type: array
(Optional) Only delete analytic data for these mobile backends.
Show Source
Nested Schema : Mobile Backend
Type: object
Title: Mobile Backend
Mobile backend identification.
Show Source
Example Response (application/json)
{
    "id":"123",
    "createdOn":"2015-09-02T12:34:56.789Z",
    "createdBy":"UserX",
    "status":"SUCCESSFUL",
    "links":[
        {
            "rel":"canonical",
            "href":"/mobile/system/analytics/dataManagement/jobs/123"
        },
        {
            "rel":"self",
            "href":"/mobile/system/analytics/dataManagement/jobs/123"
        }
    ],
    "type":"PURGE",
    "filters":{
        "startDate":"2017-04-12T07:00:00.000Z",
        "mobileBackends":[
            {
                "name":"FixItFastCustomerMBE1",
                "version":"1.0"
            },
            {
                "name":"FixItFastCustomerMBE1",
                "version":"1.1"
            },
            {
                "name":"FixItFastCustomerMBE2",
                "version":"1.0"
            }
        ],
        "endDate":"2017-05-12T09:00:00.000Z"
    }
}

400 Response

Bad request.

Body ()
Root Schema : Error
Type: object
Title: Error
The error JSON object returned by Mobile Cloud Service.
Show Source
Nested Schema : o:errorDetails
Type: array
Minimum Number of Items: 0
List of the issues that cause the error. Included when the error is caused by multiple issues.
Show Source
Nested Schema : Error Detail
Type: object
Title: Error Detail
Show Source

404 Response

Job ID not found.

Body ()
Root Schema : Error
Type: object
Title: Error
The error JSON object returned by Mobile Cloud Service.
Show Source
Nested Schema : o:errorDetails
Type: array
Minimum Number of Items: 0
List of the issues that cause the error. Included when the error is caused by multiple issues.
Show Source
Nested Schema : Error Detail
Type: object
Title: Error Detail
Show Source
Back to Top

Examples

The following example shows how to retrieve an analytics job by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL.

curl -i \
-X GET \
-u administrator@example.com:password \
-H "Oracle-Mobile-Backend-ID: ABCD9278-091f-41aa-9cb2-184bd0586fce" \
https://fif.cloud.oracle.com/mobile/system/analyticsDataManagement/jobs/52

Example of Response Header

The following shows an example of the response header:

200 OK
Content-Type: application/json
Date: Mon, 29 Jan 2018 01:16:19 GMT

Example of Response Body

The following example shows, in JSON format, the contents of the response body:

{
    "id": "52",
    "status": "SUCCESSFUL",
    "type": "PURGE",
    "createdOn": "2018-01-31T23:41:32.472Z",
    "createdBy": "jdoe",
    "filters": {
        "startDate": "2018-01-12T07:00:00.000Z",
        "endDate": "2018-01-12T09:00:00.000Z",
        "mobileBackends": [
            {
                "name": "FixItFastCustomerMBE1",
                "version": "1.0"
            },
            {
                "name": "FixItFastCustomerMBE1",
                "version": "1.1"
            },
            {
                "name": "FixItFastCustomerMBE2",
                "version": "1.0"
            }
        ]
    },
    "links": [
        {
            "rel": "canonical",
            "href": "/mobile/system/analyticsDataManagement/jobs/52"
        },
        {
            "rel": "self",
            "href": "/mobile/system/analyticsDataManagement/jobs/52"
        }
    ]
}
Back to Top