Boomi Platform API Reference (1.0.0) - AtomLog
You can use this operation to request and download Runtime logs. Because large Runtime logs can take some time to download, the Platform API provides an asynchronous technique for downloading Runtime logs:
- You send a Runtime Log request to the Boomi Enterprise Platform API that specifies the Runtime ID and the date of the logged events.
- The Enterprise platform returns a Log Download object that contains a URL with a unique Runtime log ID.
- You open the URL to download the log.
Note: Runtime logs purge 30 days after creation.
You must have the Runtime Management privilege to download Runtime logs. If you have the Runtime Management Read Access privilege, you cannot perform this action.
Required Privileges
You need these privileges in the target environment:
Write access
- N/A
Read access
- API — Use the Boomi Platform API to access account data.
- ATOM_MANAGEMENT — Configure and administer integration runtimes.
- User should have access to the container.
Creates an AtomLog object
You can use the Download Atom Log operation to request and download Runtime logs.
Authorizations:
Request Body schema: optional
| atomId | string The ID of the Runtime. |
| includeBin | boolean If true, binary files are included in the download. The default is false. |
| logDate | string The date of the logged events. |
Responses
Response Schema:
| statusCode | string The status code as one of the following:
|
| message | string The status message. |
| url | string (statusCode 202 only) The URL for the download. |
Request samples
- Payload
{- "atomId": "3456789a-bcde-f012-3456-789abcdef012",
- "logDate": "2016-02-05",
- "includeBin": true
}Response samples
- 200
- 403
- 410
- 503
{- "@type": "LogDownload",
- "message": "Beginning download.",
- "statusCode": 202
}