Create Director

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

Headers

Authorization* string

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

Path parameters

customer* string

Customer ID. The ID or MCP Key of the onboarded customer.

Body parameters

first_name* string

First Name

last_name* string

Last Name

email* string

Email address

phone* string

Phone number

phone_iso2* string

Phone number iso2

country* string

country iso2

state* string

State iso2

city* string

City

street* string

Address

postal_code* string

Postal/Zip Code

ownership* numeric

Percent of shares owned by director

position* string

Company position

birthday* string

Birthday of director, format 20-06-1976

Response


{
    "message": "Director Added",
    "status": "success",
    "data": {
        "id": "55196c0f-31c7-4d1f-8b74-25e9fbf6810b",
        "first_name": "John",
        "last_name": "Derrick",
        "email": "[email protected]",
        "phone": "+234901234567899",
        "country": "US",
        "state": "DE",
        "city": "City",
        "street": "Address",
        "postal_code": "90000",
        "birthday": "29-06-1999",
        "ownership": "10",
        "position": "CTO",
        "mode": "test"
    }
}