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
Creates a Form Field Placement
Creates a new form_field_placement from provided data
curl --request POST \
--url https://api.rootly.com/v1/form_fields/%7Bform_field_id%7D/placements \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/vnd.api+json'
{
"data": {
"id": "a81e1669-d323-441b-a999-ee3bca5460e6",
"type": "form_field_placements",
"attributes": {
"form_field_id": "bc7c7253-22a4-41fc-a5e3-988941052d7f",
"form_set_id": "a7df96f5-2fcf-4662-9bb4-5c32100a1d1e",
"form": "web_update_incident_form",
"position": 1,
"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
curl --request POST \
--url https://api.rootly.com/v1/form_fields/%7Bform_field_id%7D/placements \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/vnd.api+json'
{
"data": {
"id": "a81e1669-d323-441b-a999-ee3bca5460e6",
"type": "form_field_placements",
"attributes": {
"form_field_id": "bc7c7253-22a4-41fc-a5e3-988941052d7f",
"form_set_id": "a7df96f5-2fcf-4662-9bb4-5c32100a1d1e",
"form": "web_update_incident_form",
"position": 1,
"required": false,
"placement_operator": "and",
"required_operator": "and"
}
}
}