GET
/
v1
/
accounts
curl --request GET \
  --url https://client-api.dev.finhost.io/v1/accounts \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "alias": "<string>",
    "currency": "<string>",
    "pending": "<string>",
    "status": "<string>",
    "endUserId": "<string>",
    "companyId": "<string>",
    "createdAt": "<string>",
    "products": [
      {
        "extAccountId": "<string>",
        "id": "<string>"
      }
    ],
    "updatedAt": "<string>",
    "posted": "<string>",
    "title": "<string>",
    "variantId": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

companyId
string

Company id

Response

200 - application/json
200 response

The response is of type object[].