Fetch the businesses for the current user

GET /users/{user_id}/kyc/businesses

Fetch the businesses for the current user.

Path parameters

  • user_id string Required

    User id

Responses

  • 200

    The businesses of the current user

    Hide response attributes Show response attributes array[object]
    • id string(uuid)
    • name string
    • tax_id_number string
    • register_number string
    • country_of_taxation string

      two-letter country codes in ISO 3166-1 alpha-2 format

    • second_country_of_taxation string

      two-letter country codes in ISO 3166-1 alpha-2 format

    • second_tax_id_number string
    • exclusively_taxable_in_country_of_taxation boolean
  • 404

    Resource not found.

GET /users/{user_id}/kyc/businesses
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/users/{user_id}/kyc/businesses
Response examples (200)
[
  {
    "id": "string",
    "name": "string",
    "legal_name": "string",
    "tax_id_number": "string",
    "legal_form": "string",
    "register_number": "string",
    "country_of_taxation": "string",
    "second_country_of_taxation": "string",
    "second_tax_id_number": "string",
    "exclusively_taxable_in_country_of_taxation": true
  }
]
Response examples (200)
[
  {
    "id": "string",
    "name": "string",
    "legal_name": "string",
    "tax_id_number": "string",
    "legal_form": "string",
    "register_number": "string",
    "country_of_taxation": "string",
    "second_country_of_taxation": "string",
    "second_tax_id_number": "string",
    "exclusively_taxable_in_country_of_taxation": true
  }
]