Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/vnd.api+json
Response
custom_form created
Creates a new custom form from provided data
curl --request POST \
--url https://api.rootly.com/v1/custom_forms \
--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": "49f1b05e-b99f-460b-9e43-5fd9fc788c82",
"type": "custom_forms",
"attributes": {
"slug": "test",
"name": "Test",
"description": null,
"enabled": true,
"command": "test",
"created_at": "2025-11-06T13:21:10.664-08:00",
"updated_at": "2025-11-06T13:21:10.664-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
custom_form created
Show child attributes
Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/custom_forms \
--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": "49f1b05e-b99f-460b-9e43-5fd9fc788c82",
"type": "custom_forms",
"attributes": {
"slug": "test",
"name": "Test",
"description": null,
"enabled": true,
"command": "test",
"created_at": "2025-11-06T13:21:10.664-08:00",
"updated_at": "2025-11-06T13:21:10.664-08:00"
}
}
}