cURL
curl --request POST \ --url https://api.example.com/admin/requests/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "reviewer_note": "<string>", "status": "accepted" } '
{ "id": "<string>", "status": "accepted" }
Retrieves a request by id.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the Request.
A schema for the admin review of request.
Reviewer note.
A status of the request
accepted
rejected
OK