Fetch the address of the business

GET /users/{user_id}/kyc/businesses/{business_id}/addresses

Fetch the address of the business.

Path parameters

  • user_id string Required

    User id

  • business_id string Required

    Business id

Responses

  • 200

    The address of the business

    Hide response attributes Show response attributes object
    • id string(uuid)
    • street_additional string
    • city string
    • country string

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

    • state string
    • street string
    • number string
    • zipcode string
  • 404

    Resource not found.

GET /users/{user_id}/kyc/businesses/{business_id}/addresses
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/users/{user_id}/kyc/businesses/{business_id}/addresses
Response examples (200)
{
  "id": "string",
  "street_additional": "string",
  "city": "string",
  "country": "string",
  "state": "string",
  "street": "string",
  "number": "string",
  "zipcode": "string"
}
Response examples (200)
{
  "id": "string",
  "street_additional": "string",
  "city": "string",
  "country": "string",
  "state": "string",
  "street": "string",
  "number": "string",
  "zipcode": "string"
}