accounts, or after login when the app shows who else is on this number.phoneSessionToken (from OTP, ~10 min) or Bearer. Response is { accounts[], canAddAccount }. accounts is only Customers whose PAN succeeded on this number — a User draft is not listed. displayName / maskedPan may be null until profile / PAN data exists. Max five members; canAddAccount is false at the cap.POST /auth/accounts/select with phoneSessionToken + accounts[].id, or POST /auth/accounts to add someone. After login, GET /application/profile is that person's full form — this list is picker cards only.401 unauthorized | session_expiredcurl --location --globoff 'https://api-dev.myemipay.com/auth/accounts?phoneSessionToken='{
"canAddAccount": true,
"accounts": [
{
"id": "cust_1735123456789",
"kind": "customer",
"displayName": "Rajavarapu Yaswanth Kumar",
"maskedPan": "XXXXXX085R"
},
{
"id": "cust_1735987654321",
"kind": "customer",
"displayName": "Family member",
"maskedPan": "XXXXXX123A"
}
]
}