Skip to main content
POST
/
api
/
consumer
/
{version}
/
coupon_redemption
Record order with a coupon
curl --request POST \
  --url https://mention-me.com/api/consumer/{version}/coupon_redemption \
  --header 'Content-Type: application/json' \
  --data '
{
  "order": {
    "orderIdentifier": "123456",
    "total": "100",
    "currencyCode": "GBP",
    "dateString": "2026-03-19T11:55:45+00:00",
    "couponCode": "ABC23252",
    "discountAmount": "12.44",
    "orderItemCount": "3",
    "isSubscription": "",
    "isGift": ""
  },
  "request": {
    "partnerCode": "[YOUR-PARTNER-CODE]",
    "situation": "mobile-app",
    "localeCode": "en_GB",
    "segment": "vip",
    "ipAddress": "127.0.0.1",
    "userDeviceIdentifier": "",
    "deviceType": "",
    "appName": "",
    "appVersion": "e.g. MyApp/v1.73"
  },
  "address": {
    "addressLine1": "",
    "addressLine2": "",
    "addressCity": "",
    "addressCounty": "",
    "addressPostCode": "",
    "addressCountry": ""
  }
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.mention-me.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

version
enum<string>
required

Version

Available options:
v2,
v1
Pattern: v2|v1

Body

application/json

About the order

order
Order · object
required

Information about the order which took place

request
Request · object
required

Information about the request

customer
Customer · object

Information about the customer who placed the order (if present)

address
Address · object

Information about the address of the customer who placed the order

Response

Returned when successful

Last modified on March 31, 2026