Delete Job

delete

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

Deletes the 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

204 Response

Job deleted successfully.

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 delete a job using cURL. For more information about cURL, see Use cURL.

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

Example of Response Header

The following shows an example of the response header.

204 No Content
Content-Length: 0
Content-Type: text/plain
Date: Wed, 31 Jan 2018 23:24:30 GMT
Back to Top