Overview
Reference
- AlertEvents
- AlertGroups
- AlertUrgencies
- AlertSources
- Alerts
- Audits
- Authorizations
- CatalogEntities
- CatalogEntityProperties
- CatalogFields
- Catalogs
- Causes
- [DEPRECATED] CustomFieldOptions
- [DEPRECATED] CustomFields
- CustomForms
- DashboardPanels
- Dashboards
- Environments
- EscalationPolicies
- EscalationLevelsPolicies
- EscalationLevelsPath
- EscalationLevels
- EscalationPaths
- FormFieldOptions
- FormFieldPlacementConditions
- FormFieldPlacements
- FormFieldPositions
- FormFields
- FormSetConditions
- FormSets
- Functionalities
- WorkflowTasks
- [DEPRECATED] WorkflowCustomFieldSelections
- WorkflowFormFieldConditions
- WorkflowGroups
- WorkflowRuns
- Workflows
- Heartbeats
- IncidentActionItems
- [DEPRECATED] IncidentCustomFieldSelections
- IncidentEventFunctionalities
- IncidentEventServices
- IncidentEvents
- IncidentFeedbacks
- IncidentFormFieldSelections
- IncidentPermissionSetBooleans
- IncidentPermissionSetResources
- IncidentPermissionSets
- IncidentRetrospectives
- IncidentRetrospectiveSteps
- IncidentRoleTasks
- IncidentRoles
- IncidentStatusPageEvents
- IncidentSubStatuses
- IncidentTypes
- Incidents
- IpRanges
- LiveCallRouters
- OnCallRoles
- OnCallShadows
- OverrideShifts
- PlaybookTasks
- Playbooks
- RetrospectiveTemplates
- Pulses
- RetrospectiveConfigurations
- RetrospectiveProcessGroupSteps
- RetrospectiveProcessGroups
- RetrospectiveProcesses
- RetrospectiveSteps
- Roles
- ScheduleRotationActiveDays
- ScheduleRotationUsers
- ScheduleRotations
- Schedules
- Shifts
- Secrets
- Services
- Severities
- StatusPageTemplates
- StatusPages
- SubStatuses
- Teams
- UserNotificationRules
- Users
- WebhooksDeliveries
- WebhooksEndpoints
Update a Form Field Placement
Update a specific form_field_placement by id
curl --request PUT \
--url https://api.rootly.com/v1/form_field_placements/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/vnd.api+json'
{
"data": {
"id": "25139a1f-1bf8-4899-8678-6552535dbf71",
"type": "form_field_placements",
"attributes": {
"form_field_id": "bc7c7253-22a4-41fc-a5e3-988941052d7f",
"form_set_id": "a7df96f5-2fcf-4662-9bb4-5c32100a1d1e",
"form": "web_new_incident_form",
"position": 5,
"required": false,
"placement_operator": "and",
"required_operator": "and"
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
form_field_placements
The form set this field is placed in.
The form this field is placed on.
The position of the field placement.
Whether the field is unconditionally required on this form.
Logical operator when evaluating multiple form_field_placement_conditions with conditioned=required
and
, or
Logical operator when evaluating multiple form_field_placement_conditions with conditioned=placement
and
, or
Response
Unique ID of the form field placement
form_field_placements
The form field that is placed.
The form set this field is placed in.
The form this field is placed on.
The position of the field placement.
Whether the field is unconditionally required on this form.
Logical operator when evaluating multiple form_field_placement_conditions with conditioned=required
and
, or
Logical operator when evaluating multiple form_field_placement_conditions with conditioned=placement
and
, or
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/form_field_placements/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/vnd.api+json'
{
"data": {
"id": "25139a1f-1bf8-4899-8678-6552535dbf71",
"type": "form_field_placements",
"attributes": {
"form_field_id": "bc7c7253-22a4-41fc-a5e3-988941052d7f",
"form_set_id": "a7df96f5-2fcf-4662-9bb4-5c32100a1d1e",
"form": "web_new_incident_form",
"position": 5,
"required": false,
"placement_operator": "and",
"required_operator": "and"
}
}
}