Skip to main content
PATCH
/
api
/
preview
/
persons
/
{id}
cURL
curl --request PATCH \
  --url https://api.example.com/api/preview/persons/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "addresses": [
    {
      "street": "<string>",
      "houseNumber": "<string>",
      "additionalAddressInfo": "<string>",
      "zipCode": "<string>",
      "city": "<string>",
      "stateCode": "<string>",
      "country": "<string>"
    }
  ],
  "bankDetails": {
    "iban": "<string>",
    "bic": "<string>",
    "payee": "<string>"
  }
}
'
This is a preview of an not yet published endpoint. Content is subject to change. Use the navigation on the left to return to published content.
While the endpoint itself supports the patch mechanism and individual fields can be transferred, this does not apply to the contents of those fields. For example, if only part of an address is transferred, it is stored exactly as it is, and any additional information is discarded.

Path Parameters

id
string
required

Body

application/json
addresses
(StreetAddress · object | PostOfficeBox · object)[]

Private addresses of the person. The first one will be be made the default and used for payroll and time employments.

bankDetails
object

Response

200

OK

Last modified on April 14, 2026