cURL
curl --request GET \ --url https://api.tradearies.dev/v1/users/me \ --header 'Authorization: Bearer <token>'
{ "id": 123, "email": "<string>", "country": "<string>", "plaid_status": "<string>", "account_application": { "id": 123, "status": "CREATED", "can_submit": true, "missing_fields": [ "<string>" ], "plaid_link_token": "<string>" }, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" }
Gets the currently authenticated user’s information
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
User information retrieved successfully
The response is of type object.
object
Was this page helpful?