Org Member Quota Get
POST /org-member-quota/get
Get the current payment limit (quota) for an org member.
postedQuotais the total limit assigned to the member.availableQuotais what is currently spendable (i.e.postedQuotaminus any amount on hold for in-progress payments).
Request
{
"orgMemberId": "om-xxxxxx"
}Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
orgMemberId | string | Yes | The 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