- GET /search#
Search for user accounts from user query.
Request:
- Query Parameters:
keywords – Textual search keywords. The fields matched depends on the bank. It can be a name, a login or any other identifier.
Response:
- 200 OK:
Response is a Accounts.
- 204 No content:
No accounts match this query.
Details:
interface Accounts { accounts: Account[]; }
interface Account { // Formatted user information to be displayed. display: string; // Full payto URI of this bank account. payto_uri: string; }