v1

latestOpenAPI 3.0.02026-07-2691259477.2 KB
accounts

Creates a new individual Lemonway account for onboarding a new user. If the individual already has a Lemonway account but requires full onboarding, use POST /onboardings/individual and provide the user’s unique accountId.

The is call estially validates you’ve provided all required bodyParams.

• Creates an account record of type “individual.”

• Associate a new wallet entry using the walletId.

• Returns a populated account object (including an assigned Id) so you can pass it into subsequent onboarding calls.

post/accounts/individual

Request body

activity'CROWDFUNDING_MONEYPOT' | 'CROWDFUNDING_DONATION' | 'MARKETPLACE_B2B' | 'MARKETPLACE_B2C' | 'MARKETPLACE_C2C' | 'CROWDEQUITY' | 'CROWDLENDING' | 'VALUE_ADDED_SERVICE' | 'INVOICE_TRADING' | 'MARKETPLACE_B2C_C2C' | 'VISA_ACCOUNT_APPLICATION' | 'SALARY_ADVANCE'

ActivityType

profile'DONOR' | 'PROJECT_HOLDER' | 'LENDER' | 'INVESTOR' | 'CREDITOR' | 'DEBTOR' | 'BUYER' | 'MERCHANT' | 'SELLER' | 'OPERATOR' | 'CONTENT_EDITOR' | 'OTHER_OPERATOR' | 'VISA_APPLICANT' | 'PAYER' required

User’s activity profile (only one).

walletIdstring

Are there any exceptions what walletId are not allowed.Note: That is a walletId is not created, Lemonway will auto-generate one.

Example request

{
  "individual": {
    "firstName": "Jonathan",
    "lastName": "Lamary",
    "birthDate": "1973-06-01",
    "email": "JLamry55@gmail.com",
    "birthCountry": "FR"
  },
  "profile": "DONOR",
  "walletId": "6768992"
}

Response

In the Response a unique Id is created. This Id corresponds to the accountId field in the endpoint POST /onboardings/individual.

idstring required
status'ACCEPTED' | 'CREATED' | 'DENIED' | 'BLOCKED' required
profileStatus'ACCEPTED' | 'AWAITING_INFORMATION' | 'CREATION_IN_PROGRESS' | 'DENIED' | 'IDENTITY_VERIFICATION_IN_PROGRESS' | 'IDENTITY_VERIFICATION_ABANDONED' | 'IDENTITY_VERIFICATION_ERROR' | 'INFORMATION_COLLECTION_IN_PROGRESS' | 'REJECTED' | 'UNDER_ANALYSIS' required

Example response

{
  "id": "ff928147-d51e-4f22-b26c-d2c1a2sebd8d",
  "status": "CREATED",
  "profileStatus": "AWAITING_INFORMATION"
}
All 91 operations