Skip to main content
POST
/
v1
/
form_fields
/
{form_field_id}
/
positions
Creates FormField Positions
curl --request POST \
  --url https://api.rootly.com/v1/form_fields/{form_field_id}/positions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "data": {
    "attributes": {
      "form_field_id": "<string>",
      "position": 123
    }
  }
}
'
{
  "data": {
    "id": "<string>",
    "attributes": {
      "form_field_id": "<string>",
      "position": 123
    }
  },
  "included": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {},
      "relationships": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

form_field_id
string
required

Body

application/vnd.api+json
data
object
required

Response

form_field_position created

data
object
required
included
object[]