Skip to main content
POST
/
v1
/
form_fields
/
{form_field_id}
/
placements
Creates a Form Field Placement
curl --request POST \
  --url https://api.rootly.com/v1/form_fields/{form_field_id}/placements \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "form_field_placements",
    "attributes": {
      "form_set_id": "<string>",
      "form": "<string>",
      "position": 123,
      "required": true,
      "required_operator": "and",
      "placement_operator": "and",
      "non_editable": true
    }
  }
}'
{
  "data": {
    "id": "f67ea2bc-ca32-44e6-ab4c-d5d46a1521ea",
    "type": "form_field_placements",
    "attributes": {
      "form_field_id": "7f89724a-06fa-4a09-8ca2-d490d188c05f",
      "form_set_id": "5f4cab88-dcbb-424c-a18f-9127de0fcbf4",
      "form": "slack_new_incident_form",
      "position": 1,
      "required": false,
      "placement_operator": "and",
      "required_operator": "and",
      "non_editable": true
    }
  }
}

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_placement created with non_editable true

data
object
required