Custom Tracked Field object
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.
Structure
<CustomTrackedField position="" type="" label=""/>
| Field | Type | Description |
|---|---|---|
| position | int | The display position of the custom tracked field. |
| type | string | The type of custom tracked field. Allowed values include character, datetime, and number. |
| label | string | The display name of the custom tracked field. |
Supported operations
| GET | QUERY | CREATE | UPDATE | EXECUTE | DELETE |
|---|---|---|---|---|---|
| Not supported | Supported | Not supported | Not supported | Not supported | Not supported |
The Custom Tracked Field QUERY operation does not accept filters because the list is constrained to 20 fields.
SOAP implementation
Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:api="http://api.platform.boomi.com/">
<soapenv:Header>
<wsse:Security
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsse:UsernameToken wsu:Id="UsernameToken" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<wsse:Username>ATOMSPHERE_USER_NAME</wsse:Username>
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">ATOMSPHERE_PASSWORD</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
</soapenv:Header>
<soapenv:Body>
<api:query>
<api:objectType>CustomTrackedField</api:objectType>
</api:query>
</soapenv:Body>
</soapenv:Envelope>
Response:
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<bns:queryResponse xmlns:bns="http://api.platform.boomi.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<bns:results numberOfResults="5">
<bns:result xsi:type="CustomTrackedField" position="1" type="character" label="Field 1"/>
...
<bns:result xsi:type="CustomTrackedField" position="5" type="number" label="Field 5"/>
</bns:results>
</bns:queryResponse>
</S:Body>
</S:Envelope>
Was this topic helpful?