action tl_api_user_get { label: "Get all Users detail\nThis will return all properties related to User entity\n " provider: tl_api method: GET path: "/api/User" encoding: json output: { type: "object" description: "The UserDTO Class.\nContains relevant fields of User DTO by masking actual User entity's fields in application.\n " properties: { accountNumber: { type: "string" description: "Account number of the user.It can be any stakeholder of the application.even can be a gym.\n " } externalEntityNumber: { type: "string" description: "Entity number that make a relationship with BOX API DB.\n " } guardian: { type: "integer" format: "int32" description: "Gaurdian of the this user if he/she is under 18 years old.\n " } gymNumber: { type: "string" description: "If this user is a gym, then the gym number.\n " } introduceBy: { type: "integer" format: "int32" description: "If Someone introduced this user to the system, then that user's UserId.\n " } name: { type: "string" description: "Name of the user.\n " } number: { type: "string" description: "Unique number maintain by application to idenify user.\n " } typeId: { type: "integer" format: "int32" description: "Type of the user.\n " } userId: { type: "integer" format: "int32" description: "Indentity number(primary key) for user object. Generated in DB table when inserting a record.\n " } } additionalProperties: false } }