As mentioned in the title, the PersonRequestBody class can not handle the custom_fields data.
See here:
|
public function __construct(array $data = null) |
Compare this to OrganizationRequestBody:
|
$this->container['custom_fields'] = $data['custom_fields'] ?? null; |
The missing custom_fields prevent us from updating our extension to API v2.
As mentioned in the title, the
PersonRequestBodyclass can not handle thecustom_fieldsdata.See here:
client-php/lib/versions/v2/Model/PersonRequestBody.php
Line 266 in f004c0f
Compare this to
OrganizationRequestBody:client-php/lib/versions/v2/Model/OrganizationRequestBody.php
Line 244 in f004c0f
The missing
custom_fieldsprevent us from updating our extension to API v2.