Boomi Platform API Reference (1.0.0) - AtomConnectorVersions
Download OpenAPI Specification: Download
For more information about Postman collections, forking, and making your first API call, refer to the Working with Boomi APIs on Postman page.
The Atom Connector Versions object represents the properties of connectors that are used by a Runtime, Runtime cluster, or Runtime cloud.
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.
- OR ATOM_MANAGEMENT_READ_ONLY
Retrieves an instance of an AtomConnectorVersions object
Retrieves the properties of connectors used by the Runtime, Runtime cluster, or Runtime cloud with specified ID.
Authorizations:
path Parameters
| id required | string The ID of the Runtime, Runtime cluster, or Runtime cloud. |
Responses
Response Schema:
Array of objects (ConnectorVersion) Each pair of | |
| id | string The ID of the Runtime, Runtime cluster, or Runtime cloud. |
Response samples
- 200
- 403
- 410
- 503
{- "@type": "AtomConnectorVersions",
- "ConnectorVersion": [
- {
- "@type": "ConnectorVersion",
- "name": "Disk",
- "version": "16.06.2-20160512.140052-1"
}, - {
- "@type": "ConnectorVersion",
- "name": "Atom",
- "version": "16.06.2-20160511.102900-1"
}, - {
- "@type": "ConnectorVersion",
- "name": "Platform API",
- "version": "16.06.2-20160510.100150-1"
}, - {
- "@type": "ConnectorVersion",
- "name": "Platform Partner API",
- "version": "16.06.2-20160509.150052-2"
}
], - "id": "3456789a-bcde-f012-3456-789abcdef012"
}Retrieves multiple AtomConnectorVersions objects by identifier
To learn more about bulk, refer to the topic Bulk GET operations.
Authorizations:
Request Body schema: optional
Array of objects (BulkId) | |
| type | string Enum: "GET" "DELETE" "UPDATE" "CREATE" |
Responses
Response Schema:
Array of objects | |||||||||||
Array
| |||||||||||
Request samples
- Payload
{- "request": [
- {
- "id": "56789abc-def0-1234-5678-9abcdef01234"
}
], - "type": "GET"
}Response samples
- 200
- 403
- 410
- 503
{- "response": [
- {
- "Result": {
- "ConnectorVersion": [
- {
- "name": "string",
- "version": "string"
}
], - "id": "3456789a-bcde-f012-3456-789abcdef012"
}, - "index": 0,
- "id": "string",
- "statusCode": 0,
- "errorMessage": "string"
}
]
}