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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Successfully retrieved profile.
success
boolean
Example:

true

data
object