node-zendesk / Exports / clients/core/oauthtokens / OAuthTokens
Class: OAuthTokens
clients/core/oauthtokens.OAuthTokens
Represents a client for Zendesk OAuth Tokens API.
See
https://developer.zendesk.com/api-reference/ticketing/oauth/oauth_tokens/
Hierarchy
↳
OAuthTokens
Table of contents
Constructors
Properties
Accessors
Methods
- _rawRequest
- create
- current
- delete
- emit
- get
- getAll
- list
- on
- patch
- post
- put
- request
- requestAll
- requestUpload
- revoke
- setSideLoad
- show
Constructors
constructor
• new OAuthTokens(options
): OAuthTokens
Parameters
Name | Type |
---|---|
options | any |
Returns
Overrides
Defined in
clients/core/oauthtokens.d.ts:6
Properties
_transporter
• _transporter: Transporter
Inherited from
Defined in
clients/client.d.ts:94
eventTarget
• eventTarget: CustomEventTarget
Event target to handle custom events.
Inherited from
Defined in
clients/client.d.ts:92
jsonAPINames
• jsonAPINames: string
[]
Array to hold names used in the JSON API.
Overrides
Defined in
clients/core/oauthtokens.d.ts:7
options
• options: ClientOptions
& { get
: (key
: string
) => any
}
Configuration options for the client.
Inherited from
Defined in
clients/client.d.ts:86
sideLoad
• sideLoad: any
[]
Array to handle side-loaded resources.
Inherited from
Defined in
clients/client.d.ts:89
useDotJson
• useDotJson: boolean
Flag to indicate if the API endpoint should use '.json' ending.
Inherited from
Defined in
clients/client.d.ts:91
Accessors
transporter
• get
transporter(): Transporter
Transporter for making requests.
Returns
Inherited from
Client.transporter
Defined in
clients/client.d.ts:93
Methods
_rawRequest
▸ _rawRequest(method
, uri
, ...args
): Promise
<{ response
: any
; result
: {} }>
Parameters
Name | Type |
---|---|
method | any |
uri | any |
...args | any [] |
Returns
Promise
<{ response
: any
; result
: {} }>
Inherited from
Defined in
clients/client.d.ts:130
create
▸ create(token
): Promise
<object
>
Creates a new OAuth token with the provided details.
Parameters
Name | Type | Description |
---|---|---|
token | object | The details of the token to be created. Must include client_id and scopes. |
Returns
Promise
<object
>
The details of the created OAuth token.
Async
Throws
Throws an error if the request fails.
See
https://developer.zendesk.com/api-reference/ticketing/oauth/oauth_tokens/#create-token
Example
const createdToken = await client.oauthtokens.create({client_id: 1234, scopes: ["read", "write"]});
Defined in
clients/core/oauthtokens.d.ts:55
current
▸ current(): Promise
<object
>
Retrieves the details of the currently authenticated OAuth token.
Returns
Promise
<object
>
The details of the currently authenticated OAuth token.
Async
Throws
Throws an error if the request fails.
See
https://developer.zendesk.com/api-reference/ticketing/oauth/oauth_tokens/#show-token
Example
const currentTokenDetails = await client.oauthtokens.current();
Defined in
clients/core/oauthtokens.d.ts:26
delete
▸ delete(...args
): Promise
<void
| object
>
Deletes a resource.
Parameters
Name | Type | Description |
---|---|---|
...args | any [] | The resources or parts of the resource path. |
Returns
Promise
<void
| object
>
- Either void or response object
Inherited from
Defined in
clients/client.d.ts:128
emit
▸ emit(eventType
, eventData
): void
Parameters
Name | Type |
---|---|
eventType | any |
eventData | any |
Returns
void
Inherited from
Defined in
clients/client.d.ts:95
get
▸ get(resource
): Promise
<NodeModule
>
Parameters
Name | Type |
---|---|
resource | any |
Returns
Promise
<NodeModule
>
Inherited from
Defined in
clients/client.d.ts:114
getAll
▸ getAll(resource
): Promise
<any
[]>
Parameters
Name | Type |
---|---|
resource | any |
Returns
Promise
<any
[]>
Inherited from
Defined in
clients/client.d.ts:129
list
▸ list(): Promise
<any
[]>
Lists all available OAuth tokens.
Returns
Promise
<any
[]>
A list of OAuth tokens.
Async
Throws
Throws an error if the request fails.
See
https://developer.zendesk.com/api-reference/ticketing/oauth/oauth_tokens/#list-tokens
Example
const tokensList = await client.oauthtokens.list();
Defined in
clients/core/oauthtokens.d.ts:35
on
▸ on(eventType
, callback
): void
Parameters
Name | Type |
---|---|
eventType | any |
callback | any |
Returns
void
Inherited from
Defined in
clients/client.d.ts:96
patch
▸ patch(...args
): Promise
<void
| object
>
Patches a resource.
Parameters
Name | Type | Description |
---|---|---|
...args | any [] | The resources or parts of the resource path followed by the body. |
Returns
Promise
<void
| object
>
- Either void or response object
Inherited from
Defined in
clients/client.d.ts:120
post
▸ post(resource
, body
): Promise
<NodeModule
>
Parameters
Name | Type |
---|---|
resource | any |
body | any |
Returns
Promise
<NodeModule
>
Inherited from
Defined in
clients/client.d.ts:122
put
▸ put(resource
, body
): Promise
<NodeModule
>
Parameters
Name | Type |
---|---|
resource | any |
body | any |
Returns
Promise
<NodeModule
>
Inherited from
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
Name | Type | Description |
---|---|---|
method | string | HTTP method (e.g., 'GET', 'POST'). |
uri | string | The URI for the request. |
...args | any [] | Additional arguments for the request. |
Returns
Promise
<NodeModule
>
- The API response.
Inherited from
Defined in
clients/client.d.ts:148
requestAll
▸ requestAll(method
, uri
, ...args
): Promise
<any
[]>
Parameters
Name | Type |
---|---|
method | any |
uri | any |
...args | any [] |
Returns
Promise
<any
[]>
Inherited from
Defined in
clients/client.d.ts:149
requestUpload
▸ requestUpload(uri
, file
): Promise
<any
>
Parameters
Name | Type |
---|---|
uri | any |
file | any |
Returns
Promise
<any
>
Inherited from
Defined in
clients/client.d.ts:150
revoke
▸ revoke(id
): Promise
<void
>
Revokes a specific OAuth token by ID.
Parameters
Name | Type | Description |
---|---|---|
id | number | The ID of the OAuth token. |
Returns
Promise
<void
>
Async
Throws
Throws an error if the request fails.
See
https://developer.zendesk.com/api-reference/ticketing/oauth/oauth_tokens/#revoke-token
Example
await client.oauthtokens.revoke(1234);
Defined in
clients/core/oauthtokens.d.ts:45
setSideLoad
▸ setSideLoad(array
): void
Parameters
Name | Type |
---|---|
array | any |
Returns
void
Inherited from
Defined in
clients/client.d.ts:113
show
▸ show(id
): Promise
<object
>
Retrieves a specific OAuth token by ID.
Parameters
Name | Type | Description |
---|---|---|
id | string | number | The ID of the OAuth token or "current" for the currently authenticated token. |
Returns
Promise
<object
>
The OAuth token details.
Async
Throws
Throws an error if the request fails.
See
https://developer.zendesk.com/api-reference/ticketing/oauth/oauth_tokens/#show-token
Example
const tokenDetails = await client.oauthtokens.show(1234);
Defined in
clients/core/oauthtokens.d.ts:17