Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List form_field_options
curl --request GET \
--url https://api.rootly.com/v1/form_fields/{form_field_id}/options \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "form_field_options",
"attributes": {
"id": "<string>",
"form_field_id": "<string>",
"value": "<string>",
"color": "<string>",
"default": true,
"position": 123,
"created_at": "<string>",
"updated_at": "<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.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/form_fields/{form_field_id}/options \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "form_field_options",
"attributes": {
"id": "<string>",
"form_field_id": "<string>",
"value": "<string>",
"color": "<string>",
"default": true,
"position": 123,
"created_at": "<string>",
"updated_at": "<string>"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}