Skip to main content
POST
/
checks
/
exemptions
Create an exemption
curl --request POST \
  --url https://backstage.example.com/api/soundcheck/checks/exemptions \
  --header 'Content-Type: application/json' \
  --data '
{
  "checkId": "<string>",
  "entityRef": "<string>",
  "justification": "<string>"
}
'
{
  "exemption": {
    "checkId": "<string>",
    "entityRef": "<string>",
    "userRef": "<string>",
    "justification": "<string>",
    "timestamp": "<string>"
  }
}

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.

Body

application/json
checkId
string
required
entityRef
string
required
justification
string
required

Response

Created

exemption
object
required