List form field positions
curl --request GET \
--url https://api.rootly.com/v1/form_fields/{form_field_id}/positions \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "form_field_positions",
"attributes": {
"form_field_id": "<string>",
"form": "web_new_incident_form",
"position": 123
}
}
],
"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
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/form_fields/{form_field_id}/positions \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "form_field_positions",
"attributes": {
"form_field_id": "<string>",
"form": "web_new_incident_form",
"position": 123
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}