Authentication
This endpoint retrieves the authenticated user’s profile based on the API token provided in the request. Use this endpoint to verify the identity of the current user and fetch basic account details.
Last updated
Was this helpful?
This endpoint retrieves the authenticated user’s profile based on the API token provided in the request. Use this endpoint to verify the identity of the current user and fetch basic account details.
Last updated
Was this helpful?
Was this helpful?
GET /api/v1/auth HTTP/1.1
Host: public-api.gurupay.eu
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"uuid": "123e4567-e89b-12d3-a456-426614174000",
"is_active": 1,
"name": "text",
"email": "[email protected]",
"created_at": 1744373843,
"updated_at": 1744373843
}