POST
/
api
/
v3
/
leaveRequests
/
{id}
/
approvals
curl --request POST \
  --url https://{host}/api/v3/leaveRequests/{id}/approvals \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "approved": false,
  "comment": "your presence is required at the working meeting"
}'
This response does not have an example.

Headers

Authorization
string
required

API key. Value must be formatted like so: lucca application={api_key}.

Path Parameters

id
string
required

ID of the leave-request.

Body

application/json
approved
boolean
comment
string | null

Response

200
_mintlify/placeholder

OK