v1
latestOpenAPI 3.1.0CC-BY-NC-SA-4.02026-07-2413803.8 MBProfiles API
Create profile
Create a profile to process payments on.
Profiles are required for payment processing. Normally they are created via the Mollie dashboard. Alternatively, you can use this endpoint to automate profile creation.
🔑 Access with
Advanced access token with profiles.write
OAuth access with profiles.write
post/v2/profiles
Request body
Example request
{
"resource": "profile",
"id": "pfl_QkEhN94Ba",
"mode": "live",
"name": "My website name",
"website": "https://example.com",
"email": "test@mollie.com",
"phone": "+31208202070",
"description": "My website description",
"countriesOfActivity": [
"NL",
"GB"
],
"businessCategory": "OTHER_MERCHANDISE",
"status": "unverified",
"review": {
"status": "pending"
},
"createdAt": "2022-01-19T12:30:22+00:00",
"_links": {
"self": {
"href": "...",
"type": "application/hal+json"
},
"dashboard": {
"href": "https://www.mollie.com/dashboard/org_7049691/settings/profiles/pfl_2q3RyuMGry",
"type": "text/html"
},
"chargebacks": {
"href": "https://api.mollie.com/v2/chargebacks?profileId=pfl_2q3RyuMGry",
"type": "application/hal+json"
},
"methods": {
"href": "https://api.mollie.com/v2/methods?profileId=pfl_2q3RyuMGry",
"type": "application/hal+json"
},
"payments": {
"href": "https://api.mollie.com/v2/payments?profileId=pfl_2q3RyuMGry",
"type": "application/hal+json"
},
"refunds": {
"href": "https://api.mollie.com/v2/refunds?profileId=pfl_2q3RyuMGry",
"type": "application/hal+json"
},
"checkoutPreviewUrl": {
"href": "https://www.mollie.com/checkout/preview/pfl_2q3RyuMGry",
"type": "text/html"
},
"documentation": {
"href": "...",
"type": "text/html"
}
}
}