node-zendesk • Docs
node-zendesk / clients/core/dynamiccontentvariants / DynamicContentVariants
Class: DynamicContentVariants
Dynamic Content Variants client for the Zendesk REST API.
See
Extends
Constructors
new DynamicContentVariants()
new DynamicContentVariants(
options
):DynamicContentVariants
Parameters
• options: any
Returns
Overrides
Defined in
clients/core/dynamiccontentvariants.d.ts:6
Properties
_transporter
_transporter:
Transporter
Inherited from
Defined in
clients/client.d.ts:42
eventTarget
eventTarget:
CustomEventTarget
Event target to handle custom events.
Inherited from
Defined in
clients/client.d.ts:40
jsonAPINames
jsonAPINames:
string
[]
Array to hold names used in the JSON API.
Overrides
Defined in
clients/core/dynamiccontentvariants.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
Defined in
clients/client.d.ts:34
sideLoad
sideLoad:
any
[]
Array to handle side-loaded resources.
Inherited from
Defined in
clients/client.d.ts:37
useDotJson
useDotJson:
boolean
Flag to indicate if the API endpoint should use '.json' ending.
Inherited from
Defined in
clients/client.d.ts:39
Accessors
transporter
Get Signature
get transporter():
Transporter
Returns
Transporter for making requests.
Inherited from
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
Defined in
clients/client.d.ts:78
create()
create(
itemID
,variant
):Promise
<object
>
Creates a new dynamic content variant.
Parameters
• itemID: number
The ID of the dynamic content item.
• variant: object
The details of the variant to create.
Returns
Promise
<object
>
Returns the details of the created variant.
response
response:
object
result
result:
object
Throws
Throws an error if the API call fails or if a locale variant already exists.
See
Example
const client = createClient({...});
const newVariant = {
locale_id: 127,
active: true,
default: false,
content: "Some dynamic content"
};
const createdVariant = await client.dynamiccontentvariants.create(12345, newVariant);
Defined in
clients/core/dynamiccontentvariants.d.ts:53
createMany()
createMany(
itemID
,variants
):Promise
<object
>
Creates multiple variants for a dynamic content item.
Parameters
• itemID: number
The ID of the dynamic content item.
• variants: object
[]
Array of variant objects to be created.
Returns
Promise
<object
>
A confirmation of the creation.
response
response:
object
result
result:
object
Throws
Throws an error if request fails.
See
Example
const newVariants = await client.dynamiccontentvariants.createMany(1234, [...variantsData]);
Defined in
clients/core/dynamiccontentvariants.d.ts:99
delete()
delete(
itemID
,variantID
):Promise
<object
>
Deletes a specific variant of a dynamic content item.
Parameters
• itemID: number
The ID of the dynamic content item.
• variantID: number
The ID of the variant to delete.
Returns
Promise
<object
>
A confirmation of the deletion.
Throws
Throws an error if request fails.
See
Example
await client.dynamiccontentvariants.delete(1234, 5678);
Overrides
Defined in
clients/core/dynamiccontentvariants.d.ts:88
emit()
emit(
eventType
,eventData
):void
Parameters
• eventType: any
• eventData: any
Returns
void
Inherited from
Defined in
clients/client.d.ts:43
get()
get(
resource
):Promise
<NodeModule
>
Parameters
• resource: any
Returns
Promise
<NodeModule
>
Inherited from
Defined in
clients/client.d.ts:62
getAll()
getAll(
resource
):Promise
<any
[]>
Parameters
• resource: any
Returns
Promise
<any
[]>
Inherited from
Defined in
clients/client.d.ts:77
list()
list(
itemID
):Promise
<object
>
Lists all variants of a specified dynamic content item.
Parameters
• itemID: number
The ID of the dynamic content item.
Returns
Promise
<object
>
The variants of the specified content item.
response
response:
object
result
result:
object
[]
Throws
Throws an error if request fails.
See
Example
const variants = await client.dynamiccontentvariants.list(1234);
Defined in
clients/core/dynamiccontentvariants.d.ts:17
on()
on(
eventType
,callback
):void
Parameters
• eventType: any
• callback: any
Returns
void
Inherited from
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
Defined in
clients/client.d.ts:68
post()
post(
resource
,body
):Promise
<NodeModule
>
Parameters
• resource: any
• body: any
Returns
Promise
<NodeModule
>
Inherited from
Defined in
clients/client.d.ts:70
put()
put(
resource
,body
):Promise
<NodeModule
>
Parameters
• resource: any
• body: any
Returns
Promise
<NodeModule
>
Inherited from
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
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
Defined in
clients/client.d.ts:97
requestUpload()
requestUpload(
uri
,file
):Promise
<any
>
Parameters
• uri: any
• file: any
Returns
Promise
<any
>
Inherited from
Defined in
clients/client.d.ts:98
setSideLoad()
setSideLoad(
array
):void
Parameters
• array: any
Returns
void
Inherited from
Defined in
clients/client.d.ts:61
show()
show(
itemID
,variantID
):Promise
<object
>
Fetches the details of a specified dynamic content variant.
Parameters
• itemID: number
The ID of the dynamic content item.
• variantID: number
The ID of the variant to fetch.
Returns
Promise
<object
>
Returns the dynamic content variant details.
response
response:
object
result
result:
object
Throws
Throws an error if the API call fails.
See
Example
const client = createClient({...});
const variant = await client.dynamiccontentvariants.show(12345, 67890);
Defined in
clients/core/dynamiccontentvariants.d.ts:32
update()
update(
itemID
,variantID
,variant
):Promise
<object
>
Updates a specified dynamic content variant.
Parameters
• itemID: number
The ID of the dynamic content item.
• variantID: number
The ID of the variant to update.
• variant: object
The updated details of the variant.
Returns
Promise
<object
>
Returns the details of the updated variant.
response
response:
object
result
result:
object
Throws
Throws an error if the API call fails or if you try to switch the active state of the default variant.
See
Example
const client = createClient({...});
const updatedVariant = {
active: false,
default: false,
content: "Updated dynamic content"
};
const variant = await client.dynamiccontentvariants.update(12345, 67890, updatedVariant);
Defined in
clients/core/dynamiccontentvariants.d.ts:74
updateMany()
updateMany(
itemID
,variants
):Promise
<object
>
Updates multiple variants of a dynamic content item.
Parameters
• itemID: number
The ID of the dynamic content item.
• variants: object
[]
Array of variant objects to be updated.
Returns
Promise
<object
>
A confirmation of the update.
response
response:
object
result
result:
object
Throws
Throws an error if request fails.
See
Example
const updatedVariants = await client.dynamiccontentvariants.updateMany(1234, [...variantsData]);
Defined in
clients/core/dynamiccontentvariants.d.ts:113