Skip to main content
POST
/
api
/
merchant
/
v2
/
customers
/
lapse
Lapse customers
curl --request POST \
  --url https://mention-me.com/api/merchant/v2/customers/lapse \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "identifiers": [
    {
      "type": "email",
      "value": ""
    }
  ]
}
'
{
  "accepted": [
    {
      "type": "email",
      "value": ""
    }
  ],
  "errors": [
    {
      "type": "email",
      "value": "<string>",
      "reason": "notFound"
    }
  ]
}

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.

Authorizations

Authorization
string
header
required

RFC8725 Compliant JWT

Body

application/json

A collection of identifiers for customers in Mention Me.

identifiers
object[]
required

Maximum of 100 identifiers.

Required array length: 1 - 100 elements

Response

All identifiers that were queued to be marked as lapsed.

A collection of customer identifiers which were accepted, or resulted in an error.

accepted
object[]

All the identifiers that were accepted.

Maximum array length: 100
errors
object[]

All the identifiers which resulted in errors.

Maximum array length: 100
Last modified on March 31, 2026