Profile
Get Profile
Getting Started
- Overview
- Authentication
- Concepts
- Error Codes
- Real-time Events
- Changelog
Core Profile
- Profile
- GETGet Profile
- PUTUpdate Profile
- PATCHSubmit Application
- Status
- Identity
- Domain
- GET
- 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 Profile
Fetch profile information.
GET
/
profiles
curl --request GET \
--url https://api.live.paisr.tech/{version}/profiles \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": "bus_123456",
"owner": "abc123456",
"legal_name": "Acme Incorporation",
"public_name": "Acme",
"type": "free",
"avatar": "<string>",
"slogan": "My example slogan",
"about": "We are a company focussed on providing value to customers.",
"contact": {
"email": "hello@acme.com",
"phone": "+597-412345",
"website": "https://acme.com"
},
"attributes": {
"industry": "technology",
"target_market": [
"B2B",
"B2C"
],
"target_audience": [
"Local",
"Regional"
]
},
"identity": {
"country": "SR",
"status": "verified",
"incorporated": true,
"date_of_incorporation": "2022-10-12",
"legal_form": "for-profit-corporation",
"commerce_number": "XX123456",
"tax_number": "XX123456",
"approved": true,
"approved_at": "2023-11-07T05:31:56Z"
},
"theme": {
"primary": "#6A66F2",
"accent": "#E6E6FF"
},
"domain": {
"host": "<string>",
"cname": "<string>",
"txt": "<string>",
"status": "unset"
},
"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 profile.
Example:
true
Example:
"bus_123456"
Example:
"abc123456"
Example:
"Acme Incorporation"
Example:
"Acme"
Available options:
free
, pro
, enterprise
Example:
"My example slogan"
Example:
"We are a company focussed on providing value to customers."
Example:
"SR"
Available options:
unverified
, pending
, verified
, limited
, denied
Example:
"verified"
Example:
true
Example:
"2022-10-12"
Example:
"for-profit-corporation"
Example:
"XX123456"
Example:
"XX123456"
Example:
true
Was this page helpful?
curl --request GET \
--url https://api.live.paisr.tech/{version}/profiles \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": "bus_123456",
"owner": "abc123456",
"legal_name": "Acme Incorporation",
"public_name": "Acme",
"type": "free",
"avatar": "<string>",
"slogan": "My example slogan",
"about": "We are a company focussed on providing value to customers.",
"contact": {
"email": "hello@acme.com",
"phone": "+597-412345",
"website": "https://acme.com"
},
"attributes": {
"industry": "technology",
"target_market": [
"B2B",
"B2C"
],
"target_audience": [
"Local",
"Regional"
]
},
"identity": {
"country": "SR",
"status": "verified",
"incorporated": true,
"date_of_incorporation": "2022-10-12",
"legal_form": "for-profit-corporation",
"commerce_number": "XX123456",
"tax_number": "XX123456",
"approved": true,
"approved_at": "2023-11-07T05:31:56Z"
},
"theme": {
"primary": "#6A66F2",
"accent": "#E6E6FF"
},
"domain": {
"host": "<string>",
"cname": "<string>",
"txt": "<string>",
"status": "unset"
},
"created_at": "2023-11-07T05:31:56Z"
}
}