curl --request GET \
--url https://us.cybedefend.com/user/profile \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"firstName": "<string>",
"email": "[email protected]",
"notification": true,
"isOnboardingCompleted": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"myOrganizations": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"country": "<string>",
"industry": "<string>",
"isActive": true,
"myTeams": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"myRole": "<string>"
}
],
"myRole": "<string>",
"subscription": {
"plan": "developer",
"seats": 123,
"resetAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"currentPeriodEnd": "2023-11-07T05:31:56Z",
"status": "<string>",
"trialEndsAt": "2023-11-07T05:31:56Z"
}
}
],
"lastName": "<string>",
"picture": "<string>"
}Retrieves the profile information of the currently authenticated user
curl --request GET \
--url https://us.cybedefend.com/user/profile \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"firstName": "<string>",
"email": "[email protected]",
"notification": true,
"isOnboardingCompleted": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"myOrganizations": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"country": "<string>",
"industry": "<string>",
"isActive": true,
"myTeams": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"myRole": "<string>"
}
],
"myRole": "<string>",
"subscription": {
"plan": "developer",
"seats": 123,
"resetAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"currentPeriodEnd": "2023-11-07T05:31:56Z",
"status": "<string>",
"trialEndsAt": "2023-11-07T05:31:56Z"
}
}
],
"lastName": "<string>",
"picture": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
User profile retrieved successfully
User unique identifier
User first name
User email address
Enable or disable notifications
Indicates if the onboarding is completed
Date of account creation
Date of last account update
List of organizations the user is part of
Show child attributes
Organization unique identifier
Organization name
Organization country
Organization industry
Organization active status
User role within the organization
Subscription summary for this organization
Show child attributes
Plan code
developer, pro, enterprise Number of seats
Period reset at (ISO)
Created at (ISO)
Updated at (ISO)
Current period end (ISO)
Subscription status
Trial ends at (ISO) or empty
User last name
User picture URL
8192