Update Authorization
PUT /authorizations/{id}
Description
Update an existing authorization.
Authentication
Bearer Token
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer {{token}} | Yes |
| Content-Type | application/json | Yes |
Path Parameters
| Parameter | Type | Description |
|---|---|---|
id | UUID | Authorization ID |
Request Body
{
"entityType": "FiscalYear",
"authorizedBy": "263775843593",
"status": "PENDING"
}
| Field | Type | Required | Description |
|---|---|---|---|
entityType | string | Yes | Type of entity being authorized |
authorizedBy | string | Yes | Username of the authorizer |
status | string | Yes | New status (e.g., PENDING, APPROVED, REJECTED) |