Skip to main content
GET
/
checks
/
exemptions
Get exemptions
curl --request GET \
  --url https://backstage.example.com/api/soundcheck/checks/exemptions
{
  "exemptions": [
    {
      "checkId": "<string>",
      "entityRef": "<string>",
      "userRef": "<string>",
      "justification": "<string>",
      "timestamp": "<string>"
    }
  ],
  "totalCount": 123
}

Query Parameters

checkId
string

Return exemptions for this check ID.

trackId
string

Return exemptions for all checks in this track ID.

limit
integer
default:25

Maximum number of exemptions to return (used when no filter is provided). Defaults to 25, max 100.

Required range: x <= 100
offset
integer
default:0

Number of exemptions to skip (used when no filter is provided). Defaults to 0.

Response

OK

exemptions
object[]
required
totalCount
integer
required