Boomi Platform API Reference (1.0.0) - CustomTrackedField
Use the Custom Tracked Field object to describe the custom tracked fields configured for a specific account.
Note: The fields in the Custom Tracked Field object correspond to the fields on the Document Tracking tab of the Setup page.
Required Privileges
Write access
- N/A
Read access
- API — Use the Boomi Platform API to access account data.
Queries for a CustomTrackedField 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.
Note: This operation doesn't accept filters because the list is constrained to 20 fields.
Authorizations:
Request Body schema: optional
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 (CustomTrackedField) |
Request samples
- Payload
{- "QueryFilter": {
- "expression": {
- "argument": [
- "string"
], - "operator": "EQUALS",
- "property": "string"
}
}
}Response samples
- 200
- 403
- 410
- 503
{- "numberOfResults": 5,
- "@type": "QueryResult",
- "result": [
- {
- "@type": "CustomTrackedField",
- "label": "Field 1",
- "type": "character",
- "position": 1
}, - {
- "@type": "CustomTrackedField",
- "label": "Field 5",
- "type": "number",
- "position": 5
}
]
}Retrieves additional results for a CustomTrackedField 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 (CustomTrackedField) |
Response samples
- 200
- 403
- 410
- 503
{- "numberOfResults": 5,
- "@type": "QueryResult",
- "result": [
- {
- "@type": "CustomTrackedField",
- "label": "Field 1",
- "type": "character",
- "position": 1
}, - {
- "@type": "CustomTrackedField",
- "label": "Field 5",
- "type": "number",
- "position": 5
}
]
}