Skip to content

node-zendeskDocs


node-zendesk / clients/core/sessions / Sessions

Class: Sessions

Client class for interacting with Zendesk's Sessions API.

See

https://developer.zendesk.com/api-reference/ticketing/account-configuration/sessions/

Extends

Constructors

new Sessions()

new Sessions(options): Sessions

Parameters

options: any

Returns

Sessions

Overrides

Client.constructor

Defined in

clients/core/sessions.d.ts:6

Properties

_transporter

_transporter: Transporter

Inherited from

Client._transporter

Defined in

clients/client.d.ts:42


eventTarget

eventTarget: CustomEventTarget

Event target to handle custom events.

Inherited from

Client.eventTarget

Defined in

clients/client.d.ts:40


jsonAPINames

jsonAPINames: string[]

Array to hold names used in the JSON API.

Overrides

Client.jsonAPINames

Defined in

clients/core/sessions.d.ts:7


options

options: ZendeskClientOptions & object

Configuration options for the client.

Type declaration

get()

get: (key) => any

Parameters

key: string

Returns

any

Inherited from

Client.options

Defined in

clients/client.d.ts:34


sideLoad

sideLoad: any[]

Array to handle side-loaded resources.

Inherited from

Client.sideLoad

Defined in

clients/client.d.ts:37


useDotJson

useDotJson: boolean

Flag to indicate if the API endpoint should use '.json' ending.

Inherited from

Client.useDotJson

Defined in

clients/client.d.ts:39

Accessors

transporter

Get Signature

get transporter(): Transporter

Returns

Transporter

Transporter for making requests.

Inherited from

Client.transporter

Defined in

clients/client.d.ts:41

Methods

_rawRequest()

_rawRequest(method, uri, ...arguments_): Promise<object>

Parameters

method: any

uri: any

• ...arguments_: any[]

Returns

Promise<object>

response

response: any

result

result: object

Inherited from

Client._rawRequest

Defined in

clients/client.d.ts:78


bulkDeleteByUserId()

bulkDeleteByUserId(userId): Promise<void>

Delete all sessions for a specific user by user ID.

Parameters

userId: number

The ID of the user.

Returns

Promise<void>

Throws

Will throw an error if the request fails.

See

https://developer.zendesk.com/api-reference/ticketing/account-configuration/sessions/#bulk-delete-sessions

Example

ts
await client.sessions.bulkDeleteByUserId(12345);

Defined in

clients/core/sessions.d.ts:69


delete()

delete(...arguments_): Promise<void | object>

Deletes a resource.

Parameters

• ...arguments_: any[]

The resources or parts of the resource path.

Returns

Promise<void | object>

  • Either void or response object

Inherited from

Client.delete

Defined in

clients/client.d.ts:76


deleteByUserIdBySessionId()

deleteByUserIdBySessionId(userId, sessionId): Promise<void>

Delete a specific session by user ID and session ID.

Parameters

userId: number

The ID of the user.

sessionId: number

The ID of the session.

Returns

Promise<void>

Throws

Will throw an error if the request fails.

See

https://developer.zendesk.com/api-reference/ticketing/account-configuration/sessions/#delete-session

Example

ts
await client.sessions.deleteByUserIdBySessionId(12345, 67890);

Defined in

clients/core/sessions.d.ts:59


emit()

emit(eventType, eventData): void

Parameters

eventType: any

eventData: any

Returns

void

Inherited from

Client.emit

Defined in

clients/client.d.ts:43


get()

get(resource): Promise<NodeModule>

Parameters

resource: any

Returns

Promise<NodeModule>

Inherited from

Client.get

Defined in

clients/client.d.ts:62


getAll()

getAll(resource): Promise<any[]>

Parameters

resource: any

Returns

Promise<any[]>

Inherited from

Client.getAll

Defined in

clients/client.d.ts:77


getByUserId()

getByUserId(userId): Promise<object[]>

List sessions by user ID.

Parameters

