Org Member Quota Increase
POST /org-member-quota/increase
Top up the payment limit (quota) for an org member. The amount is added to the member's postedQuota and availableQuota.
The org member receives a push notification when the top-up is applied.
Request
{
"orgMemberId": "om-xxxxxx",
"amount": 500,
"idempotencyKey": "topup-2026-05-22-001",
"comment": "Daily topup"
}Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
orgMemberId | string | Yes | The id of the org member to top up. |
amount | number | Yes | Amount to add to the limit. Must be > 0 and can have at most 2 decimal places. |
idempotencyKey | string | Yes | Unique key per top-up in your system. Retrying with the same key will not double-apply the top-up. |
comment | string | No | Note |
Response
{
"status": "success",
"data": {
"id": "xxxxxx",
"orgMemberId": "om-xxxxxx",
"postedQuota": 5500,
"availableQuota": 4000
}
}Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Server-generated id for this top-up. |
orgMemberId | string | The org member that was topped up. |
postedQuota | number | The member's new postedQuota after this top-up. |
availableQuota | number | The member's new availableQuota after this top-up. |
Last updated on