Modifying the enrollment request before submission
Using the uuid (unique identifier) of the enrollment request returned by the server during its creation, you can modify the registration by calling the resource:
In this case, you can only send the desired modifications.
The request body to be used is the same as for creating a registration.
In both cases, make sure you specify the uuid of the board_member that you would like to modify. Otherwise, you risk duplicating the board member in question.
Administrators have their own identifier, which can be retrieved from the list of administrators returned by the server when the enrollment request is made. You can also obtain it by calling:
If you do not want to change the list of administrators, send an empty board list. Otherwise, when you return the same administrator without the uuid, this will create a duplicate administrator.
Also note that it is not possible to delete an administrator.
PUT /registrations/{registration_uuid}
{ "marketplace": "d085b6bb-4b8e-4f23-b84a-c9e5fafaf3dd", "name": "Acme Corporation", "person_type": "PM", "description": "Seller description", "vat_number": "FRXX123456789", "address": { "country": "FR" }, "board": [], "activities": [ { "name": "Acme Tennis Ball", "siret": "15978525000012" } ], "ibans": [ { "currencies": [ "EUR", "CHF" ], "iban": "FR59441555432E4454227845122" } ] }
At this point, the enrollment request has the CREATED status, and it will maintain this status until you submit the required KYC documents.