@unified-api/typescript-sdk 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (196) hide show
  1. package/README.md +54 -700
  2. package/dist/sdk/accounting.d.ts +0 -40
  3. package/dist/sdk/accounting.js +44 -696
  4. package/dist/sdk/link.d.ts +31 -0
  5. package/dist/sdk/link.js +503 -0
  6. package/dist/sdk/models/operations/{createaccountingpayment.d.ts → createpaymentlink.d.ts} +7 -7
  7. package/dist/sdk/models/operations/createpaymentlink.js +95 -0
  8. package/dist/sdk/models/operations/createpaymentpayment.d.ts +28 -0
  9. package/dist/sdk/models/operations/{createaccountingpayment.js → createpaymentpayment.js} +20 -20
  10. package/dist/sdk/models/operations/getpaymentlink.d.ts +35 -0
  11. package/dist/sdk/models/operations/getpaymentlink.js +99 -0
  12. package/dist/sdk/models/operations/{getaccountingpayment.d.ts → getpaymentpayment.d.ts} +6 -6
  13. package/dist/sdk/models/operations/{getaccountingpayment.js → getpaymentpayment.js} +20 -20
  14. package/dist/sdk/models/operations/{getaccountingpayout.d.ts → getpaymentpayout.d.ts} +6 -6
  15. package/dist/sdk/models/operations/{getaccountingpayout.js → getpaymentpayout.js} +20 -20
  16. package/dist/sdk/models/operations/{getaccountingrefund.d.ts → getpaymentrefund.d.ts} +6 -6
  17. package/dist/sdk/models/operations/{getaccountingrefund.js → getpaymentrefund.js} +20 -20
  18. package/dist/sdk/models/operations/getunifiedintegrationauth.d.ts +6 -4
  19. package/dist/sdk/models/operations/getunifiedintegrationauth.js +6 -4
  20. package/dist/sdk/models/operations/index.d.ts +16 -10
  21. package/dist/sdk/models/operations/index.js +16 -10
  22. package/dist/sdk/models/operations/listpaymentlinks.d.ts +51 -0
  23. package/dist/sdk/models/operations/listpaymentlinks.js +127 -0
  24. package/dist/sdk/models/operations/{listaccountingpayments.d.ts → listpaymentpayments.d.ts} +6 -6
  25. package/dist/sdk/models/operations/{listaccountingpayments.js → listpaymentpayments.js} +28 -28
  26. package/dist/sdk/models/operations/{listaccountingpayouts.d.ts → listpaymentpayouts.d.ts} +6 -6
  27. package/dist/sdk/models/operations/{listaccountingpayouts.js → listpaymentpayouts.js} +26 -26
  28. package/dist/sdk/models/operations/{listaccountingrefunds.d.ts → listpaymentrefunds.d.ts} +6 -6
  29. package/dist/sdk/models/operations/{listaccountingrefunds.js → listpaymentrefunds.js} +27 -27
  30. package/dist/sdk/models/operations/listunifiedconnections.d.ts +2 -1
  31. package/dist/sdk/models/operations/listunifiedconnections.js +1 -0
  32. package/dist/sdk/models/operations/listunifiedintegrations.d.ts +2 -1
  33. package/dist/sdk/models/operations/listunifiedintegrations.js +1 -0
  34. package/dist/sdk/models/operations/listunifiedintegrationworkspaces.d.ts +2 -1
  35. package/dist/sdk/models/operations/listunifiedintegrationworkspaces.js +1 -0
  36. package/dist/sdk/models/operations/patchpaymentlink.d.ts +32 -0
  37. package/dist/sdk/models/operations/patchpaymentlink.js +99 -0
  38. package/dist/sdk/models/operations/{patchaccountingpayment.d.ts → patchpaymentpayment.d.ts} +7 -7
  39. package/dist/sdk/models/operations/{patchaccountingpayment.js → patchpaymentpayment.js} +21 -21
  40. package/dist/sdk/models/operations/removepaymentlink.d.ts +30 -0
  41. package/dist/sdk/models/operations/{removeaccountingpayment.js → removepaymentlink.js} +17 -17
  42. package/dist/sdk/models/operations/{removeaccountingpayment.d.ts → removepaymentpayment.d.ts} +2 -2
  43. package/dist/sdk/models/operations/removepaymentpayment.js +71 -0
  44. package/dist/sdk/models/operations/updatepaymentlink.d.ts +32 -0
  45. package/dist/sdk/models/operations/updatepaymentlink.js +99 -0
  46. package/dist/sdk/models/operations/{updateaccountingpayment.d.ts → updatepaymentpayment.d.ts} +7 -7
  47. package/dist/sdk/models/operations/{updateaccountingpayment.js → updatepaymentpayment.js} +21 -21
  48. package/dist/sdk/models/shared/accountinginvoice.d.ts +1 -0
  49. package/dist/sdk/models/shared/accountinginvoice.js +5 -0
  50. package/dist/sdk/models/shared/index.d.ts +5 -3
  51. package/dist/sdk/models/shared/index.js +5 -3
  52. package/dist/sdk/models/shared/paymenntlinklineitem.d.ts +20 -0
  53. package/dist/sdk/models/shared/paymenntlinklineitem.js +137 -0
  54. package/dist/sdk/models/shared/paymentlink.d.ts +15 -0
  55. package/dist/sdk/models/shared/paymentlink.js +105 -0
  56. package/dist/sdk/models/shared/{accountingpayment.d.ts → paymentpayment.d.ts} +1 -1
  57. package/dist/sdk/models/shared/{accountingpayment.js → paymentpayment.js} +18 -18
  58. package/dist/sdk/models/shared/{accountingpayout.d.ts → paymentpayout.d.ts} +3 -3
  59. package/dist/sdk/models/shared/{accountingpayout.js → paymentpayout.js} +21 -21
  60. package/dist/sdk/models/shared/{accountingrefund.d.ts → paymentrefund.d.ts} +3 -3
  61. package/dist/sdk/models/shared/{accountingrefund.js → paymentrefund.js} +23 -23
  62. package/dist/sdk/models/shared/propertyconnectioncategories.d.ts +2 -1
  63. package/dist/sdk/models/shared/propertyconnectioncategories.js +1 -0
  64. package/dist/sdk/models/shared/propertyconnectionpermissions.d.ts +6 -4
  65. package/dist/sdk/models/shared/propertyconnectionpermissions.js +6 -4
  66. package/dist/sdk/models/shared/propertyintegrationcategories.d.ts +2 -1
  67. package/dist/sdk/models/shared/propertyintegrationcategories.js +1 -0
  68. package/dist/sdk/models/shared/webhook.d.ts +4 -3
  69. package/dist/sdk/models/shared/webhook.js +4 -3
  70. package/dist/sdk/payment.d.ts +46 -6
  71. package/dist/sdk/payment.js +705 -53
  72. package/dist/sdk/payout.d.ts +2 -2
  73. package/dist/sdk/payout.js +11 -11
  74. package/dist/sdk/refund.d.ts +2 -2
  75. package/dist/sdk/refund.js +11 -11
  76. package/dist/sdk/sdk.d.ts +5 -3
  77. package/dist/sdk/sdk.js +7 -5
  78. package/docs/sdk/models/operations/categories.md +2 -1
  79. package/docs/sdk/models/operations/createpaymentlinkrequest.md +9 -0
  80. package/docs/sdk/models/operations/createpaymentlinkresponse.md +11 -0
  81. package/docs/sdk/models/operations/createpaymentpaymentrequest.md +9 -0
  82. package/docs/sdk/models/operations/createpaymentpaymentresponse.md +11 -0
  83. package/docs/sdk/models/operations/getpaymentlinkrequest.md +10 -0
  84. package/docs/sdk/models/operations/getpaymentlinkresponse.md +11 -0
  85. package/docs/sdk/models/operations/{getaccountingpaymentrequest.md → getpaymentpaymentrequest.md} +1 -1
  86. package/docs/sdk/models/operations/getpaymentpaymentresponse.md +11 -0
  87. package/docs/sdk/models/operations/{getaccountingpayoutrequest.md → getpaymentpayoutrequest.md} +1 -1
  88. package/docs/sdk/models/operations/getpaymentpayoutresponse.md +11 -0
  89. package/docs/sdk/models/operations/{getaccountingrefundrequest.md → getpaymentrefundrequest.md} +1 -1
  90. package/docs/sdk/models/operations/getpaymentrefundresponse.md +11 -0
  91. package/docs/sdk/models/operations/listpaymentlinksrequest.md +17 -0
  92. package/docs/sdk/models/operations/listpaymentlinksresponse.md +11 -0
  93. package/docs/sdk/models/operations/{listaccountingpaymentsrequest.md → listpaymentpaymentsrequest.md} +1 -1
  94. package/docs/sdk/models/operations/listpaymentpaymentsresponse.md +11 -0
  95. package/docs/sdk/models/operations/{listaccountingpayoutsrequest.md → listpaymentpayoutsrequest.md} +1 -1
  96. package/docs/sdk/models/operations/listpaymentpayoutsresponse.md +11 -0
  97. package/docs/sdk/models/operations/{listaccountingrefundsrequest.md → listpaymentrefundsrequest.md} +1 -1
  98. package/docs/sdk/models/operations/listpaymentrefundsresponse.md +11 -0
  99. package/docs/sdk/models/operations/listunifiedintegrationsqueryparamcategories.md +2 -1
  100. package/docs/sdk/models/operations/patchpaymentlinkrequest.md +10 -0
  101. package/docs/sdk/models/operations/patchpaymentlinkresponse.md +11 -0
  102. package/docs/sdk/models/operations/patchpaymentpaymentrequest.md +10 -0
  103. package/docs/sdk/models/operations/patchpaymentpaymentresponse.md +11 -0
  104. package/docs/sdk/models/operations/queryparamcategories.md +2 -1
  105. package/docs/sdk/models/operations/{removeaccountingpaymentrequest.md → removepaymentlinkrequest.md} +2 -2
  106. package/docs/sdk/models/operations/{removeaccountingpaymentresponse.md → removepaymentlinkresponse.md} +1 -1
  107. package/docs/sdk/models/operations/removepaymentpaymentrequest.md +9 -0
  108. package/docs/sdk/models/operations/removepaymentpaymentresponse.md +11 -0
  109. package/docs/sdk/models/operations/scopes.md +6 -4
  110. package/docs/sdk/models/operations/updatepaymentlinkrequest.md +10 -0
  111. package/docs/sdk/models/operations/updatepaymentlinkresponse.md +11 -0
  112. package/docs/sdk/models/operations/updatepaymentpaymentrequest.md +10 -0
  113. package/docs/sdk/models/operations/updatepaymentpaymentresponse.md +11 -0
  114. package/docs/sdk/models/shared/accountinginvoice.md +2 -1
  115. package/docs/sdk/models/shared/objecttype.md +4 -3
  116. package/docs/sdk/models/shared/paymenntlinklineitem.md +24 -0
  117. package/docs/sdk/models/shared/paymentlink.md +18 -0
  118. package/docs/sdk/models/shared/{accountingpayment.md → paymentpayment.md} +1 -1
  119. package/docs/sdk/models/shared/paymentpayout.md +15 -0
  120. package/docs/sdk/models/shared/{accountingpayoutstatus.md → paymentpayoutstatus.md} +1 -1
  121. package/docs/sdk/models/shared/paymentrefund.md +17 -0
  122. package/docs/sdk/models/shared/{accountingrefundstatus.md → paymentrefundstatus.md} +1 -1
  123. package/docs/sdk/models/shared/propertyconnectioncategories.md +2 -1
  124. package/docs/sdk/models/shared/propertyconnectionpermissions.md +6 -4
  125. package/docs/sdk/models/shared/propertyintegrationcategories.md +2 -1
  126. package/package.json +1 -1
  127. package/docs/sdk/models/operations/createaccountingpaymentrequest.md +0 -9
  128. package/docs/sdk/models/operations/createaccountingpaymentresponse.md +0 -11
  129. package/docs/sdk/models/operations/getaccountingpaymentresponse.md +0 -11
  130. package/docs/sdk/models/operations/getaccountingpayoutresponse.md +0 -11
  131. package/docs/sdk/models/operations/getaccountingrefundresponse.md +0 -11
  132. package/docs/sdk/models/operations/listaccountingpaymentsresponse.md +0 -11
  133. package/docs/sdk/models/operations/listaccountingpayoutsresponse.md +0 -11
  134. package/docs/sdk/models/operations/listaccountingrefundsresponse.md +0 -11
  135. package/docs/sdk/models/operations/patchaccountingpaymentrequest.md +0 -10
  136. package/docs/sdk/models/operations/patchaccountingpaymentresponse.md +0 -11
  137. package/docs/sdk/models/operations/updateaccountingpaymentrequest.md +0 -10
  138. package/docs/sdk/models/operations/updateaccountingpaymentresponse.md +0 -11
  139. package/docs/sdk/models/shared/accountingpayout.md +0 -15
  140. package/docs/sdk/models/shared/accountingrefund.md +0 -17
  141. package/docs/sdks/account/README.md +0 -312
  142. package/docs/sdks/accounting/README.md +0 -2198
  143. package/docs/sdks/activity/README.md +0 -321
  144. package/docs/sdks/apicall/README.md +0 -95
  145. package/docs/sdks/application/README.md +0 -333
  146. package/docs/sdks/applicationstatus/README.md +0 -54
  147. package/docs/sdks/ats/README.md +0 -2488
  148. package/docs/sdks/auth/README.md +0 -103
  149. package/docs/sdks/call/README.md +0 -54
  150. package/docs/sdks/candidate/README.md +0 -369
  151. package/docs/sdks/collection/README.md +0 -348
  152. package/docs/sdks/commerce/README.md +0 -1371
  153. package/docs/sdks/company/README.md +0 -517
  154. package/docs/sdks/connection/README.md +0 -359
  155. package/docs/sdks/contact/README.md +0 -1028
  156. package/docs/sdks/crm/README.md +0 -2048
  157. package/docs/sdks/customer/README.md +0 -348
  158. package/docs/sdks/deal/README.md +0 -315
  159. package/docs/sdks/document/README.md +0 -309
  160. package/docs/sdks/employee/README.md +0 -363
  161. package/docs/sdks/enrich/README.md +0 -97
  162. package/docs/sdks/event/README.md +0 -390
  163. package/docs/sdks/file/README.md +0 -330
  164. package/docs/sdks/group/README.md +0 -327
  165. package/docs/sdks/hris/README.md +0 -685
  166. package/docs/sdks/integration/README.md +0 -155
  167. package/docs/sdks/interview/README.md +0 -318
  168. package/docs/sdks/inventory/README.md +0 -309
  169. package/docs/sdks/invoice/README.md +0 -324
  170. package/docs/sdks/issue/README.md +0 -49
  171. package/docs/sdks/item/README.md +0 -417
  172. package/docs/sdks/job/README.md +0 -396
  173. package/docs/sdks/lead/README.md +0 -336
  174. package/docs/sdks/list/README.md +0 -306
  175. package/docs/sdks/location/README.md +0 -312
  176. package/docs/sdks/login/README.md +0 -52
  177. package/docs/sdks/martech/README.md +0 -643
  178. package/docs/sdks/member/README.md +0 -342
  179. package/docs/sdks/note/README.md +0 -306
  180. package/docs/sdks/organization/README.md +0 -104
  181. package/docs/sdks/passthrough/README.md +0 -249
  182. package/docs/sdks/payment/README.md +0 -306
  183. package/docs/sdks/payout/README.md +0 -104
  184. package/docs/sdks/person/README.md +0 -51
  185. package/docs/sdks/pipeline/README.md +0 -306
  186. package/docs/sdks/refund/README.md +0 -104
  187. package/docs/sdks/scorecard/README.md +0 -324
  188. package/docs/sdks/storage/README.md +0 -330
  189. package/docs/sdks/taxrate/README.md +0 -312
  190. package/docs/sdks/ticket/README.md +0 -318
  191. package/docs/sdks/ticketing/README.md +0 -962
  192. package/docs/sdks/transaction/README.md +0 -327
  193. package/docs/sdks/uc/README.md +0 -388
  194. package/docs/sdks/unified/README.md +0 -929
  195. package/docs/sdks/unifiedto/README.md +0 -9
  196. package/docs/sdks/webhook/README.md +0 -291
