Synswi
  1. Accounts
Synswi
  • Guides
    • Getting Started With the API
  • API Reference
    • Accounts
      • Onboarding forms
        • Create a Onboarding Form
      • Get profile
        GET
      • Create new profile
        POST
      • Register webhook
        POST
      • Get Accounts
        GET
    • Account Setting
      • Get account setting
      • Update account setting
    • Devices
      • Get Devices
    • Dispute
      • Get disputes
    • Payment instruments
      • Create a payment instrument
      • Get payment instruments
      • Get a payment instrument by id
      • Create a Payment Instrument
    • Transactions
      • Get a transaction by id
      • Get transactions
      • Create a transaction
      • Update a transaction
      • Refund a transaction
    • Fees
      • Get current fee profile
    • Settlements
      • get settlements
      • get settlement entries
    • Identity
      • Register an user
      • Login
      • Validate Token
      • Create an api key
      • List api keys
      • Get Users
    • Programs
      • Accounts
    • Permission
      • Verify user permissions
      • Get Account Users
      • List Accounts
    • Events
      • Get Events
  1. Accounts

Get profile

Developing
GET
https://api-dev.synswi.com/accounts/profiles

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200OK
application/json
Body

Example
{
    "_id": "string",
    "id": "string",
    "accountId": "string",
    "representatives": [
        {
            "firstName": "string",
            "lastName": "string",
            "title": "string",
            "email": "string",
            "phone": "string",
            "dob": "string",
            "ssn": "string",
            "addressLine1": "string",
            "addressLine2": "string",
            "city": "string",
            "state": "string",
            "zipcode": "string",
            "country": "string"
        }
    ],
    "businessDetails": {
        "businessName": "string",
        "businessDescription": "string",
        "doingBusinessAs": "string",
        "businessType": "string",
        "incorporationDate": "string",
        "website": "string",
        "email": "string",
        "phone": "string",
        "mcc": "string",
        "ein": "string",
        "addressLine1": "string",
        "addressLine2": "string",
        "city": "string",
        "state": "string",
        "country": "string",
        "zipcode": "string"
    }
}
Previous
Create a Onboarding Form
Next
Create new profile
Built with