Get Wallet Providers
Returns a list of available provider accounts for creating wallets. Use the id from this response when creating a wallet.
Endpoint​
GET /api/v2/organizations/{org_id}/wallets/providers
Path Parameters​
| Parameter | Type | Required | Description |
|---|---|---|---|
org_id | string | Yes | Your organization ID |
Request​
curl -X GET "https://api.4pay.cc/api/v2/organizations/{org_id}/wallets/providers" \
-H "Authorization: Bearer YOUR_API_KEY"
Response​
200 OK
{
"data": [
{
"id": "1f01110f-e8b1-6188-80e5-52f68afc03c5",
"name": "Default Provider",
"currency": "USD"
}
]
}
Response Fields​
| Field | Type | Description |
|---|---|---|
id | string (UUID) | Provider account ID — use this when creating a wallet |
name | string | Human-readable provider name |
currency | string | Currency supported by this provider |