alloy_get_dictionary
Retrieve valid reference and classification values for Alloy Navigator fields like Status or Types. Use these values to interpret codes or build accurate filters for object list queries.
Instructions
Get the allowed reference/classification values for a field on an Alloy Navigator object class - e.g. the valid Status or Types values for Incidents or Computers. Useful for resolving what a status/type code means, or for building a valid filter value for alloy_list_objects.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filters | No | Optional field-name/value pairs to filter the result, e.g. {"Priority": "High"}. Each pair is sent as a literal <fieldName>=<value> query parameter, matching Alloy Navigator's own filtering convention. | |
| refField | Yes | The reference field name, e.g. 'Status' or 'Types'. | |
| par_limit | No | Maximum number of records to return. | |
| par_fields | No | Comma-separated list of field names to include in the result. Omit to return every field. | |
| par_offset | No | Number of records to skip, for paging. | |
| objectClass | Yes | The Alloy Navigator object class the reference field belongs to, e.g. 'Computers'. | |
| par_sort_asc | No | Comma-separated list of field names to sort the result by, ascending. | |
| par_sort_desc | No | Comma-separated list of field names to sort the result by, descending. |