Customers
Get Customer
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
- Payment Providers
Analytics & Logs
- Metrics
- Logs
Resources
- Banks
- Countries
- Currencies
- Events
- Industries
- Legal Form
- Providers
- Scopes
Get Customer
Fetch customer information. (Business Only)
GET
/
customers
/
{customer_id}
curl --request GET \
--url https://api.live.paisr.tech/{version}/customers/{customer_id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": "cus_123456",
"name": "Jane Smith",
"email": "jane@example.com",
"phone": "+597-8123456",
"default_currency": "SRD",
"billing_details": null,
"shipping_details": null,
"metadata": null,
"session": {
"url": "https://portal.checkout.paisr.tech/ey7bTCm6tur63CR6mzbuq23r",
"expires_in": "30 minutes"
},
"created_at": "2023-11-07T05:31:56Z"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The Customer ID.
Response
200
application/json
Successfully retrieved customer details.
Example:
true
Example:
"cus_123456"
Example:
"Jane Smith"
Example:
"jane@example.com"
Example:
"+597-8123456"
Example:
"SRD"
Example:
"Example Street 10"
Example:
"Paramaribo"
Example:
"SR"
Example:
"Example Street 11"
Example:
"Kwatta"
Example:
"Jane Smith"
Example:
"Example Street 10"
Example:
"Paramaribo"
Example:
"SR"
Example:
"+597-8123456"
Example:
"Example Street 11"
Example:
"Kwatta"
Was this page helpful?
curl --request GET \
--url https://api.live.paisr.tech/{version}/customers/{customer_id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": "cus_123456",
"name": "Jane Smith",
"email": "jane@example.com",
"phone": "+597-8123456",
"default_currency": "SRD",
"billing_details": null,
"shipping_details": null,
"metadata": null,
"session": {
"url": "https://portal.checkout.paisr.tech/ey7bTCm6tur63CR6mzbuq23r",
"expires_in": "30 minutes"
},
"created_at": "2023-11-07T05:31:56Z"
}
}