Creates a new payee (individual or business). PII is tokenized via Basis Theory.
cURL
curl --request POST \ --url https://api.antonpayments.com/v1/payees \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "type": "individual", "country": "<string>", "external_ref": "<string>", "metadata": {} } '
{ "data": { "id": "pye_abc123", "merchant_id": "<string>", "type": "individual", "status": "active", "display_name": "<string>", "country": "<string>", "external_ref": "<string>", "metadata": {}, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } }
Merchant API key: ak_live_* (production) or ak_test_* (sandbox).
ak_live_*
ak_test_*
individual
business
2
Show child attributes
Payee created.