[DEPRECATED] Use form field endpoints instead. List workflow custom field selections
curl --request GET \
--url https://api.rootly.com/v1/workflows/{workflow_id}/custom_field_selections \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "workflow_custom_field_selections",
"attributes": {
"workflow_id": "<string>",
"custom_field_id": 123,
"incident_condition": "ANY",
"selected_option_ids": [
123
],
"values": [
"<string>"
]
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
success
Show child attributes
Unique ID of the workflow_custom_field_selection
workflow_custom_field_selections Show child attributes
The workflow for this selection
The custom field for this selection
The trigger condition
IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET The selected option id for select and multi_select kinds
The value to associate with the custom field trigger
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/workflows/{workflow_id}/custom_field_selections \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "workflow_custom_field_selections",
"attributes": {
"workflow_id": "<string>",
"custom_field_id": 123,
"incident_condition": "ANY",
"selected_option_ids": [
123
],
"values": [
"<string>"
]
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}