Create Customer

Post https://app.moneygraph.ai/api/v1/customer/create

Headers

Authorization* string

Pass your {api_key} as a bearer token in the request header to authorize this call

Body parameters

account_type* string

Account type must be personal or business

first_name* string

First Name

middle_name string

Middle Name

last_name* string

Last Name

email* string

Email address

phone* string

Phone number

phone_iso2* string

Phone number iso2

country* string

Country iso2

platform_account_id string

Your Customer ID

business_details* array

Required if entity is business

business_name* string

Business Legal Name

Response


{
    "message": "User Onboarded",
    "status": "success",
    "data": {
        "id": "0917324",
        "mode": "test",
        "first_name": "Scott",
        "last_name": "Mccal",
        "email": "[email protected]",
        "phone": "+12709255094",
        "account_type": "business",
        "birthday": null,
        "gender": null,
        "id_type": "ID_CARD",
        "id_number": "213652146416",
        "source_of_funds": null,
        "kyc_status": "PENDING",
        "tax_number": "9236586985",
        "document": {
            "document": null,
            "selfie": null
        },
        "address": {
            "country": "US",
            "state": null,
            "city": null,
            "street": null,
            "postal_code": null
        },
        "business_details": {
            "business_name": null,
            "website": null,
            "staff_size": null,
            "registration_number": null,
            "tax_number": null,
            "registration_date": null,
            "registration_location": null,
            "registration_type": null,
            "mcc": null,
            "complete_ownership": false,
            "address": {
                "country": null,
                "state": null,
                "city": null,
                "street": null,
                "postal_code": null
            }
        }
    }
}