ReportCustomFieldSearchSettingsResponse
The response body for the POST /api/v1/reports/get_custom_field_search_settings
endpoint.
This is a list of select-type (ENUM
) Custom Fields that can be used in the
report search filter.
HTTP status code of the response for reference purposes.
200
200
Indicates whether the request was successful (normally true
if it's
not an error response).
true
URL of the current request / resource, for reference purposes.
https://example.apps.journyx.com/api/v1/users
An array of status (confirmation) messages that occurred during the request. This field may be empty.
In the UI, these are sometimes displayed with a green icon.
An array of error messages that occurred during the request. This field may be empty.
In the UI, these are sometimes displayed with a red error icon.
An array of warning messages that occurred during the request. This field may be empty.
In the UI, these are sometimes displayed with a yellow warning icon.
An array of informational messages that occurred during the request. This field may be empty.
In the UI, these are sometimes displayed with a blue info icon.
results object[]
The internal ID of the Custom Field.
users_dept
The display name (pname) of the Custom Field.
Department
items object[]
The list of options for the Custom Field.
This list will only be populated for ENUM
type Custom Fields.
The display name of the Custom Field option.
Sales
The internal ID of the Custom Field option.
12345
{
"response_code": 200,
"success": true,
"uri": "https://example.apps.journyx.com/api/v1/users",
"status": [
"string"
],
"errors": [
"string"
],
"warnings": [
"string"
],
"info": [
"string"
],
"results": [
{
"value": "users_dept",
"text": "Department",
"items": [
{
"text": "Sales",
"value": 12345
}
]
}
]
}