@@ -1,962 +0,0 @@
1
- # Ticketing
2
- (*ticketing*)
3
-
4
- ### Available Operations
5
-
6
- * [createTicketingCustomer](#createticketingcustomer) - Create a customer
7
- * [createTicketingNote](#createticketingnote) - Create a note
8
- * [createTicketingTicket](#createticketingticket) - Create a ticket
9
- * [getTicketingCustomer](#getticketingcustomer) - Retrieve a customer
10
- * [getTicketingNote](#getticketingnote) - Retrieve a note
11
- * [getTicketingTicket](#getticketingticket) - Retrieve a ticket
12
- * [listTicketingCustomers](#listticketingcustomers) - List all customers
13
- * [listTicketingNotes](#listticketingnotes) - List all notes
14
- * [listTicketingTickets](#listticketingtickets) - List all tickets
15
- * [patchTicketingCustomer](#patchticketingcustomer) - Update a customer
16
- * [patchTicketingNote](#patchticketingnote) - Update a note
17
- * [patchTicketingTicket](#patchticketingticket) - Update a ticket
18
- * [removeTicketingCustomer](#removeticketingcustomer) - Remove a customer
19
- * [removeTicketingNote](#removeticketingnote) - Remove a note
20
- * [removeTicketingTicket](#removeticketingticket) - Remove a ticket
21
- * [updateTicketingCustomer](#updateticketingcustomer) - Update a customer
22
- * [updateTicketingNote](#updateticketingnote) - Update a note
23
- * [updateTicketingTicket](#updateticketingticket) - Update a ticket
24
-
25
- ## createTicketingCustomer
26
-
27
- Create a customer
28
-
29
- ### Example Usage
30
-
31
- ```typescript
32
- import { UnifiedTo } from "@unified-api/typescript-sdk";
33
- import { TicketingEmailType, TicketingTelephoneType } from "@unified-api/typescript-sdk/dist/sdk/models/shared";
34
-
35
- async function run() {
36
- const sdk = new UnifiedTo({
37
- security: {
38
- jwt: "<YOUR_API_KEY_HERE>",
39
- },
40
- });
41
-
42
- const res = await sdk.ticketing.createTicketingCustomer({
43
- ticketingCustomer: {
44
- emails: [
45
- {
46
- email: "Guadalupe78@yahoo.com",
47
- },
48
- ],
49
- raw: {
50
- "key": "<value>",
51
- },
52
- tags: [
53
- "<value>",
54
- ],
55
- telephones: [
56
- {
57
- telephone: "<value>",
58
- },
59
- ],
60
- },
61
- connectionId: "<value>",
62
- });
63
-
64
- if (res.statusCode == 200) {
65
- // handle response
66
- }
67
- }
68
-
69
- run();
70
- ```
71
-
72
- ### Parameters
73
-
74
- | Parameter | Type | Required | Description |
75
- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
76
- | `request` | [operations.CreateTicketingCustomerRequest](../../sdk/models/operations/createticketingcustomerrequest.md) | :heavy_check_mark: | The request object to use for the request. |
77
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
78
-
79
-
80
- ### Response
81
-
82
- **Promise<[operations.CreateTicketingCustomerResponse](../../sdk/models/operations/createticketingcustomerresponse.md)>**
83
- ### Errors
84
-
85
- | Error Object | Status Code | Content Type |
86
- | --------------- | --------------- | --------------- |
87
- | errors.SDKError | 4xx-5xx | */* |
88
-
89
- ## createTicketingNote
90
-
91
- Create a note
92
-
93
- ### Example Usage
94
-
95
- ```typescript
96
- import { UnifiedTo } from "@unified-api/typescript-sdk";
97
-
98
- async function run() {
99
- const sdk = new UnifiedTo({
100
- security: {
101
- jwt: "<YOUR_API_KEY_HERE>",
102
- },
103
- });
104
-
105
- const res = await sdk.ticketing.createTicketingNote({
106
- ticketingNote: {
107
- raw: {
108
- "key": "<value>",
109
- },
110
- },
111
- connectionId: "<value>",
112
- });
113
-
114
- if (res.statusCode == 200) {
115
- // handle response
116
- }
117
- }
118
-
119
- run();
120
- ```
121
-
122
- ### Parameters
123
-
124
- | Parameter | Type | Required | Description |
125
- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
126
- | `request` | [operations.CreateTicketingNoteRequest](../../sdk/models/operations/createticketingnoterequest.md) | :heavy_check_mark: | The request object to use for the request. |
127
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
128
-
129
-
130
- ### Response
131
-
132
- **Promise<[operations.CreateTicketingNoteResponse](../../sdk/models/operations/createticketingnoteresponse.md)>**
133
- ### Errors
134
-
135
- | Error Object | Status Code | Content Type |
136
- | --------------- | --------------- | --------------- |
137
- | errors.SDKError | 4xx-5xx | */* |
138
-
139
- ## createTicketingTicket
140
-
141
- Create a ticket
142
-
143
- ### Example Usage
144
-
145
- ```typescript
146
- import { UnifiedTo } from "@unified-api/typescript-sdk";
147
- import { TicketingTicketStatus } from "@unified-api/typescript-sdk/dist/sdk/models/shared";
148
-
149
- async function run() {
150
- const sdk = new UnifiedTo({
151
- security: {
152
- jwt: "<YOUR_API_KEY_HERE>",
153
- },
154
- });
155
-
156
- const res = await sdk.ticketing.createTicketingTicket({
157
- ticketingTicket: {
158
- raw: {
159
- "key": "<value>",
160
- },
161
- tags: [
162
- "<value>",
163
- ],
164
- },
165
- connectionId: "<value>",
166
- });
167
-
168
- if (res.statusCode == 200) {
169
- // handle response
170
- }
171
- }
172
-
173
- run();
174
- ```
175
-
176
- ### Parameters
177
-
178
- | Parameter | Type | Required | Description |
179
- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ |
180
- | `request` | [operations.CreateTicketingTicketRequest](../../sdk/models/operations/createticketingticketrequest.md) | :heavy_check_mark: | The request object to use for the request. |
181
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
182
-
183
-
184
- ### Response
185
-
186
- **Promise<[operations.CreateTicketingTicketResponse](../../sdk/models/operations/createticketingticketresponse.md)>**
187
- ### Errors
188
-
189
- | Error Object | Status Code | Content Type |
190
- | --------------- | --------------- | --------------- |
191
- | errors.SDKError | 4xx-5xx | */* |
192
-
193
- ## getTicketingCustomer
194
-
195
- Retrieve a customer
196
-
197
- ### Example Usage
198
-
199
- ```typescript
200
- import { UnifiedTo } from "@unified-api/typescript-sdk";
201
-
202
- async function run() {
203
- const sdk = new UnifiedTo({
204
- security: {
205
- jwt: "<YOUR_API_KEY_HERE>",
206
- },
207
- });
208
-
209
- const res = await sdk.ticketing.getTicketingCustomer({
210
- connectionId: "<value>",
211
- fields: [
212
- "<value>",
213
- ],
214
- id: "<id>",
215
- });
216
-
217
- if (res.statusCode == 200) {
218
- // handle response
219
- }
220
- }
221
-
222
- run();
223
- ```
224
-
225
- ### Parameters
226
-
227
- | Parameter | Type | Required | Description |
228
- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- |
229
- | `request` | [operations.GetTicketingCustomerRequest](../../sdk/models/operations/getticketingcustomerrequest.md) | :heavy_check_mark: | The request object to use for the request. |
230
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
231
-
232
-
233
- ### Response
234
-
235
- **Promise<[operations.GetTicketingCustomerResponse](../../sdk/models/operations/getticketingcustomerresponse.md)>**
236
- ### Errors
237
-
238
- | Error Object | Status Code | Content Type |
239
- | --------------- | --------------- | --------------- |
240
- | errors.SDKError | 4xx-5xx | */* |
241
-
242
- ## getTicketingNote
243
-
244
- Retrieve a note
245
-
246
- ### Example Usage
247
-
248
- ```typescript
249
- import { UnifiedTo } from "@unified-api/typescript-sdk";
250
-
251
- async function run() {
252
- const sdk = new UnifiedTo({
253
- security: {
254
- jwt: "<YOUR_API_KEY_HERE>",
255
- },
256
- });
257
-
258
- const res = await sdk.ticketing.getTicketingNote({
259
- connectionId: "<value>",
260
- fields: [
261
- "<value>",
262
- ],
263
- id: "<id>",
264
- });
265
-
266
- if (res.statusCode == 200) {
267
- // handle response
268
- }
269
- }
270
-
271
- run();
272
- ```
273
-
274
- ### Parameters
275
-
276
- | Parameter | Type | Required | Description |
277
- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- |
278
- | `request` | [operations.GetTicketingNoteRequest](../../sdk/models/operations/getticketingnoterequest.md) | :heavy_check_mark: | The request object to use for the request. |
279
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
280
-
281
-
282
- ### Response
283
-
284
- **Promise<[operations.GetTicketingNoteResponse](../../sdk/models/operations/getticketingnoteresponse.md)>**
285
- ### Errors
286
-
287
- | Error Object | Status Code | Content Type |
288
- | --------------- | --------------- | --------------- |
289
- | errors.SDKError | 4xx-5xx | */* |
290
-
291
- ## getTicketingTicket
292
-
293
- Retrieve a ticket
294
-
295
- ### Example Usage
296
-
297
- ```typescript
298
- import { UnifiedTo } from "@unified-api/typescript-sdk";
299
-
300
- async function run() {
301
- const sdk = new UnifiedTo({
302
- security: {
303
- jwt: "<YOUR_API_KEY_HERE>",
304
- },
305
- });
306
-
307
- const res = await sdk.ticketing.getTicketingTicket({
308
- connectionId: "<value>",
309
- fields: [
310
- "<value>",
311
- ],
312
- id: "<id>",
313
- });
314
-
315
- if (res.statusCode == 200) {
316
- // handle response
317
- }
318
- }
319
-
320
- run();
321
- ```
322
-
323
- ### Parameters
324
-
325
- | Parameter | Type | Required | Description |
326
- | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ |
327
- | `request` | [operations.GetTicketingTicketRequest](../../sdk/models/operations/getticketingticketrequest.md) | :heavy_check_mark: | The request object to use for the request. |
328
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
329
-
330
-
331
- ### Response
332
-
333
- **Promise<[operations.GetTicketingTicketResponse](../../sdk/models/operations/getticketingticketresponse.md)>**
334
- ### Errors
335
-
336
- | Error Object | Status Code | Content Type |
337
- | --------------- | --------------- | --------------- |
338
- | errors.SDKError | 4xx-5xx | */* |
339
-
340
- ## listTicketingCustomers
341
-
342
- List all customers
343
-
344
- ### Example Usage
345
-
346
- ```typescript
347
- import { UnifiedTo } from "@unified-api/typescript-sdk";
348
-
349
- async function run() {
350
- const sdk = new UnifiedTo({
351
- security: {
352
- jwt: "<YOUR_API_KEY_HERE>",
353
- },
354
- });
355
-
356
- const res = await sdk.ticketing.listTicketingCustomers({
357
- connectionId: "<value>",
358
- fields: [
359
- "<value>",
360
- ],
361
- });
362
-
363
- if (res.statusCode == 200) {
364
- // handle response
365
- }
366
- }
367
-
368
- run();
369
- ```
370
-
371
- ### Parameters
372
-
373
- | Parameter | Type | Required | Description |
374
- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
375
- | `request` | [operations.ListTicketingCustomersRequest](../../sdk/models/operations/listticketingcustomersrequest.md) | :heavy_check_mark: | The request object to use for the request. |
376
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
377
-
378
-
379
- ### Response
380
-
381
- **Promise<[operations.ListTicketingCustomersResponse](../../sdk/models/operations/listticketingcustomersresponse.md)>**
382
- ### Errors
383
-
384
- | Error Object | Status Code | Content Type |
385
- | --------------- | --------------- | --------------- |
386
- | errors.SDKError | 4xx-5xx | */* |
387
-
388
- ## listTicketingNotes
389
-
390
- List all notes
391
-
392
- ### Example Usage
393
-
394
- ```typescript
395
- import { UnifiedTo } from "@unified-api/typescript-sdk";
396
-
397
- async function run() {
398
- const sdk = new UnifiedTo({
399
- security: {
400
- jwt: "<YOUR_API_KEY_HERE>",
401
- },
402
- });
403
-
404
- const res = await sdk.ticketing.listTicketingNotes({
405
- connectionId: "<value>",
406
- fields: [
407
- "<value>",
408
- ],
409
- });
410
-
411
- if (res.statusCode == 200) {
412
- // handle response
413
- }
414
- }
415
-
416
- run();
417
- ```
418
-
419
- ### Parameters
420
-
421
- | Parameter | Type | Required | Description |
422
- | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ |
423
- | `request` | [operations.ListTicketingNotesRequest](../../sdk/models/operations/listticketingnotesrequest.md) | :heavy_check_mark: | The request object to use for the request. |
424
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
425
-
426
-
427
- ### Response
428
-
429
- **Promise<[operations.ListTicketingNotesResponse](../../sdk/models/operations/listticketingnotesresponse.md)>**
430
- ### Errors
431
-
432
- | Error Object | Status Code | Content Type |
433
- | --------------- | --------------- | --------------- |
434
- | errors.SDKError | 4xx-5xx | */* |
435
-
436
- ## listTicketingTickets
437
-
438
- List all tickets
439
-
440
- ### Example Usage
441
-
442
- ```typescript
443
- import { UnifiedTo } from "@unified-api/typescript-sdk";
444
-
445
- async function run() {
446
- const sdk = new UnifiedTo({
447
- security: {
448
- jwt: "<YOUR_API_KEY_HERE>",
449
- },
450
- });
451
-
452
- const res = await sdk.ticketing.listTicketingTickets({
453
- connectionId: "<value>",
454
- fields: [
455
- "<value>",
456
- ],
457
- });
458
-
459
- if (res.statusCode == 200) {
460
- // handle response
461
- }
462
- }
463
-
464
- run();
465
- ```
466
-
467
- ### Parameters
468
-
469
- | Parameter | Type | Required | Description |
470
- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- |
471
- | `request` | [operations.ListTicketingTicketsRequest](../../sdk/models/operations/listticketingticketsrequest.md) | :heavy_check_mark: | The request object to use for the request. |
472
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
473
-
474
-
475
- ### Response
476
-
477
- **Promise<[operations.ListTicketingTicketsResponse](../../sdk/models/operations/listticketingticketsresponse.md)>**
478
- ### Errors
479
-
480
- | Error Object | Status Code | Content Type |
481
- | --------------- | --------------- | --------------- |
482
- | errors.SDKError | 4xx-5xx | */* |
483
-
484
- ## patchTicketingCustomer
485
-
486
- Update a customer
487
-
488
- ### Example Usage
489
-
490
- ```typescript
491
- import { UnifiedTo } from "@unified-api/typescript-sdk";
492
- import { TicketingEmailType, TicketingTelephoneType } from "@unified-api/typescript-sdk/dist/sdk/models/shared";
493
-
494
- async function run() {
495
- const sdk = new UnifiedTo({
496
- security: {
497
- jwt: "<YOUR_API_KEY_HERE>",
498
- },
499
- });
500
-
501
- const res = await sdk.ticketing.patchTicketingCustomer({
502
- ticketingCustomer: {
503
- emails: [
504
- {
505
- email: "Raymundo93@hotmail.com",
506
- },
507
- ],
508
- raw: {
509
- "key": "<value>",
510
- },
511
- tags: [
512
- "<value>",
513
- ],
514
- telephones: [
515
- {
516
- telephone: "<value>",
517
- },
518
- ],
519
- },
520
- connectionId: "<value>",
521
- id: "<id>",
522
- });
523
-
524
- if (res.statusCode == 200) {
525
- // handle response
526
- }
527
- }
528
-
529
- run();
530
- ```
531
-
532
- ### Parameters
533
-
534
- | Parameter | Type | Required | Description |
535
- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
536
- | `request` | [operations.PatchTicketingCustomerRequest](../../sdk/models/operations/patchticketingcustomerrequest.md) | :heavy_check_mark: | The request object to use for the request. |
537
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
538
-
539
-
540
- ### Response
541
-
542
- **Promise<[operations.PatchTicketingCustomerResponse](../../sdk/models/operations/patchticketingcustomerresponse.md)>**
543
- ### Errors
544
-
545
- | Error Object | Status Code | Content Type |
546
- | --------------- | --------------- | --------------- |
547
- | errors.SDKError | 4xx-5xx | */* |
548
-
549
- ## patchTicketingNote
550
-
551
- Update a note
552
-
553
- ### Example Usage
554
-
555
- ```typescript
556
- import { UnifiedTo } from "@unified-api/typescript-sdk";
557
-
558
- async function run() {
559
- const sdk = new UnifiedTo({
560
- security: {
561
- jwt: "<YOUR_API_KEY_HERE>",
562
- },
563
- });
564
-
565
- const res = await sdk.ticketing.patchTicketingNote({
566
- ticketingNote: {
567
- raw: {
568
- "key": "<value>",
569
- },
570
- },
571
- connectionId: "<value>",
572
- id: "<id>",
573
- });
574
-
575
- if (res.statusCode == 200) {
576
- // handle response
577
- }
578
- }
579
-
580
- run();
581
- ```
582
-
583
- ### Parameters
584
-
585
- | Parameter | Type | Required | Description |
586
- | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ |
587
- | `request` | [operations.PatchTicketingNoteRequest](../../sdk/models/operations/patchticketingnoterequest.md) | :heavy_check_mark: | The request object to use for the request. |
588
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
589
-
590
-
591
- ### Response
592
-
593
- **Promise<[operations.PatchTicketingNoteResponse](../../sdk/models/operations/patchticketingnoteresponse.md)>**
594
- ### Errors
595
-
596
- | Error Object | Status Code | Content Type |
597
- | --------------- | --------------- | --------------- |
598
- | errors.SDKError | 4xx-5xx | */* |
599
-
600
- ## patchTicketingTicket
601
-
602
- Update a ticket
603
-
604
- ### Example Usage
605
-
606
- ```typescript
607
- import { UnifiedTo } from "@unified-api/typescript-sdk";
608
- import { TicketingTicketStatus } from "@unified-api/typescript-sdk/dist/sdk/models/shared";
609
-
610
- async function run() {
611
- const sdk = new UnifiedTo({
612
- security: {
613
- jwt: "<YOUR_API_KEY_HERE>",
614
- },
615
- });
616
-
617
- const res = await sdk.ticketing.patchTicketingTicket({
618
- ticketingTicket: {
619
- raw: {
620
- "key": "<value>",
621
- },
622
- tags: [
623
- "<value>",
624
- ],
625
- },
626
- connectionId: "<value>",
627
- id: "<id>",
628
- });
629
-
630
- if (res.statusCode == 200) {
631
- // handle response
632
- }
633
- }
634
-
635
- run();
636
- ```
637
-
638
- ### Parameters
639
-
640
- | Parameter | Type | Required | Description |
641
- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- |
642
- | `request` | [operations.PatchTicketingTicketRequest](../../sdk/models/operations/patchticketingticketrequest.md) | :heavy_check_mark: | The request object to use for the request. |
643
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
644
-
645
-
646
- ### Response
647
-
648
- **Promise<[operations.PatchTicketingTicketResponse](../../sdk/models/operations/patchticketingticketresponse.md)>**
649
- ### Errors
650
-
651
- | Error Object | Status Code | Content Type |
652
- | --------------- | --------------- | --------------- |
653
- | errors.SDKError | 4xx-5xx | */* |
654
-
655
- ## removeTicketingCustomer
656
-
657
- Remove a customer
658
-
659
- ### Example Usage
660
-
661
- ```typescript
662
- import { UnifiedTo } from "@unified-api/typescript-sdk";
663
-
664
- async function run() {
665
- const sdk = new UnifiedTo({
666
- security: {
667
- jwt: "<YOUR_API_KEY_HERE>",
668
- },
669
- });
670
-
671
- const res = await sdk.ticketing.removeTicketingCustomer({
672
- connectionId: "<value>",
673
- id: "<id>",
674
- });
675
-
676
- if (res.statusCode == 200) {
677
- // handle response
678
- }
679
- }
680
-
681
- run();
682
- ```
683
-
684
- ### Parameters
685
-
686
- | Parameter | Type | Required | Description |
687
- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
688
- | `request` | [operations.RemoveTicketingCustomerRequest](../../sdk/models/operations/removeticketingcustomerrequest.md) | :heavy_check_mark: | The request object to use for the request. |
689
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
690
-
691
-
692
- ### Response
693
-
694
- **Promise<[operations.RemoveTicketingCustomerResponse](../../sdk/models/operations/removeticketingcustomerresponse.md)>**
695
- ### Errors
696
-
697
- | Error Object | Status Code | Content Type |
698
- | --------------- | --------------- | --------------- |
699
- | errors.SDKError | 4xx-5xx | */* |
700
-
701
- ## removeTicketingNote
702
-
703
- Remove a note
704
-
705
- ### Example Usage
706
-
707
- ```typescript
708
- import { UnifiedTo } from "@unified-api/typescript-sdk";
709
-
710
- async function run() {
711
- const sdk = new UnifiedTo({
712
- security: {
713
- jwt: "<YOUR_API_KEY_HERE>",
714
- },
715
- });
716
-
717
- const res = await sdk.ticketing.removeTicketingNote({
718
- connectionId: "<value>",
719
- id: "<id>",
720
- });
721
-
722
- if (res.statusCode == 200) {
723
- // handle response
724
- }
725
- }
726
-
727
- run();
728
- ```
729
-
730
- ### Parameters
731
-
732
- | Parameter | Type | Required | Description |
733
- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
734
- | `request` | [operations.RemoveTicketingNoteRequest](../../sdk/models/operations/removeticketingnoterequest.md) | :heavy_check_mark: | The request object to use for the request. |
735
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
736
-
737
-
738
- ### Response
739
-
740
- **Promise<[operations.RemoveTicketingNoteResponse](../../sdk/models/operations/removeticketingnoteresponse.md)>**
741
- ### Errors
742
-
743
- | Error Object | Status Code | Content Type |
744
- | --------------- | --------------- | --------------- |
745
- | errors.SDKError | 4xx-5xx | */* |
746
-
747
- ## removeTicketingTicket
748
-
749
- Remove a ticket
750
-
751
- ### Example Usage
752
-
753
- ```typescript
754
- import { UnifiedTo } from "@unified-api/typescript-sdk";
755
-
756
- async function run() {
757
- const sdk = new UnifiedTo({
758
- security: {
759
- jwt: "<YOUR_API_KEY_HERE>",
760
- },
761
- });
762
-
763
- const res = await sdk.ticketing.removeTicketingTicket({
764
- connectionId: "<value>",
765
- id: "<id>",
766
- });
767
-
768
- if (res.statusCode == 200) {
769
- // handle response
770
- }
771
- }
772
-
773
- run();
774
- ```
775
-
776
- ### Parameters
777
-
778
- | Parameter | Type | Required | Description |
779
- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ |
780
- | `request` | [operations.RemoveTicketingTicketRequest](../../sdk/models/operations/removeticketingticketrequest.md) | :heavy_check_mark: | The request object to use for the request. |
781
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
782
-
783
-
784
- ### Response
785
-
786
- **Promise<[operations.RemoveTicketingTicketResponse](../../sdk/models/operations/removeticketingticketresponse.md)>**
787
- ### Errors
788
-
789
- | Error Object | Status Code | Content Type |
790
- | --------------- | --------------- | --------------- |
791
- | errors.SDKError | 4xx-5xx | */* |
792
-
793
- ## updateTicketingCustomer
794
-
795
- Update a customer
796
-
797
- ### Example Usage
798
-
799
- ```typescript
800
- import { UnifiedTo } from "@unified-api/typescript-sdk";
801
- import { TicketingEmailType, TicketingTelephoneType } from "@unified-api/typescript-sdk/dist/sdk/models/shared";
802
-
803
- async function run() {
804
- const sdk = new UnifiedTo({
805
- security: {
806
- jwt: "<YOUR_API_KEY_HERE>",
807
- },
808
- });
809
-
810
- const res = await sdk.ticketing.updateTicketingCustomer({
811
- ticketingCustomer: {
812
- emails: [
813
- {
814
- email: "Mohamed.Friesen@hotmail.com",
815
- },
816
- ],
817
- raw: {
818
- "key": "<value>",
819
- },
820
- tags: [
821
- "<value>",
822
- ],
823
- telephones: [
824
- {
825
- telephone: "<value>",
826
- },
827
- ],
828
- },
829
- connectionId: "<value>",
830
- id: "<id>",
831
- });
832
-
833
- if (res.statusCode == 200) {
834
- // handle response
835
- }
836
- }
837
-
838
- run();
839
- ```
840
-
841
- ### Parameters
842
-
843
- | Parameter | Type | Required | Description |
844
- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
845
- | `request` | [operations.UpdateTicketingCustomerRequest](../../sdk/models/operations/updateticketingcustomerrequest.md) | :heavy_check_mark: | The request object to use for the request. |
846
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
847
-
848
-
849
- ### Response
850
-
851
- **Promise<[operations.UpdateTicketingCustomerResponse](../../sdk/models/operations/updateticketingcustomerresponse.md)>**
852
- ### Errors
853
-
854
- | Error Object | Status Code | Content Type |
855
- | --------------- | --------------- | --------------- |
856
- | errors.SDKError | 4xx-5xx | */* |
857
-
858
- ## updateTicketingNote
859
-
860
- Update a note
861
-
862
- ### Example Usage
863
-
864
- ```typescript
865
- import { UnifiedTo } from "@unified-api/typescript-sdk";
866
-
867
- async function run() {
868
- const sdk = new UnifiedTo({
869
- security: {
870
- jwt: "<YOUR_API_KEY_HERE>",
871
- },
872
- });
873
-
874
- const res = await sdk.ticketing.updateTicketingNote({
875
- ticketingNote: {
876
- raw: {
877
- "key": "<value>",
878
- },
879
- },
880
- connectionId: "<value>",
881
- id: "<id>",
882
- });
883
-
884
- if (res.statusCode == 200) {
885
- // handle response
886
- }
887
- }
888
-
889
- run();
890
- ```
891
-
892
- ### Parameters
893
-
894
- | Parameter | Type | Required | Description |
895
- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
896
- | `request` | [operations.UpdateTicketingNoteRequest](../../sdk/models/operations/updateticketingnoterequest.md) | :heavy_check_mark: | The request object to use for the request. |
897
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
898
-
899
-
900
- ### Response
901
-
902
- **Promise<[operations.UpdateTicketingNoteResponse](../../sdk/models/operations/updateticketingnoteresponse.md)>**
903
- ### Errors
904
-
905
- | Error Object | Status Code | Content Type |
906
- | --------------- | --------------- | --------------- |
907
- | errors.SDKError | 4xx-5xx | */* |
908
-
909
- ## updateTicketingTicket
910
-
911
- Update a ticket
912
-
913
- ### Example Usage
914
-
915
- ```typescript
916
- import { UnifiedTo } from "@unified-api/typescript-sdk";
917
- import { TicketingTicketStatus } from "@unified-api/typescript-sdk/dist/sdk/models/shared";
918
-
919
- async function run() {
920
- const sdk = new UnifiedTo({
921
- security: {
922
- jwt: "<YOUR_API_KEY_HERE>",
923
- },
924
- });
925
-
926
- const res = await sdk.ticketing.updateTicketingTicket({
927
- ticketingTicket: {
928
- raw: {
929
- "key": "<value>",
930
- },
931
- tags: [
932
- "<value>",
933
- ],
934
- },
935
- connectionId: "<value>",
936
- id: "<id>",
937
- });
938
-
939
- if (res.statusCode == 200) {
940
- // handle response
941
- }
942
- }
943
-
944
- run();
945
- ```
946
-
947
- ### Parameters
948
-
949
- | Parameter | Type | Required | Description |
950
- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ |
951
- | `request` | [operations.UpdateTicketingTicketRequest](../../sdk/models/operations/updateticketingticketrequest.md) | :heavy_check_mark: | The request object to use for the request. |
952
- | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
953
-
954
-
955
- ### Response
956
-
957
- **Promise<[operations.UpdateTicketingTicketResponse](../../sdk/models/operations/updateticketingticketresponse.md)>**
958
- ### Errors
959
-
960
- | Error Object | Status Code | Content Type |
961
- | --------------- | --------------- | --------------- |
962
- | errors.SDKError | 4xx-5xx | */* |