v1

latestOpenAPI 3.0.22026-07-174617345.8 KB
Users

Show the user's profile.

Retrieve the profile information of the current user. This endpoint allows you to fetch the details and attributes associated with the user's profile, providing valuable information about the user's account and preferences.

get/api/v1/user

Response

Retrieve user account info

status'error' | 'success'

The status of the response

Example response

{
  "status": "success",
  "data": {
    "created_at": "2023-04-30 16:43:53",
    "email": "user@domain.com",
    "id": 1,
    "current_team_id": 1,
    "name": "John Doe",
    "profile_photo_url": "https://app.customgpt.ai/user/1/profile_photo_url",
    "updated_at": "2023-04-30 16:43:53"
  }
}