Update a specific custom form by id
curl --request PUT \
--url https://api.rootly.com/v1/custom_forms/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "custom_forms",
"attributes": {
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"enabled": true,
"command": "<string>"
}
}
}
'{
"data": {
"id": "87f18008-dcbf-4e86-a649-3b0ad99a4c4a",
"type": "custom_forms",
"attributes": {
"slug": "quidem-quam-unde-dolores",
"name": "Test Update",
"description": "Voluptas illo ullam molestias.",
"enabled": true,
"command": "quidem-quam-unde-dolores",
"created_at": "2025-12-13T18:48:15.120-08:00",
"updated_at": "2025-12-13T18:48:17.870-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Show child attributes
custom_forms Show child attributes
The name of the custom form.
The custom form slug. Add this to form_field.shown or form_field.required to associate form fields with custom forms.
The Slack command used to trigger this form.
custom_form updated
Show child attributes
Unique id of the custom form.
custom_forms Show child attributes
The name of the custom form.
The custom form slug. Add this to form_field.shown or form_field.required to associate form fields with custom forms.
The Slack command used to trigger this form.
Date of creation.
Date of last update.
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/custom_forms/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "custom_forms",
"attributes": {
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"enabled": true,
"command": "<string>"
}
}
}
'{
"data": {
"id": "87f18008-dcbf-4e86-a649-3b0ad99a4c4a",
"type": "custom_forms",
"attributes": {
"slug": "quidem-quam-unde-dolores",
"name": "Test Update",
"description": "Voluptas illo ullam molestias.",
"enabled": true,
"command": "quidem-quam-unde-dolores",
"created_at": "2025-12-13T18:48:15.120-08:00",
"updated_at": "2025-12-13T18:48:17.870-08:00"
}
}
}