Deleting the Specified Test

Delete policy test.

Delete policy test. Only users with the Standard Registry role are allowed to make the request.

DELETE/api/v1/policies/{policyId}/test/{testId}
Authorization
Path parameters
policyId*string

Policy Id

Example: "000000000000000000000001"
testId*string

Test Id

Example: "000000000000000000000001"
Response

Successful operation.

Body
boolean
Request
const response = await fetch('/api/v1/policies/{policyId}/test/{testId}', {
    method: 'DELETE',
    headers: {
      "Authorization": "Bearer JWT"
    },
});
const data = await response.json();
Response
false

Last updated