Boomi Platform API Reference (1.0.0) - EnvironmentMapExtensionUserDefinedFunctionSummary
Use the Environment Map Extension User Defined Function Summary object to query for a list of all available user-defined functions associated with a given environment map extension. You can use this object in combination with other Environment Map Extension objects. For example, you can query this object to retrieve a list of user-defined functions and then employ the Environment Map Extension User Defined object to modify the properties of a function returned in the list of results.
Queries for an EnvironmentMapExtensionUserDefinedFunctionSummary 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
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 (EnvironmentMapExtensionUserDefinedFunctionSummary) |
Request samples
- Payload
{- "QueryFilter": {
- "expression": {
- "operator": "and",
- "nestedExpression": [
- {
- "argument": [
- "1234b56a-ea78-90f1-beec-2fe23456cb8e"
], - "operator": "EQUALS",
- "property": "componentId"
}, - {
- "argument": [
- "ZWNlYjg3Y2ItMW..."
], - "operator": "EQUALS",
- "property": "environmentMapExtensionId"
}
]
}
}
}Response samples
- 200
- 403
- 410
- 503
{- "@type": "QueryResult",
- "result": [
- {
- "@type": "EnvironmentMapExtensionUserDefinedFunctionSummary",
- "environmentMapExtensionId": "ZWNlYjg3Y2ItMW...",
- "componentId": "1234b56a-ea78-90f1-beec-2fe23456cb8e",
- "name": "My User Defined Function",
- "createdDate": "2022-01-21T02:40:01Z",
- "createdBy": "user@boomi.com",
- "modifiedDate": "2022-01-21T02:40:01Z",
- "modifiedBy": "user@boomi.com",
- "deleted": "false"
}
], - "numberOfResults": 1
}Retrieves additional results for an EnvironmentMapExtensionUserDefinedFunctionSummary 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 (EnvironmentMapExtensionUserDefinedFunctionSummary) |
Response samples
- 200
- 403
- 410
- 503
{- "@type": "QueryResult",
- "result": [
- {
- "@type": "EnvironmentMapExtensionUserDefinedFunctionSummary",
- "environmentMapExtensionId": "ZWNlYjg3Y2ItMW...",
- "componentId": "1234b56a-ea78-90f1-beec-2fe23456cb8e",
- "name": "My User Defined Function",
- "createdDate": "2022-01-21T02:40:01Z",
- "createdBy": "user@boomi.com",
- "modifiedDate": "2022-01-21T02:40:01Z",
- "modifiedBy": "user@boomi.com",
- "deleted": "false"
}
], - "numberOfResults": 1
}