MarketPe APIs

Org Member Quota Get

POST /org-member-quota/get

Get the current payment limit (quota) for an org member.

  • postedQuota is the total limit assigned to the member.
  • availableQuota is what is currently spendable (i.e. postedQuota minus any amount on hold for in-progress payments).

Request

{
    "orgMemberId": "om-xxxxxx"
}

Request Parameters

ParameterTypeRequiredDescription
orgMemberIdstringYesThe id of the org member, e.g. from list.

Response

{
    "status": "success",
    "data": {
        "orgMemberId": "om-xxxxxx",
        "postedQuota": 5000,
        "availableQuota": 3500,
        "updatedTime": "2026-05-22T10:00:00.000Z"
    }
}

Last updated on