Get profile information for the specified username, including the account holder's email address and whether the account is blocked. Special characters like +
s must be urlencoded. For example, user+1@test.com
would be user%2B1%40test%2Ecom
search_accounts
) Account profile was retrieved successfully.
Unauthorized access.
Resource not found.
Service unavailable or server error.
curl -i -X GET \ 'https://accounts.tilia-inc.com/v1/user-info/search?username=string' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{- "status": "Success",
- "message": null,
- "codes": null,
- "payload": {
- "account_id": "38c11a58-18fd-47bb-bcbe-67278cf5c5a9",
- "username": "david_gaimer@mail.io",
- "email": "david_gaimer@mail.io",
- "is_blocked": false,
- "integrator": "acme",
- "created": "2019-08-24T14:15:22Z"
}
}