Overview
AlertEvents
AlertGroups
AlertRoutingRules
AlertUrgencies
AlertSources
Alerts
Audits
Authorizations
CatalogEntities
CatalogEntityProperties
CatalogFields
Catalogs
[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
- GETList incidents
- POSTCreates an incident
- GETRetrieves an incident
- PUTUpdate an incident
- DELDelete an incident
- PUTMitigate an incident
- PUTResolve an incident
- PUTCancel an incident
- PUTTriage an incident
- PUTRestart an incident
- PUTMark an incident as a duplicate
- POSTAdd subscribers to incident
- DELRemove subscribers from incident
- POSTAssign user to incident
- DELRemove assigned user from incident
IpRanges
LiveCallRouters
OnCallRoles
OnCallShadows
OverrideShifts
PlaybookTasks
Playbooks
RetrospectiveTemplates
RetrospectiveConfigurations
RetrospectiveProcessGroupSteps
RetrospectiveProcessGroups
RetrospectiveProcesses
RetrospectiveSteps
ScheduleRotationActiveDays
ScheduleRotationUsers
ScheduleRotations
Schedules
Services
Severities
StatusPageTemplates
StatusPages
SubStatuses
Teams
UserNotificationRules
WebhooksDeliveries
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/{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"
}
}
}'
{
"data": {
"id": "694066c7-aab8-4ae3-8249-7ec0cf84429d",
"type": "form_field_placements",
"attributes": {
"form_field_id": "96947bc7-9efb-4a4d-83b2-157c0b44a2aa",
"form_set_id": "3ca7120f-078e-4509-8b5b-ef5cf72430c4",
"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/{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"
}
}
}'
{
"data": {
"id": "694066c7-aab8-4ae3-8249-7ec0cf84429d",
"type": "form_field_placements",
"attributes": {
"form_field_id": "96947bc7-9efb-4a4d-83b2-157c0b44a2aa",
"form_set_id": "3ca7120f-078e-4509-8b5b-ef5cf72430c4",
"form": "web_update_incident_form",
"position": 1,
"required": false,
"placement_operator": "and",
"required_operator": "and"
}
}
}