curl --request GET \
--url https://api.surefeedback.com/api/v1/auth/me \
--header 'X-API-Key: <api-key>'{
"success": true,
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"email": "[email protected]",
"first_name": "Jane",
"last_name": "Smith",
"active_organization_id": "660e8400-e29b-41d4-a716-446655440001",
"active_project_id": "770e8400-e29b-41d4-a716-446655440002",
"is_guest": false
}
}
Return the authenticated user’s profile.
curl --request GET \
--url https://api.surefeedback.com/api/v1/auth/me \
--header 'X-API-Key: <api-key>'{
"success": true,
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"email": "[email protected]",
"first_name": "Jane",
"last_name": "Smith",
"active_organization_id": "660e8400-e29b-41d4-a716-446655440001",
"active_project_id": "770e8400-e29b-41d4-a716-446655440002",
"is_guest": false
}
}
X-API-Key: sf_your_api_key_here.true on success.{
"success": true,
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"email": "[email protected]",
"first_name": "Jane",
"last_name": "Smith",
"active_organization_id": "660e8400-e29b-41d4-a716-446655440001",
"active_project_id": "770e8400-e29b-41d4-a716-446655440002",
"is_guest": false
}
}
Was this page helpful?