Update Individual

The endpoint allows to update an existing Individual.

SecuritybearerAuth
Request
path Parameters
Business-ID
required
string <uuid>

Business-ID

Individual-ID
required
string <uuid>

Individual-ID

Request Body schema: application/json

Request details

external_id
string

External ID

first_name
string

First name

last_name
string

Last name

email
string

Email address

phone
string

Phone number

birth_place
string

Birth place

birth_date
string

Birth date in YYYY-MM-DD format

citizenship
string

Citizenship country code in ISO 3166-1 alpha-2

object
object
Responses
200

The Individual has been updated

401

Unauthorized

403

Forbidden

404

Not found

422

Error

500

Internal Error

503

Maintenance or Service unavailable

patch/v1/businesses/{Business-ID}/individuals/{Individual-ID}
Request samples
application/json
{
  • "external_id": "Ext-Id-1",
  • "first_name": "FirstName",
  • "last_name": "LastName",
  • "email": "firstname.lastname@domain.tld",
  • "phone": "38712345678",
  • "birth_place": "Barcelona",
  • "birth_date": "1990-12-31",
  • "citizenship": "AT",
  • "address": {
    },
  • "identification_document": {
    }
}
Response samples
application/json
{
  • "data": {
    }
}