Authentication

Validate a users access token

GET /api/users/authenticate

Query Parameters

Name
Type
Description

access_token*

string

Token received during the authorization procedure

authenticated - True/False result of authentication

user - User object if authentication succeeded

{
	"Data": {
		"authenticated": true,
		"user":{
                    "email": "[email protected]",
                    "guid": "843dac07-e03d-4b81-8c49-9e4bb9888e4c",
                    "id": 1204,
                    "name": "Dima",
                    "phone": "+380444444444"
		}
	},
	"Error": null,
	"Status": "OK",
	"StatusCode": 200
}

Last updated