Update the business information

PATCH /users/{user_id}/kyc/businesses/{id}

Update the business information.

Path parameters

  • user_id string Required

    User id

  • id string Required

    Resource ID

Body Required

Business information

  • tax_id_number string Required
  • register_number string Required
  • country_of_taxation string Required

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

  • second_country_of_taxation string Required

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

  • second_tax_id_number string Required
  • exclusively_taxable_in_country_of_taxation boolean Required

Responses

  • 201

    Business updated and returned

    Hide response attributes Show response attributes 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
  • 422

    Request body has errors or invalid.

  • 401

    Authorization information is missing or invalid.

PATCH /users/{user_id}/kyc/businesses/{id}
curl \
 -X PATCH https://client-subdomain.bitbond.net/api/v1/users/{user_id}/kyc/businesses/{id} \
 -H "Content-Type: application/json" \
 -d '{"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}'
Request example
{
  "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
}
Request examples
{
  "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 (201)
{
  "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 (201)
{
  "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
}