Payment Providers
Get Provider Connections
Getting Started
- Overview
- Authentication
- Concepts
- Error Codes
- Real-time Events
- Changelog
Core Profile
- Profile
- Members
- Owners
- Addresses
- Documents
- Access Tokens
- Webhooks
Core Wallet
- Wallets
- Balances
- Accounts
- Contacts
- Payment Links
- Statements
- Transfers
- Transactions
Billing & Payments
- Customers
- Plans
- Vouchers
- Invoices
- Subscriptions
- Payments
Integrations
Analytics & Logs
- Metrics
- Logs
Resources
- Banks
- Countries
- Currencies
- Events
- Industries
- Legal Form
- Providers
- Scopes
Get Provider Connections
Fetch a list of connected providers. (Business Only)
GET
/
providers
curl --request GET \
--url https://api.live.paisr.tech/{version}/providers \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"providers": [
{
"id": "bpc_123456",
"name": "Paisr Pay",
"description": "The fastest way to make payments in the Caribbean.",
"logo": "<string>",
"type": "wallet",
"connector": {
"status": "enabled",
"slug": "pcb",
"available": true,
"built_in": true,
"supported_currencies": [
[
"SRD",
"USD",
"EUR"
]
]
},
"metadata": {},
"created_at": "2023-11-07T05:31:56Z"
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Successfully retrieved the list of providers.
Example:
true
Example:
"bpc_123456"
Example:
"Paisr Pay"
Example:
"The fastest way to make payments in the Caribbean."
Example:
"wallet"
Available options:
enabled
, disabled
Example:
"enabled"
Example:
"pcb"
Example:
true
Example:
true
Was this page helpful?
curl --request GET \
--url https://api.live.paisr.tech/{version}/providers \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"providers": [
{
"id": "bpc_123456",
"name": "Paisr Pay",
"description": "The fastest way to make payments in the Caribbean.",
"logo": "<string>",
"type": "wallet",
"connector": {
"status": "enabled",
"slug": "pcb",
"available": true,
"built_in": true,
"supported_currencies": [
[
"SRD",
"USD",
"EUR"
]
]
},
"metadata": {},
"created_at": "2023-11-07T05:31:56Z"
}
]
}
}