Follow the question structure recommended by Dev Bot before submitting your integration questions.
GET /api/v2/salesGET /api/v2/membersGET /api/v1/receivables{
"IdW12": 123,
"IdBranch": 1,
"IdRecord": 123,
"EventType": "NewSale",
"ApiCallback": "https://evo-integracao-api.w12app.com.br/api/v1/sales/123"
}GET /api/v2/sales?dateSaleStart=2024-06-01&dateSaleEnd=2024-06-30&showReceivables=true| Parameter | Description |
|---|---|
dateSaleStart | Start date for sales filter (yyyy-mm-dd) |
dateSaleEnd | End date for sales filter (yyyy-mm-dd) |
showReceivables | Returns the receivables linked to the sale |
GET /api/v2/sales?idSale=12345&showReceivables=true"receivables": [
{
"idReceivable": 9876,
"status": {
"id": 2,
"name": "Received"
},
"receivingDate": "2024-06-12",
"ammountPaid": 150.00
}
]| ID | Name |
|---|---|
| 1 | Open |
| 2 | Received |
| 3 | Canceled |
| 4 | Overdue |
GET /api/v2/members/{idMember}π§ The issuance of the invoice occurs outside of EVO.
ClearedDebt{
"IdW12": 123,
"IdBranch": 1,
"IdRecord": 12345,
"EventType": "ClearedDebt",
"ApiCallback": "https://evo-integracao-api.w12app.com.br/api/v2/sales/123"
}GET /api/v2/sales?idSale=12345&showReceivables=true