node-zendesk / Exports / clients/core/organizationfields / OrganizationFields
Class: OrganizationFields
clients/core/organizationfields.OrganizationFields
Class representing the OrganizationFields API endpoints.
See
https://developer.zendesk.com/api-reference/ticketing/organizations/organization_fields/
Hierarchy
↳
OrganizationFields
Table of contents
Constructors
Properties
Accessors
Methods
- _rawRequest
- create
- delete
- emit
- get
- getAll
- list
- on
- patch
- post
- put
- reorder
- request
- requestAll
- requestUpload
- setSideLoad
- show
- update
Constructors
constructor
• new OrganizationFields(options
): OrganizationFields
Parameters
Name | Type |
---|---|
options | any |
Returns
Overrides
Defined in
clients/core/organizationfields.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/organizationfields.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(organizationField
): Promise
<object
>
Create a new organization field.
Parameters
Name | Type | Description |
---|---|---|
organizationField | object | The organization field object. |
Returns
Promise
<object
>
The newly created organization field.
Async
See
Example
const newOrgField = await client.organizationfields.create({ type: 'text', title: 'Support description' });
Defined in
clients/core/organizationfields.d.ts:34
delete
▸ delete(organizationFieldID
): Promise
<object
>
Delete an organization field.
Parameters
Name | Type | Description |
---|---|---|
organizationFieldID | number | The ID of the organization field to delete. |
Returns
Promise
<object
>
Response indicating the deletion status.
Async
Throws
Throws an error if the deletion fails.
See
Example
await client.organizationfields.delete(12345);
Overrides
Defined in
clients/core/organizationfields.d.ts:54
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
<object
>
List all organization fields.
Returns
Promise
<object
>
The organization fields.
Async
See
Example
const orgFields = await client.organizationfields.list();
Defined in
clients/core/organizationfields.d.ts:15
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
reorder
▸ reorder(organizationFieldIds
): Promise
<object
>
Reorder the organization fields.
Parameters
Name | Type | Description |
---|---|---|
organizationFieldIds | number [] | An array of organization field IDs in the desired order. |
Returns
Promise
<object
>
The reordered organization fields.
Async
See
Example
await client.organizationfields.reorder([3, 4]);
Defined in
clients/core/organizationfields.d.ts:63
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
setSideLoad
▸ setSideLoad(array
): void
Parameters
Name | Type |
---|---|
array | any |
Returns
void
Inherited from
Defined in
clients/client.d.ts:113
show
▸ show(organizationFieldID
): Promise
<object
>
Show a specific organization field.
Parameters
Name | Type | Description |
---|---|---|
organizationFieldID | number | The ID of the organization field. |
Returns
Promise
<object
>
The organization field details.
Async
Throws
Throws an error if the organization field is not found.
See
Example
const orgField = await client.organizationfields.show(12345);
Defined in
clients/core/organizationfields.d.ts:25
update
▸ update(organizationFieldID
, organizationField
): Promise
<object
>
Update an existing organization field.
Parameters
Name | Type | Description |
---|---|---|
organizationFieldID | number | The ID of the organization field to update. |
organizationField | object | The updated organization field object. |
Returns
Promise
<object
>
The updated organization field.
Async
See
Example
const updatedOrgField = await client.organizationfields.update(12345, { title: 'New title' });
Defined in
clients/core/organizationfields.d.ts:44