Delete parameters
Spaces method and path for this operation:
delete /s/{space_id}/api/synthetics/params/_bulk_delete
Refer to Spaces for more information.
Delete parameters from the Synthetics app.
You must have all
privileges for the Synthetics feature in the Observability section of the Kibana feature privileges.
DELETE
/api/synthetics/params/_bulk_delete
curl \
--request DELETE 'https://localhost:5601/api/synthetics/params/_bulk_delete' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '"{\n \"ids\": [\"param1-id\", \"param2-id\"]\n}"'
Request example
Run `POST /api/synthetics/params/_bulk_delete` to delete multiple parameters.
{
"ids": ["param1-id", "param2-id"]
}
Response examples (200)
[
{
"id": "param1-id",
"deleted": true
}
]