Users

This endpoint is used to manage your user account in Video Jungle.

The user model

The user model contains all the information about your account.

Properties

  • Name
    id
    Type
    string
    Description

    Unique identifier for the user.

  • Name
    name
    Type
    string
    Description

    The name for the user.

  • Name
    is_active
    Type
    boolean
    Description

    Whether or not the user is active.

  • Name
    is_verified
    Type
    string
    Description

    Verification is necessary to generate videos.

  • Name
    avatar
    Type
    string
    Description

    The avatar image URL for the user.


GET/users/me

List all user details

This endpoint allows you to retrieve the information about your account.

Request

GET
/users/me
from videojungle import ApiClient

client = ApiClient(token)

client.user_account.info()

Response

{
  "id": "l7cGNIBKZiNJ6wqF",
  "name": "Hector",
  "is_active": true,
  "is_verified": true,
  "avatar": "https://assets.video-jungle.com/avatars/hector.jpg"
}

Was this page helpful?