Boomi Platform API Reference (1.0.0) - Connector
Use the Connector object to retrieve information about the type of a connector that exists on the account, equivalent to the list of connector types available in a process connector’s Start shape. Using the Connector object, you can use the GET operation to retrieve the connector type for a component name, and the QUERY operation to return a list of all connector types available for the account.
- All standard connectors.
- Any custom SDK connectors created by the specified tenant.
- Any custom connectors shared to the specific tenant through account groups.
- Any connectors made available through tenant feature flags. For example, the AS2 Client/Server only available with Trading Partner feature, or Web Services Shared.
- Legacy connectors, such as the legacy LDAP connector.
Component Metadata object
The Connector object plays a supportive role to the Component Metadata object. Using the Component Metadata object, you can filter by component type, similar to doing so on the Build tab's Component Explorer in the user interface. For connectors specifically, you can use Component Metadata to refine by subtype by providing the connector type value. To find this value, use the Connector object to query a list of available connector types, which you can then use to query the ComponentMetadata using the subType.
Retrieves an instance of a Connector object
You can only perform the GET operation by type and not by name.
Send an HTTP GET where accountId is the ID of the authenticating account for the request and connectorType is the name of the connector subtype you are attempting to GET.
For example, sending an HTTP GET to https://api.boomi.com/api/rest/v1/accountId/Connector/database returns Database type connectors available on the account.
Authorizations:
path Parameters
| connectorType required | string The internal and unique identifier for connector type, such as |
Responses
Response Schema:
| name | string The user-facing connector label of the connector type, which mimics the connector type names presented on the Build tab of the user interface. |
| type | string The internal and unique identifier for connector type, such as |
Response samples
- 200
- 403
- 410
- 503
{- "@type": "Connector",
- "type": "database",
- "name": "Database"
}Retrieves multiple Connector 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": {
- "name": "Database",
- "type": "database"
}, - "index": 0,
- "id": "string",
- "statusCode": 0,
- "errorMessage": "string"
}
]
}Queries for a Connector object(s)
For general information about the structure of QUERY filters, their sample payloads, and how to handle the paged results, refer to Query filters and Query paging.
Authorizations:
Request Body schema: optional
Possible properties include: type, name
required | object | ||||||||||
| |||||||||||
Responses
Response Schema:
| numberOfResults | integer <int32> |
| queryToken | string By default, the queryToken parameter is not available in the query response. It appears only when the query response contains more than 100 results. The maximum number of results returned per query is 100. To retrieve the next set of results, use the queryToken in the queryMore request. |
Array of objects (Connector) |
Request samples
- Payload
{- "QueryFilter": {
- "expression": {
- "nestedExpression": [
- {
- "argument": [
- "Platform Partner API"
], - "operator": "EQUALS",
- "property": "name"
}
]
}
}
}Response samples
- 200
- 403
- 410
- 503
{- "@type": "QueryResult",
- "result": [
- {
- "@type": "Connector",
- "type": "boomipartnerapi",
- "name": "Platform Partner API"
}
], - "numberOfResults": 1
}Retrieves additional results for a Connector query
To learn about using queryMore, refer to the topic Query paging.
Authorizations:
Request Body schema: text/plainrequired
Responses
Response Schema:
| numberOfResults | integer <int32> |
| queryToken | string By default, the queryToken parameter is not available in the query response. It appears only when the query response contains more than 100 results. The maximum number of results returned per query is 100. To retrieve the next set of results, use the queryToken in the queryMore request. |
Array of objects (Connector) |
Response samples
- 200
- 403
- 410
- 503
{- "@type": "QueryResult",
- "result": [
- {
- "@type": "Connector",
- "type": "boomipartnerapi",
- "name": "Platform Partner API"
}
], - "numberOfResults": 1
}