Easyflow API Document
https://mobile-docs.easyflow.digital/_mock/openapi/
https://wz0ppvhzw7.execute-api.sa-east-1.amazonaws.com/
- Mock server
https://mobile-docs.easyflow.digital/_mock/openapi/easyflow/businesses/balance
- Production environment URL
https://wz0ppvhzw7.execute-api.sa-east-1.amazonaws.com/easyflow/businesses/balance
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://mobile-docs.easyflow.digital/_mock/openapi/easyflow/businesses/balance \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'business-id: string' \
-H 'x-fingerprint-id: string'{ "statusCode": 0, "data": { "accountFundsInCents": 0, "toBeReleasedFundsInCents": 0, "lastTimeBalanceWasCalculated": "2019-08-24T14:15:22Z", "totalFundsInCents": 0, "blockedFundsInCents": 0 } }
- Mock server
https://mobile-docs.easyflow.digital/_mock/openapi/easyflow/movement-groups/list
- Production environment URL
https://wz0ppvhzw7.execute-api.sa-east-1.amazonaws.com/easyflow/movement-groups/list
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://mobile-docs.easyflow.digital/_mock/openapi/easyflow/movement-groups/list?page=string&limit=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'business-id: string' \
-H 'x-fingerprint-id: string' \
-d '{
"initialDate": "2019-08-24T14:15:22Z",
"endDate": "2019-08-24T14:15:22Z",
"movementsLimit": 0,
"omitDebit": true,
"omitCredit": true
}'{ "statusCode": 200, "data": { "groups": { … } } }
- Mock server
https://mobile-docs.easyflow.digital/_mock/openapi/easyflow/movements/list
- Production environment URL
https://wz0ppvhzw7.execute-api.sa-east-1.amazonaws.com/easyflow/movements/list
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://mobile-docs.easyflow.digital/_mock/openapi/easyflow/movements/list?page=string&limit=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'business-id: string' \
-H 'x-fingerprint-id: string' \
-d '{
"initialValue": 0,
"endValue": 0,
"subject": "string",
"description": "string",
"hash": "string",
"originType": "payment",
"referenceId": "string",
"groupId": "string",
"initialDate": "2019-08-24T14:15:22Z",
"endDate": "2019-08-24T14:15:22Z",
"omitDebit": true,
"omitCredit": true
}'{ "statusCode": 200, "data": { "movements": { … }, "count": 1, "totalValue": 380 } }
- Mock server
https://mobile-docs.easyflow.digital/_mock/openapi/easyflow/withdraw-requests/list-by-business
- Production environment URL
https://wz0ppvhzw7.execute-api.sa-east-1.amazonaws.com/easyflow/withdraw-requests/list-by-business
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://mobile-docs.easyflow.digital/_mock/openapi/easyflow/withdraw-requests/list-by-business?page=string&limit=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'business-id: string' \
-H 'x-fingerprint-id: string' \
-d '{
"initialDate": "2019-08-24T14:15:22Z",
"endDate": "2019-08-24T14:15:22Z",
"status": "requested",
"initialValue": 0,
"endValue": 0,
"orderBy": {
"orderByField": "createdAt",
"orderDirection": "asc"
}
}'{ "statusCode": 200, "data": { "docs": [ … ], "limit": 25, "currentPage": 1, "nextPage": 1, "totalPages": 1, "totalDocs": 1, "hasNext": false } }
- Mock server
https://mobile-docs.easyflow.digital/_mock/openapi/easyflow/withdraw-requests/{withdrawRequestId}
- Production environment URL
https://wz0ppvhzw7.execute-api.sa-east-1.amazonaws.com/easyflow/withdraw-requests/{withdrawRequestId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://mobile-docs.easyflow.digital/_mock/openapi/easyflow/withdraw-requests/{withdrawRequestId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'business-id: string' \
-H 'x-fingerprint-id: string'{ "statusCode": 200, "data": { "id": "fb2d3e30-1852-4c6b-bb7f-282d25ad348f", "valueInCents": 3000, "status": "released", "createdAt": "2025-09-15T17:52:22.661Z", "bankAccount": { … }, "withdrawRequestsHistory": [ … ] } }