Auth
Super-admin: look up merchants
Platform super-admin only. Find merchants by a single query matched (case-insensitive substring) against member email and merchant name, plus an exact merchant-id match. Capped at 25 results; a query shorter than 2 characters returns an empty list.
post/auth/super-admin/lookup
Request body
Example request
{
"query": "acme"
}Response
Matching merchants with their members
Example response
[
{
"merchant_id": "merchant_demo",
"merchant_name": "Acme Inc",
"members": [
{
"email": "operator@example.com",
"role": "admin"
}
]
}
]