MarketPe APIs

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

ParameterTypeRequiredDescription
orgMemberIdstringYesThe id of the org member to top up.
amountnumberYesAmount to add to the limit. Must be > 0 and can have at most 2 decimal places.
idempotencyKeystringYesUnique key per top-up in your system. Retrying with the same key will not double-apply the top-up.
commentstringNoNote

Response

{
    "status": "success",
    "data": {
        "id": "xxxxxx",
        "orgMemberId": "om-xxxxxx",
        "postedQuota": 5500,
        "availableQuota": 4000
    }
}

Response Fields

FieldTypeDescription
idstringServer-generated id for this top-up.
orgMemberIdstringThe org member that was topped up.
postedQuotanumberThe member's new postedQuota after this top-up.
availableQuotanumberThe member's new availableQuota after this top-up.

Last updated on