• France
status page
Demo shops
assistance
FAQContact support
Search
Categories
Tags
Europe (English)
France
Spain
Europe (English)
India
Homepage
Use cases
Create a payment
Create an installment payment
Create a multi-card (split) payment
Create a payment by Alias (Token)
Create a payment link
Create a recurring payment
Manage subscriptions
Manage your transactions (refund, cancel...)
Analyze your reports
API docs
Embedded Form
REST API
Hosted payment
Mobile payment
File exchange
SDD mandates by REST API
Snippets
Payment methods
Plugins
Marketplace
Guides
Merchant Back Office
Back Office Expert
Functional guides

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:

PATCH/registrations/{registration_uuid}registrations_partial_update

In this case, you can only send the desired modifications.

PUT/registrations/{registration_uuid}registrations_update

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:

GET/registrations/{registration_uuid}registrations_read

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.

Sample extract of request body:
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.

Jobs
Legal
GDPR
25.18-1.11