Refund request
Create a refund request
Creates a refund request for a user. The caller must have the companies_manage permission in a company the target user (user_id) belongs to.
On creation a confirmation token is generated server-side; the target user then confirms the request by email before it is processed.
post/v1/refund_requests
Parameters
#/paths/~1v1~1bills/get/parameters/0 — unresolved $ref
Request body
Example request
{
"amount": 50000,
"status": "pending",
"reason": "Saldo no utilizado"
}Response
The created refund request.
Example response
{
"amount": 50000,
"status": "pending",
"reason": "Saldo no utilizado"
}