POST/api/v2/mor/public/users/{userId}/cards/{cardId}/load-requests

Create 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

Request parameters
FieldTypeRequiredDescription
userId (path)integer (int32)Yes
cardId (path)integer (int32)Yes

Request body

application/json

Request body fields
FieldTypeRequiredDescription
AmountunknownNo
NotestringNo

Responses

200 — OK

Response 200 fields
FieldTypeRequiredDescription
IdunknownNo
CardIdunknownNo
RequestedByUserIdunknownNo
RequestedByNamestringNo
RequestedByEmailstringNo
AmountunknownNo
CurrencystringNo
StatusstringNo
NotestringNo
AdminEmailSentbooleanNo
CreatedAtstring (date-time)No
UpdatedAtstring (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.