Creating a an enrollment request
Are all vendor details ready? Simply send them to us via the request:
POST/registrations/registrations_create
The transmitted elements are subject to an initial formal check before submission to the compliance department. Errors are indicated by a 400 return code and an error message.
Example of a minimal request body for the enrollment of a legal entity:
POST https://secure.lyra.com/marketplace/v1/registrations/
{"uuid": "354e6fd2-2568-4147-8b37-43acd6dc4881", "seller": null, "href": "https://secure.lyra.com/marketplace/registrations/354e6fd2-2568-4147-8b37-43acd6dc4881", "created_at": "2023-10-09T14:19:24.130103Z", "updated_at": "2023-10-09T14:19:30.181710Z", "marketplace": "467ca516-da10-4744-9f8b-8f62f5965e2d", "person_type": "PM", "name": "Acme Corporation", "description": "Description du vendeur", "vat_number": "FR62881075493", "address": { "country": "FR" }, "board": [ { "role": "LEGAL_REP", "title": "MR", "first_name": "Thomas", "last_name": "Durand", "birth_date": "1949-09-17", "birth_city": "BONEVOIX", "nationality": "FR", "address": { "country": "FR" } } ], "activities": [ { "name": "Acme Tennis Ball", "siret": "99556699889944" } ], "ibans": [ { "currencies": ["EUR", "CHF"], "iban": "FR7630004000031234567890143" } ] }
Example of a minimal request body for the enrollment of a natural entity
{ "marketplace": "467ca516-da10-4744-9f8b-8f62f5965e2d", "name": "BD EURL", "person_type": "PP", "title": "MR", "first_name": "Bastien", "last_name": "Durant", "description": "Bastien Durant’s shop", "vat_number": "FR62881075493", "address": { "country": "FR" }, "board": [ { "title": "MR", "email": "bd@eurl.com", "first_name": "Bastien", "last_name": "Durant", "birth_date": "1985-08-03", "birth_city": "FOIX", "nationality": "FR", "role": "LEGAL_REP", "address": { "country": "FR" } } ], "activities": [ { "name": “BD Conseils", "siret": "88107549300018" } ], "ibans": [ { "currencies": ["EUR"], "iban": "FR7630004000031234567890143" } ] }