Submit onboarding data¶
POST
https://api.mollie.com/v2/onboarding/me
Submit data that will be prefilled in the merchant’s onboarding. Please note that the data you submit will only be
processed when the onboarding status is needs-data
.
Note
Information that the merchant has entered in their dashboard will not be overwritten.
Parameters¶
Please note that even though all parameters are optional, at least one of them needs to be provided in the request.
object
optional
|
Data of the organization you want to provide.
|
||||||||||||||||
object
optional
|
Data of the payment profile you want to provide.
|
Example¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | curl -X POST https://api.mollie.com/v2/onboarding/me \
-H "Content-Type: application/json" \
-H "Authorization: Bearer access_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM" \
-d '{
"organization": {
"name": "Mollie B.V.",
"address": {
"streetAndNumber": "Keizersgracht 313",
"postalCode": "1018 EE",
"city": "Amsterdam",
"country": "NL"
},
"registrationNumber": "30204462",
"vatNumber": "NL815839091B01"
},
"profile": {
"name": "Mollie",
"website": "https://www.mollie.com",
"email": "info@mollie.com",
"phone": "+31208202070",
"categoryCode": 6012
}
}'
|
1 2 3 4 | We don't have a PHP code example for this API call yet.
If you have some time to spare, feel free to open a pull request at:
https://github.com/mollie/api-documentation
|
1 2 3 4 | We don't have a Python code example for this API call yet.
If you have some time to spare, feel free to open a pull request at:
https://github.com/mollie/api-documentation
|
1 2 3 4 | We don't have a Ruby code example for this API call yet.
If you have some time to spare, feel free to open a pull request at:
https://github.com/mollie/api-documentation
|
1 2 3 4 | We don't have a Node.js code example for this API call yet.
If you have some time to spare, feel free to open a pull request at:
https://github.com/mollie/api-documentation
|
Response¶
1 | HTTP/1.1 204 No Content
|