v50

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-08-0342108400.9 KB
Merchants

List Persons

Returns the Persons related to a Merchant.

get/v1/merchants/{merchant_code}/persons

Path parameters

merchant_codestring required
Example:MK10CL2A

Short unique identifier for the merchant.

Query parameters

versionstring

The version of the resource. At the moment, the only supported value is latest. When provided and the requested resource's change_status is pending, the resource will be returned with all pending changes applied. When no changes are pending the resource is returned as is. The change_status in the response body will reflect the current state of the resource.

Response

Returns a list of Persons for a valid Merchant identifier.

Example response

{
  "items": [
    {
      "birthdate": "1980-01-12T00:00:00Z",
      "given_name": "James Herrald",
      "family_name": "Bond",
      "middle_name": "Maria Sophie",
      "phone_number": "+420123456789",
      "ownership": {
        "share": 50000
      },
      "address": {
        "street_address": [
          "Paul-Linke-Ufer 39-40",
          "2. Hinterhof"
        ],
        "post_code": "10999",
        "city": "Berlin",
        "country": "DE"
      },
      "identifiers": [
        {
          "ref": "br.cpf",
          "value": "847.060.136-90"
        }
      ],
      "citizenship": "BR"
    }
  ]
}