cURL
curl --request GET \ --url https://api.sandbox.wepayout.com.br/v2/account/markups \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": 1, "product": "payin", "payment_method": "pix", "account_id": 123, "parent_id": null, "type": "global", "mode": "percent", "amount": 2.5, "min_charge_value": 1.0, "max_charge_value": 100.0, "enabled": true, "created_at": "2025-01-01 12:00:00", "updated_at": "2025-01-10 09:30:00" }, { "id": 2, "product": "payout", "payment_method": "ted", "account_id": 123, "parent_id": null, "type": "global", "mode": "fixed", "amount": 5.0, "min_charge_value": null, "max_charge_value": null, "enabled": true, "created_at": "2025-01-02 12:00:00", "updated_at": "2025-01-10 09:40:00" } ] }
List markup configurations for merchants with optional filters.
1
account_id
pix
billet
credit_card
payin
payout
global
curl -X GET "https://api.sandbox.wepayout.com.br/v2/account/markups" \ -H "Authorization: Bearer SEU_TOKEN_AQUI" \ -H "Accept: application/json"
Show Markup Object
fixed
percent
mode
Was this page helpful?