GET
/
user
Get authenticated user
curl --request GET \
  --url https://app.pulseguard.nl/api/user \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "id": 123,
    "name": "<string>",
    "email": "jsmith@example.com"
  }
}

Authorizations

Authorization
string
header
required

API token generated from your PulseGuard dashboard

Response

200
application/json

User information retrieved successfully

The response is of type object.