MarketPe APIs

Org Member Create

POST /org-member/create

Create a new org member (driver / employee) under your organization.

A new org member starts with a zero payment limit. Use org-member-quota/increase to top it up.

Request

{
    "name": "RAVI KUMAR",
    "phone10Digit": "9876543210",
    "status": "ACTIVE",
    "internalCode": "EMP-001",
    "vehicleNumber": "HR12AB1234"
}

Request Parameters

ParameterTypeRequiredDescription
namestringYesFull name of the member. Must be unique within your organization.
phone10DigitstringYes10-digit Indian mobile number. Must be unique within your organization.
statusstringYesOne of ACTIVE, INACTIVE.
internalCodestringYesYour internal identifier for the member (e.g. employee code). Must be unique.
vehicleNumberstringNoRegistration number of vehicle. Returns an error if not found in marketpe.

Response

{
    "status": "success",
    "data": {
        "id": "om-xxxxxx",
        "name": "RAVI KUMAR",
        "phone10Digit": "9876543210",
        "status": "ACTIVE",
        "type": "DRIVER",
        "internalCode": "EMP-001",
        "vehicleNumber": "HR12AB1234",
        "createdTime": "2026-05-22T10:00:00.000Z"
    }
}

Last updated on