v1

latestOpenAPI 3.0.02026-07-1412039.8 KB
Cards

Create Partner Card

Create a partner card for business transactions. This API allows you to issue virtual cards with specific limits and controls for your business partners. This API is available upon request for a tailored integration. Email us on api@mamopay.com to get started.

post/partner_cards

Request body

amountnumber required

The amount limit for the partner card.

emailstring required

Cardholder’s email address. Card holder must have completed KYC.

booking_idstring required

Booking reference in case the card will be used for a 1 time booking.

verification_emailstring email required

The email address that will be used for verification purposes.

transactions_limitnumber required

Maximum number of transactions allowed on the card.

Example request

{
  "amount": 2000,
  "email": "phu+349@mamopay.com",
  "booking_id": "Testing1235821444579867",
  "verification_email": "phu@mamopay.com",
  "transactions_limit": 10
}

Response

Successful response

card_holder_namestring

Name of the card holder

expiry_datestring

Card expiry date in MM/YY format

card_last4string

Last 4 digits of the card number

status'active' | 'inactive' | 'expired'

Current status of the card

booking_idstring

Booking reference associated with the card

created_atstring date-time

Card creation timestamp

updated_atstring date-time

Card last update timestamp

idstring

Unique card identifier

amountnumber

Card amount limit

total_spendnumber

Total amount spent on the card

urlstring

URL to access the card details with authentication token

Example response

{
  "card_holder_name": "MCS integration",
  "expiry_date": "12/28",
  "card_last4": "0379",
  "status": "active",
  "booking_id": "Testing1235821444579867",
  "created_at": "2025-12-15T08:09:25.167+04:00",
  "updated_at": "2025-12-15T08:09:28.271+04:00",
  "id": "CRD-F08AA9522C",
  "amount": 2000,
  "total_spend": 0,
  "url": "https://sandbox.dev.business.mamopay.com/cards/vcc?token=eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJtYW1vcGF5LXZjYy10b2tlbiIsImF1ZCI6Im1hbW9wYXktYXBpLXNlcnZlciIsImlhdCI6MTc2NTc3MTc2OCwic3ViIjoiQ1JELUYwOEFBOTUyMkMiLCJleHAiOjE3ODEzMjM3Njh9.u7ENYVa5M0LzppG7CwaJl57Ps2gPCnmVWiziR2K4WSw"
}