POST
/api/v2/mor/public/users/{userId}/cards/{cardId}/load-requestsCreate or update a load request for a card currently assigned to a user_simple in the API key's merchant.
Records a request and attempts to notify the merchant admin; it does not fund the card. Amount is rounded to two decimal places and must then be between 0.01 and 250000. Note is optional and limited to 500 characters after trimming. An existing pending request is updated.
Authentication
Send your API key in the x-api-key header on every request.
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| userId (path) | integer (int32) | Yes | |
| cardId (path) | integer (int32) | Yes |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
| Amount | unknown | No | |
| Note | string | No |
Responses
200 — OK
| Field | Type | Required | Description |
|---|---|---|---|
| Id | unknown | No | |
| CardId | unknown | No | |
| RequestedByUserId | unknown | No | |
| RequestedByName | string | No | |
| RequestedByEmail | string | No | |
| Amount | unknown | No | |
| Currency | string | No | |
| Status | string | No | |
| Note | string | No | |
| AdminEmailSent | boolean | No | |
| CreatedAt | string (date-time) | No | |
| UpdatedAt | string (date-time) | No |
Example request
curl -X POST "https://{base_url}/api/v2/mor/public/users/{userId}/cards/{cardId}/load-requests" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{}'This page is generated from the live OpenAPI specification and always matches the current API.