### API Endpoint

Base URL: `https://api.uat.laka.co/v3/accounts/{personId}`

#### HTTP Request Example

```bash
curl --request PATCH \
     --url https://api.uat.laka.co/v3/accounts/personId \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
```

### Response

#### 200

The updated record

---

### Person Object Schema

- **personId** (string, required)
- **id** (uuid): Unique identifier (UUID v4 format)
- **externalId** (string): External identifier for integration purposes.
- **userId** (uuid): Unique identifier (UUID v4 format)
- **dateOfBirth** (date): Date of birth in ISO 8601 format
- **type** (string, enum): Type of person - Allowed: `Person`, `Organisation`, `Rider`
- **address** (object): Address object
- **email** (string)
- **firstName** (string, length ≤ 100): The first name of the person.
- **lastName** (string): The last name(s) of the person.
- **companyName** (string): The company name for business entities.
- **cityOfBirth** (string)
- **countryOfBirth** (string)
- **telephoneNumber** (string)
- **region** (string)
- **defaultCurrency** (string)
- **x-api-region** (string): The API region of your interaction.
- **x-api-language** (string): The language for textual content.

### Usage

Click `Try It!` to start a request and see the response.
