Search by username

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

Request
Security:
tilia_auth (search_accounts)
query Parameters
username
required
string

The username to retrieve.

Responses
200

Account profile was retrieved successfully.

401

Unauthorized access.

404

Resource not found.

500

Service unavailable or server error.

get/v1/user-info/search
Request samples
curl -i -X GET \
  'https://accounts.tilia-inc.com/v1/user-info/search?username=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Response samples
application/json
{
  • "status": "Success",
  • "message": null,
  • "codes": null,
  • "payload": {
    }
}