Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Resource UUID
Body
application/vnd.api+json
Response
custom_form updated
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": "f9979fdf-67c9-48fa-8d57-c12ba2d0c755",
"type": "custom_forms",
"attributes": {
"slug": "dolores-hic-occaecati-quo",
"name": "Test Update",
"description": "Officia aliquid numquam voluptatem.",
"enabled": true,
"command": "dolores-hic-occaecati-quo",
"created_at": "2025-09-25T07:03:32.174-07:00",
"updated_at": "2025-09-25T07:03:35.087-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
Show child attributes
custom_form updated
Show child attributes
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": "f9979fdf-67c9-48fa-8d57-c12ba2d0c755",
"type": "custom_forms",
"attributes": {
"slug": "dolores-hic-occaecati-quo",
"name": "Test Update",
"description": "Officia aliquid numquam voluptatem.",
"enabled": true,
"command": "dolores-hic-occaecati-quo",
"created_at": "2025-09-25T07:03:32.174-07:00",
"updated_at": "2025-09-25T07:03:35.087-07:00"
}
}
}