Skip to main content
POST
/
reclaim-requests
/
{id}
/
review
Review reclaim request (Admin only)
curl --request POST \
  --url https://olive-gateway-a6ba.onrender.com/api/v1/reclaim-requests/{id}/review \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "action": "approve"
}
'
{}

Authorizations

Authorization
string
header
required

JWT token from admin login for administrative operations. Format: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...'

Path Parameters

id
string
required

Reclaim Request ID

Body

application/json

Review details

action
enum<string>
required
Available options:
approve,
reject
Example:

"approve"

review_notes
string
Example:

"Approved for check payment"

Response

Request reviewed successfully

The response is of type object.