Update a specific form_set by id
curl --request PUT \
--url https://api.rootly.com/v1/form_sets/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "form_sets",
"attributes": {
"name": "<string>",
"forms": [
"<string>"
]
}
}
}
'{
"data": {
"id": "<string>",
"type": "form_sets",
"attributes": {
"name": "<string>",
"is_default": true,
"forms": [
"<string>"
],
"created_at": "<string>",
"updated_at": "<string>",
"slug": "<string>"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Show child attributes
form_set updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/form_sets/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "form_sets",
"attributes": {
"name": "<string>",
"forms": [
"<string>"
]
}
}
}
'{
"data": {
"id": "<string>",
"type": "form_sets",
"attributes": {
"name": "<string>",
"is_default": true,
"forms": [
"<string>"
],
"created_at": "<string>",
"updated_at": "<string>",
"slug": "<string>"
}
}
}