DELETE /api/v1/delegations/{id} — Delete Delegation
Deletes an existing delegation, removing the delegate's authority to act on behalf of the delegator.
Authentication
SadqAuthorize
Request Headers
- Authorization (required)
- Bearer {token}
Path Parameters
- id (string, required)
- The unique identifier of the delegation to delete.
Responses
HTTP 200 — Delegation deleted
{
"data": true,
"errorCode": 0,
"message": null,
"returnUrl": "/dashboard",
"stateValidationErrors": null,
"signature": ""
}HTTP 409 — Delegation is active
{
"data": true,
"errorCode": 0,
"message": "",
"returnUrl": "/dashboard",
"stateValidationErrors": null,
"signature": ""
}