v1

latestOpenAPI 3.0.12026-08-06151265417.9 KB
Suppression Requests

Update multiple suppression requests state

Updates the state of multiple project suppression requests

put/api/v3.0/orgs/{orgUuid}/projects/{projectUuid}/approvalRequests

Path parameters

projectUuidstring required

UUID of the project

Request body

action'APPROVE' | 'REJECT' | 'REQUEST_INFO' | 'MARK_PENDING' required

Action to execute on the suppression request

commentstring

Reviewer note

elementUuidsstring[] required

List of identifiers of the suppression requests to update

Example request

{
  "action": "APPROVE",
  "comment": "More details are required",
  "elementUuids": [
    "123e4567-e89b-12d3-a456-426655440000"
  ]
}

Response

OK

supportTokenstring

Example response

{
  "supportToken": "1171c60d",
  "response": {
    "message": "Success!"
  }
}