Skip to main content
PUT
/
checks
/
{checkId}
Update a check
curl --request PUT \
  --url https://backstage.example.com/api/soundcheck/checks/{checkId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "ownerEntityRef": "<string>",
  "name": "<string>",
  "description": "<string>",
  "filter": {}
}
'
{
  "check": {
    "id": "<string>",
    "ownerEntityRef": "<string>",
    "name": "<string>",
    "description": "<string>",
    "filter": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://backstage.spotify.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

checkId
string
required

The ID of the check

Body

application/json
id
string
required
ownerEntityRef
string
name
string
Required string length: 1 - 100
description
string
filter
object

Generator-friendly approximation of the runtime EntityFilter type. Runtime validation accepts a record of string or string[] values.

Response

OK

check
object
required