v1

latestOpenAPI 3.0.02026-07-26318168886.7 KB
Multipass Linking
private

Get active multipass linkings

Given customer_ids, return active linking records of customers

get/multipass/linkings

Query parameters

customer_ids[]string[]

Which customers to find

[
  "67b599ce5890fa0032f86937"
]
cursorstring
Example:67b6b36bf7809953f66f34d2

starting ID of returned linkings

limitnumber
Example:3

how many item to return at the same time, default 10, max 100

Response

Success

resultstring

operation result

nextstring

for pagination on next call, return items since this ID

Example response

{
  "result": "SUCCESS",
  "linkings": [
    {
      "customer_id": "67b599ce5890fa0032f86937",
      "sub": "first-id-created-in-oa",
      "status": "active",
      "merchant_id": "64bf82215bf5c95b99b960e8",
      "app_id": "62f9f0c76087ab000fcde753",
      "updated_at": "2025-01-01T03:50:00.323Z",
      "created_at": "2025-01-01T03:50:00.323Z"
    }
  ]
}