userId: number

The ID of the user.

Returns

Promise<object[]>

Array of sessions.

See

https://developer.zendesk.com/api-reference/ticketing/account-configuration/sessions/#list-sessions

Example

ts
const sessions = await client.sessions.getByUserId(12345);

Defined in

clients/core/sessions.d.ts:24


getByUserIdBySessionId()

getByUserIdBySessionId(userId, sessionId): Promise<object>

Retrieve a specific session by user ID and session ID.

Parameters

userId: number

The ID of the user.

sessionId: number

The ID of the session.

Returns

Promise<object>

Session details.

response

response: object

result

result: object

See

https://developer.zendesk.com/api-reference/ticketing/account-configuration/sessions/#show-session

Example

ts
const session = await client.sessions.getByUserIdBySessionId(12345, 67890);

Defined in

clients/core/sessions.d.ts:34


getMyAuthenticatedSession()

getMyAuthenticatedSession(): Promise<object>

Retrieve details of the currently authenticated session.

Returns

Promise<object>

Session details.

response

response: object

result

result: object

See

https://developer.zendesk.com/api-reference/ticketing/account-configuration/sessions/#show-the-currently-authenticated-session

Example

ts
const session = await client.sessions.getMyAuthenticatedSession();

Defined in

clients/core/sessions.d.ts:45


list()

list(): Promise<object[]>

List all sessions.

Returns

Promise<object[]>

Array of sessions.

See

https://developer.zendesk.com/api-reference/ticketing/account-configuration/sessions/#list-sessions

Example

ts
const sessions = await client.sessions.get();

Defined in

clients/core/sessions.d.ts:15


logMeOut()

logMeOut(): Promise<void>

Logs out the current authenticated user.

Returns

Promise<void>

Throws

Will throw an error if the request fails.

See

https://developer.zendesk.com/api-reference/ticketing/account-configuration/sessions/#delete-the-authenticated-session

Example

ts
await client.sessions.logMeOut();

Defined in

clients/core/sessions.d.ts:78


on()

on(eventType, callback): void

Parameters

eventType: any

callback: any

Returns

void

Inherited from

Client.on

Defined in

clients/client.d.ts:44


patch()

patch(...arguments_): Promise<void | object>

Patches a resource.

Parameters

• ...arguments_: any[]

The resources or parts of the resource path followed by the body.

Returns

Promise<void | object>

  • Either void or response object

Inherited from

Client.patch

Defined in

clients/client.d.ts:68


post()

post(resource, body): Promise<NodeModule>

Parameters

resource: any

body: any

Returns

Promise<NodeModule>

Inherited from

Client.post

Defined in

clients/client.d.ts:70


put()

put(resource, body): Promise<NodeModule>

Parameters

resource: any

body: any

Returns

Promise<NodeModule>

Inherited from

Client.put

Defined in

clients/client.d.ts:69


request()

request<T>(method, uri, ...arguments_): Promise<NodeModule>

Request method that handles various HTTP methods.

Type Parameters

T

Parameters

method: string

HTTP method (e.g., 'GET', 'POST').

uri: string

The URI for the request.

• ...arguments_: any[]

Additional arguments for the request.

Returns

Promise<NodeModule>

  • The API response.

Inherited from

Client.request

Defined in

clients/client.d.ts:96


requestAll()

requestAll(method, uri, ...arguments_): Promise<any[]>

Parameters

method: any

uri: any

• ...arguments_: any[]

Returns

Promise<any[]>

Inherited from

Client.requestAll

Defined in

clients/client.d.ts:97


requestUpload()

requestUpload(uri, file): Promise<any>

Parameters

uri: any

file: any

Returns

Promise<any>

Inherited from

Client.requestUpload

Defined in

clients/client.d.ts:98


setSideLoad()

setSideLoad(array): void

Parameters

array: any

Returns

void

Inherited from

Client.setSideLoad

Defined in

clients/client.d.ts:61

Released under the MIT License.