Boomi Platform API Reference (1.0.0) - EnvironmentConnectionFieldExtensionSummary
You can use the Environment Connection Field Extension Summary object to obtain the URL for OAuth 2.0 access token generation.
Through the Environment Extensions endpoint, you can programmatically set almost all extensible connection fields for those used in processes attached to environments. The only current exception is the accessToken field in a connection that uses OAuth 2.0 authentication. You can obtain the URL for OAuth 2.0 access token generation using a QUERY operation on the Environment Connection Field Extension Summary object.
From the time you generate it, the URL returned by the operation is valid for up to 15 minutes only.
Note: Note: The Boomi Enterprise Platform API and Partner API connectors do not support operations on the Environment Connection Field Extension Summary object.
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.
- ATOM_MANAGEMENT_READ_ONLY — Read only access to runtime configuration and administration.
Queries for an EnvironmentConnectionFieldExtensionSummary 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: environmentId, extensionGroupId, connectionId, fieldId
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 (EnvironmentConnectionFieldExtensionSummary) |
Request samples
- Payload
{- "QueryFilter": {
- "expression": {
- "operator": "and",
- "nestedExpression": [
- {
- "argument": [
- "456789ab-cdef-0123-4567-89abcdef0123"
], - "operator": "EQUALS",
- "property": "environmentId"
}, - {
- "argument": [
- "bcdef012-3456-789a-bcde-f0123456789a"
], - "operator": "EQUALS",
- "property": "connectionId"
}, - {
- "argument": [
- "oauthOptions/OAuth2Config/credentials/@accessToken"
], - "operator": "EQUALS",
- "property": "fieldId"
}
]
}
}
}Response samples
- 200
- 403
- 410
- 503
{- "numberOfResults": 1,
- "@type": "QueryResult",
- "result": [
- {
- "@type": "EnvironmentConnectionFieldeExtensionSummary",
- "enviromentId": "456789ab-cdef-0123-4567-89abcdef0123",
- "connectionId": "bcdef012-3456-789a-bcde-f0123456789a",
- "extensionGroupId": "",
- "id": "Ab0Cd1Ef1Gh3Ij4Kl5Mn6Op7Qr8St9Uv0Wx9Yz8Zy7Xw6Vu5Ts4Rq3Po2Nm1Lk0Ji1Hg",
- "field": {
- "componentOverride": false,
- "usesEncryption": false,
- "encryptedValueSet": false,
- "id": "oauthOptions/OAuth2Config/credentials/@accessToken"
}
}
]
}Retrieves additional results for an EnvironmentConnectionFieldExtensionSummary 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 (EnvironmentConnectionFieldExtensionSummary) |
Response samples
- 200
- 403
- 410
- 503
{- "numberOfResults": 1,
- "@type": "QueryResult",
- "result": [
- {
- "@type": "EnvironmentConnectionFieldeExtensionSummary",
- "enviromentId": "456789ab-cdef-0123-4567-89abcdef0123",
- "connectionId": "bcdef012-3456-789a-bcde-f0123456789a",
- "extensionGroupId": "",
- "id": "Ab0Cd1Ef1Gh3Ij4Kl5Mn6Op7Qr8St9Uv0Wx9Yz8Zy7Xw6Vu5Ts4Rq3Po2Nm1Lk0Ji1Hg",
- "field": {
- "componentOverride": false,
- "usesEncryption": false,
- "encryptedValueSet": false,
- "id": "oauthOptions/OAuth2Config/credentials/@accessToken"
}
}
]
}