Skip to content

node-zendesk / Exports / clients/core/oauthclients / OAuthClients

Class: OAuthClients

clients/core/oauthclients.OAuthClients

Represents a client for Zendesk OAuth Clients API.

See

https://developer.zendesk.com/api-reference/ticketing/oauth/oauth_clients/

Hierarchy

Table of contents

Constructors

Properties

Accessors

Methods

Constructors

constructor

new OAuthClients(options): OAuthClients

Parameters

NameType
optionsany

Returns

OAuthClients

Overrides

Client.constructor

Defined in

clients/core/oauthclients.d.ts:6

Properties

_transporter

_transporter: Transporter

Inherited from

Client._transporter

Defined in

clients/client.d.ts:94


eventTarget

eventTarget: CustomEventTarget

Event target to handle custom events.

Inherited from

Client.eventTarget

Defined in

clients/client.d.ts:92


jsonAPINames

jsonAPINames: string[]

Array to hold names used in the JSON API.

Overrides

Client.jsonAPINames

Defined in

clients/core/oauthclients.d.ts:7


options

options: ClientOptions & { get: (key: string) => any }

Configuration options for the client.

Inherited from

Client.options

Defined in

clients/client.d.ts:86


sideLoad

sideLoad: any[]

Array to handle side-loaded resources.

Inherited from

Client.sideLoad

Defined in

clients/client.d.ts:89


useDotJson

useDotJson: boolean

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

Inherited from

Client.useDotJson

Defined in

clients/client.d.ts:91

Accessors

transporter

get transporter(): Transporter

Transporter for making requests.

Returns

Transporter

Inherited from

Client.transporter

Defined in

clients/client.d.ts:93

Methods

_rawRequest

_rawRequest(method, uri, ...args): Promise<{ response: any ; result: {} }>

Parameters

NameType
methodany
uriany
...argsany[]

Returns

Promise<{ response: any ; result: {} }>

Inherited from

Client._rawRequest

Defined in

clients/client.d.ts:130


create

create(client): Promise<object>

Creates a new OAuth client with the provided details.

Parameters

NameTypeDescription
clientobjectThe details of the client to be created.

Returns

Promise<object>

The details of the created OAuth client.

Async

Throws

Throws an error if the request fails.

See

https://developer.zendesk.com/api-reference/ticketing/oauth/oauth_clients/#create-client

Example

ts
const newClient = {
  name: "Test Client",
  identifier: "unique_id"
};
const createdClient = await client.oauthclients.create(newClient);

Defined in

clients/core/oauthclients.d.ts:41


delete

delete(id): Promise<void>

Deletes a specific OAuth client by ID.

Parameters

NameTypeDescription
idnumberThe ID of the OAuth client.

Returns

Promise<void>

Async

Throws

Throws an error if the request fails.

See

https://developer.zendesk.com/api-reference/ticketing/oauth/oauth_clients/#delete-client

Example

ts
await client.oauthclients.delete(1234);

Overrides

Client.delete

Defined in

clients/core/oauthclients.d.ts:66


emit

emit(eventType, eventData): void

Parameters

NameType
eventTypeany
eventDataany

Returns

void

Inherited from

Client.emit

Defined in

clients/client.d.ts:95


generateSecret

generateSecret(id): Promise<object>

Generates a new client secret for a specific OAuth client by ID.

Parameters

NameTypeDescription
idnumberThe ID of the OAuth client.

Returns

Promise<object>

The new client secret.

Async

Throws

Throws an error if the request fails.

See

https://developer.zendesk.com/api-reference/ticketing/oauth/oauth_clients/#generate-secret

Example

ts
const newSecret = await client.oauthclients.generateSecret(1234);

Defined in

clients/core/oauthclients.d.ts:76


get

get(resource): Promise<NodeModule>

Parameters

NameType
resourceany

Returns

Promise<NodeModule>

Inherited from

Client.get

Defined in

clients/client.d.ts:114


getAll

getAll(resource): Promise<any[]>

Parameters

NameType
resourceany

Returns

Promise<any[]>

Inherited from

Client.getAll

Defined in

clients/client.d.ts:129


list

list(): Promise<any[]>

Lists all OAuth clients.

Returns

Promise<any[]>

A list of OAuth clients.

Async

Throws

Throws an error if the request fails.

See

https://developer.zendesk.com/api-reference/ticketing/oauth/oauth_clients/#list-clients

Example

ts
const clientsList = await client.oauthclients.list();

Defined in

clients/core/oauthclients.d.ts:16


on

on(eventType, callback): void

Parameters

NameType
eventTypeany
callbackany

Returns

void

Inherited from

Client.on

Defined in

clients/client.d.ts:96


patch

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

Patches a resource.

Parameters

NameTypeDescription
...argsany[]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:120


post

post(resource, body): Promise<NodeModule>

Parameters

NameType
resourceany
bodyany

Returns

Promise<NodeModule>

Inherited from

Client.post

Defined in

clients/client.d.ts:122


put

put(resource, body): Promise<NodeModule>

Parameters

NameType
resourceany
bodyany

Returns

Promise<NodeModule>

Inherited from

Client.put

Defined in

clients/client.d.ts:121


request

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

Request method that handles various HTTP methods.

Type parameters

Name
T

Parameters

NameTypeDescription
methodstringHTTP method (e.g., 'GET', 'POST').
uristringThe URI for the request.
...argsany[]Additional arguments for the request.

Returns

Promise<NodeModule>

  • The API response.

Inherited from

Client.request

Defined in

clients/client.d.ts:148


requestAll

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

Parameters

NameType
methodany
uriany
...argsany[]

Returns

Promise<any[]>

Inherited from

Client.requestAll

Defined in

clients/client.d.ts:149


requestUpload

requestUpload(uri, file): Promise<any>

Parameters

NameType
uriany
fileany

Returns

Promise<any>

Inherited from

Client.requestUpload

Defined in

clients/client.d.ts:150


setSideLoad

setSideLoad(array): void

Parameters

NameType
arrayany

Returns

void

Inherited from

Client.setSideLoad

Defined in

clients/client.d.ts:113


show

show(id): Promise<object>

Retrieves a specific OAuth client by ID.

Parameters

NameTypeDescription
idnumberThe ID of the OAuth client.

Returns

Promise<object>

The OAuth client details.

Async

Throws

Throws an error if the request fails.

See

https://developer.zendesk.com/api-reference/ticketing/oauth/oauth_clients/#show-client

Example

ts
const clientDetails = await client.oauthclients.show(1234);

Defined in

clients/core/oauthclients.d.ts:26


update

update(id, client): Promise<object>

Updates a specific OAuth client by ID.

Parameters

NameTypeDescription
idnumberThe ID of the OAuth client.
clientobjectThe new details of the client.

Returns

Promise<object>

The updated OAuth client details.

Async

Throws

Throws an error if the request fails.

See

https://developer.zendesk.com/api-reference/ticketing/oauth/oauth_clients/#update-client

Example

ts
const updatedClient = {
  name: "My New OAuth2 Client"
};
const updatedDetails = await client.oauthclients.update(1234, updatedClient);

Defined in

clients/core/oauthclients.d.ts:56

Released under the MIT License.