// This is Generated Source. import GlipPersonInfo from "../definitions/GlipPersonInfo"; import PathSegment from "../PathSegment"; export default class Persons extends PathSegment { constructor(prv: PathSegment, id?: string, service?) { super("persons", id, prv, service); } /** *

Since 1.0.28 (Release 8.4)

Returns a user or few users by ID(s). Batch request is supported.

Required Permissions

PermissionDescription
GlipAvailability of Glip

API Group

Light

*/ get(): Promise { return this._send({ body: undefined, ignoreId: true, method: "get", query: undefined, }).then((res) => { return res.json(); }); } /** *

Since 1.0.28 (Release 8.4)

Returns a user or few users by ID(s). Batch request is supported.

Required Permissions

PermissionDescription
GlipAvailability of Glip

API Group

Light

* return {ApiResponse} */ getRaw(): Promise { return this._send({ body: undefined, ignoreId: true, method: "get", query: undefined, }); } }