v7

latestOpenAPI 3.0.4raw.githubusercontent.com2026-08-033267145.4 KB
General

Fetch detailed information about your user account.

get/general/user-info

Response

OK.

userIdstring uuid required

Unique identifier for the user in Guid v4 format.

displayNamestring required

The display name of the user, updated on each login.

emailstring required

The email address of the user.

emailConfirmedboolean required

Indicates if the user's email address has been verified.

subscriptionEndstring date-time required

The subscription end date for the user. If the user is part of a team, this is the team's subscription end date.

planstring required

The subscription plan associated with the user.

capabilitiesstring[] required

List of features available to the user based on their current subscription or their team's subscription.

gracePeriodboolean required

Indicates if the user's subscription is currently in a grace period and requires instant renewal.

lastAppLoginstring date-time required

The date and time of the user's last login via the app.

versionstring required

The version of the app.

workspaceFolderstring required

Path to the user's workspace folder where profiles are stored. Modifying these files outside of Kameleo is strictly prohibited.

hasTeamSubscriptionboolean required

Indicates if the user has a team subscription. This can also be true if the user does not have any team members yet.

teamIdstring uuid nullable

The team ID if the user is part of a team.

teamRolestring nullable

The user's role within the team, such as 'owner' or 'member'.

Example response

{
  "userId": "054c78aa-efef-4a15-a348-cbf1766f8970",
  "displayName": "user",
  "email": "user@email.com",
  "emailConfirmed": true,
  "subscriptionEnd": "2038-01-19T03:14:07Z",
  "plan": "free",
  "capabilities": [
    "clone_profile",
    "cloud",
    "cookie",
    "groups",
    "impex",
    "local",
    "mobile",
    "proxy_test",
    "start",
    "upgrade_profile"
  ],
  "gracePeriod": true,
  "lastAppLogin": "2020-01-01T00:00:00Z",
  "version": "5.0.0",
  "workspaceFolder": "C:\\Users\\Tomi\\AppData\\Local\\Programs\\Kameleo\\Workspace\\cb2bdd5e-6777-4d9b-9573-d3209186f686",
  "hasTeamSubscription": true,
  "teamId": "099c78aa-efef-4a15-a348-cbf1766f8000",
  "teamRole": "member"
}