@gpt-platform/admin 0.1.1

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.
package/llms.txt ADDED
@@ -0,0 +1,1214 @@
1
+ # @gpt-platform/admin
2
+
3
+ > TypeScript Admin SDK for GPT Core - platform administration, webhooks, and system management.
4
+ > Version: 1.1
5
+ > WARNING: Server-side only. Never expose admin tokens in client code.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @gpt-platform/admin
11
+ ```
12
+
13
+ ## Setup
14
+
15
+ ```typescript
16
+ import { client } from '@gpt-platform/admin';
17
+
18
+ client.setConfig({
19
+ baseUrl: 'https://api.example.com/admin',
20
+ headers: {
21
+ Authorization: 'Bearer YOUR_TOKEN',
22
+ },
23
+ });
24
+ ```
25
+
26
+ ## Access log
27
+
28
+ - `getAccess-logs()` - List access logs
29
+ - `getAccess-logsById()` - Get access logs
30
+
31
+ ## Accounts
32
+
33
+ - `getAccounts()` - List accounts
34
+ - `getAccountsBy-tenantByTenantId()` - Get by tenant
35
+ - `getAccountsById()` - Get accounts
36
+ - `patchAccountsByIdCredit()` - Update credit
37
+ - `patchAccountsByIdDebit()` - Update debit
38
+
39
+ ## Agent stats
40
+
41
+ - `getAgentsByIdStats()` - Get stats
42
+
43
+ ## Agent test result
44
+
45
+ - `postAgent-test-results()` - Create agent test results
46
+
47
+ ## Agent training stats
48
+
49
+ - `getAgentsByIdTraining-stats()` - Get training stats
50
+
51
+ ## Agent usage
52
+
53
+ - `getAgentsByIdUsage()` - Get usage
54
+ - `getAgentsUsage()` - List usage
55
+
56
+ ## Agent version comparison
57
+
58
+ - `postAgent-version-comparisons()` - Create agent version comparisons
59
+
60
+ ## Agent version revision
61
+
62
+ - `getAgent-version-revisions()` - List agent version revisions
63
+ - `getAgent-version-revisionsById()` - Get agent version revisions
64
+
65
+ ## AI Agents
66
+
67
+ - `getAgent-versions()` - List agent versions
68
+ - `getAgent-versionsById()` - Get agent versions
69
+ - `getAgent-versionsByIdMetrics()` - Get metrics
70
+ - `getAgent-versionsByIdRevisions()` - Get revisions
71
+ - `getAgents()` - List agents
72
+ - `getAgentsById()` - Get agents
73
+ - `getAgentsByIdSchema-versions()` - Get schema versions
74
+ - `getAgentsByIdTraining-examples()` - Get training examples
75
+ - `postAgent-versions()` - Create agent versions
76
+ - `postAgent-versionsByIdAdd-system-field()` - Create add system field
77
+ - `postAgent-versionsByIdRemove-system-field()` - Create remove system field
78
+ - `postAgent-versionsByIdSet-system-fields()` - Create set system fields
79
+ - `postAgentsByIdAnalyze-training()` - Create analyze training
80
+ - `postAgentsByIdClone()` - Create clone
81
+ - `postAgentsByIdExport()` - Create export
82
+ - `postAgentsByIdPublish-version()` - Create publish version
83
+ - `postAgentsByIdRestore-version()` - Create restore version
84
+ - `postAgentsByIdSchema-versions()` - Create schema versions
85
+ - `postAgentsByIdSchema-versionsByVersionIdActivate()` - Create activate
86
+ - `postAgentsByIdTeach()` - Create teach
87
+ - `postAgentsByIdTest()` - Create test
88
+ - `postAgentsByIdValidate()` - Create validate
89
+ - `postAgentsClone-for-workspace()` - Create clone for workspace
90
+ - `postAgentsImport()` - Create import
91
+ - `postAgentsPredict()` - Create predict
92
+ - `patchAgentsByIdSchema-versionsByVersionId()` - Update schema versions
93
+ - `deleteAgent-versionsById()` - Delete agent versions
94
+ - `deleteAgentsByIdTraining-examplesByExampleId()` - Delete training examples
95
+
96
+ ## Ai config
97
+
98
+ - `getSysAi-config()` - List ai config
99
+ - `getSysAi-configById()` - Get ai config
100
+ - `postSysAi-config()` - Create ai config
101
+ - `patchSysAi-configById()` - Update ai config
102
+
103
+ ## AI Training
104
+
105
+ - `getTraining-examples()` - List training examples
106
+ - `getTraining-examplesById()` - Get training examples
107
+ - `getTraining-sessionsAgentsByAgentIdSessions()` - Get sessions
108
+ - `getTraining-sessionsById()` - Get training sessions
109
+ - `postTraining-examples()` - Create training examples
110
+ - `postTraining-examplesBulk()` - Create bulk
111
+ - `postTraining-examplesBulk-delete()` - Create bulk delete
112
+ - `postTraining-examplesSearch()` - Create search
113
+ - `patchTraining-examplesById()` - Update training examples
114
+ - `deleteTraining-examplesById()` - Delete training examples
115
+ - `deleteTraining-sessionsById()` - Delete training sessions
116
+
117
+ ## Analytics
118
+
119
+ - `getLlmAnalytics()` - List llm analytics
120
+ - `getLlmAnalyticsById()` - Get llm analytics
121
+ - `getLlmAnalyticsCosts()` - List costs
122
+ - `getLlmAnalyticsPlatform()` - List platform
123
+ - `getLlmAnalyticsSummary()` - List summary
124
+ - `getLlmAnalyticsUsage()` - List usage
125
+ - `getLlmAnalyticsWorkspace()` - List workspace
126
+ - `postLlmAnalytics()` - Create llm analytics
127
+
128
+ ## API Keys
129
+
130
+ - `getApi-keys()` - List api keys
131
+ - `getApi-keysActive()` - List active
132
+ - `getApi-keysById()` - Get api keys
133
+ - `getApi-keysStats()` - List stats
134
+ - `postApi-keys()` - Create api keys
135
+ - `patchApi-keysById()` - Update api keys
136
+ - `patchApi-keysByIdAllocate()` - Update allocate
137
+ - `patchApi-keysByIdReset-period()` - Update reset period
138
+ - `patchApi-keysByIdRevoke()` - Update revoke
139
+ - `patchApi-keysByIdRotate()` - Update rotate
140
+ - `patchApi-keysByIdSet-budget()` - Update set budget
141
+ - `deleteApi-keysById()` - Delete api keys
142
+
143
+ ## Applications
144
+
145
+ - `getApplications()` - List applications
146
+ - `getApplicationsBy-slugBySlug()` - Get by slug
147
+ - `getApplicationsById()` - Get applications
148
+ - `getApplicationsCurrent()` - List current
149
+ - `postApplications()` - Create applications
150
+ - `patchApplicationsById()` - Update applications
151
+ - `patchApplicationsByIdAllocate-credits()` - Update allocate credits
152
+ - `patchApplicationsByIdGrant-credits()` - Update grant credits
153
+ - `deleteApplicationsById()` - Delete applications
154
+
155
+ ## Audit chain entry
156
+
157
+ - `getAudit-chain-entries()` - List audit chain entries
158
+ - `getAudit-chain-entriesById()` - Get audit chain entries
159
+
160
+ ## Audit-log
161
+
162
+ - `getAudit-logs()` - List audit logs
163
+ - `getAudit-logsActivity()` - List activity
164
+
165
+ ## Balance
166
+
167
+ - `getBalances()` - List balances
168
+ - `getBalancesById()` - Get balances
169
+
170
+ ## Billing
171
+
172
+ - `getCredit-packages()` - List credit packages
173
+ - `getCredit-packagesById()` - Get credit packages
174
+ - `getCredit-packagesSlugBySlug()` - Get slug
175
+ - `getPlans()` - List plans
176
+ - `getPlansById()` - Get plans
177
+ - `getPlansSlugBySlug()` - Get slug
178
+ - `getSubscriptions()` - List subscriptions
179
+ - `getSubscriptionsBy-tenantByTenantId()` - Get by tenant
180
+ - `getSubscriptionsById()` - Get subscriptions
181
+ - `getWallet()` - List wallet
182
+ - `getWalletStorage-breakdown()` - List storage breakdown
183
+ - `getWalletUsage()` - List usage
184
+ - `getWalletUsage-breakdown()` - List usage breakdown
185
+ - `postCredit-packages()` - Create credit packages
186
+ - `postPlans()` - Create plans
187
+ - `postSubscriptions()` - Create subscriptions
188
+ - `patchCredit-packagesById()` - Update credit packages
189
+ - `patchPlansById()` - Update plans
190
+ - `patchSubscriptionsById()` - Update subscriptions
191
+ - `patchSubscriptionsByIdCancel()` - Update cancel
192
+ - `patchWalletAddons()` - Update addons
193
+ - `patchWalletAddonsByAddonSlugCancel()` - Update cancel
194
+ - `patchWalletCredits()` - Update credits
195
+ - `patchWalletPlan()` - Update plan
196
+ - `patchWalletStorage()` - Update storage
197
+ - `deleteCredit-packagesById()` - Delete credit packages
198
+ - `deletePlansById()` - Delete plans
199
+ - `deleteSubscriptionsById()` - Delete subscriptions
200
+
201
+ ## Breach incident
202
+
203
+ - `getBreach-incidents()` - List breach incidents
204
+ - `getBreach-incidentsById()` - Get breach incidents
205
+ - `postBreach-incidents()` - Create breach incidents
206
+ - `patchBreach-incidentsByIdStatus()` - Update status
207
+
208
+ ## Breach notification
209
+
210
+ - `getBreach-notifications()` - List breach notifications
211
+ - `getBreach-notificationsById()` - Get breach notifications
212
+
213
+ ## Bulk dismissal result
214
+
215
+ - `postWorkspacesByWorkspaceIdExtractionDocumentsDismiss-all-trained()` - Create dismiss all trained
216
+
217
+ ## Bulk reprocess result
218
+
219
+ - `postExtractionDocumentsBulk-reprocess()` - Create bulk reprocess
220
+
221
+ ## Catalog classification suggestion
222
+
223
+ - `getCatalogClassification-suggestionsById()` - Get classification suggestions
224
+ - `getCatalogClassification-suggestionsWorkspaceByWorkspaceIdPending()` - Get pending
225
+ - `patchCatalogClassification-suggestionsByIdAccept()` - Update accept
226
+ - `patchCatalogClassification-suggestionsByIdReject()` - Update reject
227
+
228
+ ## Catalog option type
229
+
230
+ - `getCatalogOption-typesApplicationByApplicationId()` - Get application
231
+ - `getCatalogOption-typesById()` - Get option types
232
+ - `postCatalogOption-types()` - Create option types
233
+ - `patchCatalogOption-typesById()` - Update option types
234
+ - `deleteCatalogOption-typesById()` - Delete option types
235
+
236
+ ## Catalog option value
237
+
238
+ - `getCatalogOption-valuesById()` - Get option values
239
+ - `getCatalogOption-valuesOption-typeByOptionTypeId()` - Get option type
240
+ - `postCatalogOption-values()` - Create option values
241
+ - `patchCatalogOption-valuesById()` - Update option values
242
+ - `deleteCatalogOption-valuesById()` - Delete option values
243
+
244
+ ## Catalog price list
245
+
246
+ - `getCatalogPrice-listsApplicationByApplicationId()` - Get application
247
+ - `getCatalogPrice-listsById()` - Get price lists
248
+ - `postCatalogPrice-lists()` - Create price lists
249
+ - `patchCatalogPrice-listsById()` - Update price lists
250
+ - `deleteCatalogPrice-listsById()` - Delete price lists
251
+
252
+ ## Catalog price list entry
253
+
254
+ - `getCatalogPrice-list-entriesPrice-listByPriceListId()` - Get price list
255
+ - `postCatalogPrice-list-entries()` - Create price list entries
256
+ - `patchCatalogPrice-list-entriesById()` - Update price list entries
257
+ - `deleteCatalogPrice-list-entriesById()` - Delete price list entries
258
+
259
+ ## Catalog price suggestion
260
+
261
+ - `getCatalogPrice-suggestionsById()` - Get price suggestions
262
+ - `getCatalogPrice-suggestionsWorkspaceByWorkspaceId()` - Get workspace
263
+ - `patchCatalogPrice-suggestionsByIdAccept()` - Update accept
264
+ - `patchCatalogPrice-suggestionsByIdReject()` - Update reject
265
+
266
+ ## Catalog product
267
+
268
+ - `getCatalogProductsById()` - Get products
269
+ - `getCatalogProductsWorkspaceByWorkspaceId()` - Get workspace
270
+ - `postCatalogProducts()` - Create products
271
+ - `patchCatalogProductsById()` - Update products
272
+ - `deleteCatalogProductsById()` - Delete products
273
+
274
+ ## Catalog product classification
275
+
276
+ - `postCatalogProduct-classifications()` - Create product classifications
277
+ - `deleteCatalogProduct-classificationsById()` - Delete product classifications
278
+
279
+ ## Catalog product variant
280
+
281
+ - `getCatalogProduct-variantsById()` - Get product variants
282
+ - `getCatalogProduct-variantsProductByProductId()` - Get product
283
+ - `postCatalogProduct-variants()` - Create product variants
284
+ - `patchCatalogProduct-variantsById()` - Update product variants
285
+ - `deleteCatalogProduct-variantsById()` - Delete product variants
286
+
287
+ ## Catalog stock location
288
+
289
+ - `getCatalogStock-locationsById()` - Get stock locations
290
+ - `getCatalogStock-locationsWorkspaceByWorkspaceId()` - Get workspace
291
+ - `postCatalogStock-locations()` - Create stock locations
292
+ - `patchCatalogStock-locationsById()` - Update stock locations
293
+
294
+ ## Catalog stock movement
295
+
296
+ - `getCatalogStock-movementsById()` - Get stock movements
297
+ - `getCatalogStock-movementsTransactionByTransactionId()` - Get transaction
298
+
299
+ ## Catalog stock record
300
+
301
+ - `getCatalogStock-recordsById()` - Get stock records
302
+ - `getCatalogStock-recordsLocationByStockLocationId()` - Get location
303
+
304
+ ## Catalog taxonomy
305
+
306
+ - `getCatalogTaxonomiesApplicationByApplicationId()` - Get application
307
+ - `getCatalogTaxonomiesById()` - Get taxonomies
308
+ - `postCatalogTaxonomies()` - Create taxonomies
309
+ - `patchCatalogTaxonomiesById()` - Update taxonomies
310
+ - `deleteCatalogTaxonomiesById()` - Delete taxonomies
311
+
312
+ ## Catalog taxonomy node
313
+
314
+ - `getCatalogTaxonomy-nodesById()` - Get taxonomy nodes
315
+ - `getCatalogTaxonomy-nodesTaxonomyByTaxonomyId()` - Get taxonomy
316
+ - `postCatalogTaxonomy-nodes()` - Create taxonomy nodes
317
+ - `patchCatalogTaxonomy-nodesById()` - Update taxonomy nodes
318
+ - `deleteCatalogTaxonomy-nodesById()` - Delete taxonomy nodes
319
+
320
+ ## Catalog variant option value
321
+
322
+ - `postCatalogVariant-option-values()` - Create variant option values
323
+ - `deleteCatalogVariant-option-valuesById()` - Delete variant option values
324
+
325
+ ## Catalog view
326
+
327
+ - `getCatalogViewsById()` - Get views
328
+ - `getCatalogViewsWorkspaceByWorkspaceId()` - Get workspace
329
+ - `postCatalogViews()` - Create views
330
+ - `patchCatalogViewsById()` - Update views
331
+ - `deleteCatalogViewsById()` - Delete views
332
+
333
+ ## Catalog view override
334
+
335
+ - `postCatalogView-overrides()` - Create view overrides
336
+ - `patchCatalogView-overridesById()` - Update view overrides
337
+ - `deleteCatalogView-overridesById()` - Delete view overrides
338
+
339
+ ## Catalog view rule
340
+
341
+ - `postCatalogView-rules()` - Create view rules
342
+ - `deleteCatalogView-rulesById()` - Delete view rules
343
+
344
+ ## Config
345
+
346
+ - `getConfigs()` - List configs
347
+ - `postConfigs()` - Create configs
348
+ - `patchConfigsByKey()` - Update configs
349
+
350
+ ## Config enum
351
+
352
+ - `getExtractionConfig-enums()` - List config enums
353
+ - `getExtractionConfig-enumsById()` - Get config enums
354
+ - `postExtractionConfig-enums()` - Create config enums
355
+ - `patchExtractionConfig-enumsById()` - Update config enums
356
+
357
+ ## Consent record
358
+
359
+ - `getConsent-records()` - List consent records
360
+ - `getConsent-recordsActive()` - List active
361
+ - `getConsent-recordsById()` - Get consent records
362
+ - `postConsent-records()` - Create consent records
363
+ - `patchConsent-recordsByIdWithdraw()` - Update withdraw
364
+
365
+ ## Conversations
366
+
367
+ - `getAiConversations()` - List conversations
368
+ - `getAiConversationsById()` - Get conversations
369
+ - `postAiConversations()` - Create conversations
370
+ - `patchAiConversationsById()` - Update conversations
371
+ - `deleteAiConversationsById()` - Delete conversations
372
+
373
+ ## Crawler job
374
+
375
+ - `getCrawlerJobs()` - List jobs
376
+ - `getCrawlerJobsById()` - Get jobs
377
+ - `postCrawlerJobs()` - Create jobs
378
+ - `patchCrawlerJobsByIdCancel()` - Update cancel
379
+ - `deleteCrawlerJobsById()` - Delete jobs
380
+
381
+ ## Crawler result
382
+
383
+ - `getCrawlerResults()` - List results
384
+ - `getCrawlerResultsById()` - Get results
385
+
386
+ ## Crawler schedule
387
+
388
+ - `getCrawlerSchedules()` - List schedules
389
+ - `getCrawlerSchedulesById()` - Get schedules
390
+ - `postCrawlerSchedules()` - Create schedules
391
+ - `patchCrawlerSchedulesById()` - Update schedules
392
+ - `patchCrawlerSchedulesByIdDisable()` - Update disable
393
+ - `patchCrawlerSchedulesByIdEnable()` - Update enable
394
+ - `patchCrawlerSchedulesByIdTrigger()` - Update trigger
395
+ - `deleteCrawlerSchedulesById()` - Delete schedules
396
+
397
+ ## Crawler site config
398
+
399
+ - `getCrawlerSite-configs()` - List site configs
400
+ - `getCrawlerSite-configsById()` - Get site configs
401
+ - `postCrawlerSite-configs()` - Create site configs
402
+ - `patchCrawlerSite-configsById()` - Update site configs
403
+ - `deleteCrawlerSite-configsById()` - Delete site configs
404
+
405
+ ## Crm activity
406
+
407
+ - `getCrmActivitiesById()` - Get activities
408
+ - `getCrmActivitiesWorkspaceByWorkspaceId()` - Get workspace
409
+ - `postCrmActivities()` - Create activities
410
+ - `deleteCrmActivitiesById()` - Delete activities
411
+
412
+ ## Crm channel capture config
413
+
414
+ - `getIsvCrmChannel-capture-configById()` - Get channel capture config
415
+ - `postIsvCrmChannel-capture-config()` - Create channel capture config
416
+ - `patchIsvCrmChannel-capture-configById()` - Update channel capture config
417
+
418
+ ## Crm company
419
+
420
+ - `getCrmCompaniesById()` - Get companies
421
+ - `getCrmCompaniesWorkspaceByWorkspaceId()` - Get workspace
422
+ - `postCrmCompanies()` - Create companies
423
+ - `patchCrmCompaniesById()` - Update companies
424
+ - `deleteCrmCompaniesById()` - Delete companies
425
+
426
+ ## Crm contact
427
+
428
+ - `getCrmContactsById()` - Get contacts
429
+ - `getCrmContactsWorkspaceByWorkspaceId()` - Get workspace
430
+ - `postCrmContacts()` - Create contacts
431
+ - `patchCrmContactsById()` - Update contacts
432
+ - `deleteCrmContactsById()` - Delete contacts
433
+
434
+ ## Crm custom entity
435
+
436
+ - `getCrmCustom-entitiesById()` - Get custom entities
437
+ - `getCrmCustom-entitiesWorkspaceByWorkspaceId()` - Get workspace
438
+ - `postCrmCustom-entities()` - Create custom entities
439
+ - `patchCrmCustom-entitiesById()` - Update custom entities
440
+ - `deleteCrmCustom-entitiesById()` - Delete custom entities
441
+
442
+ ## Crm custom entity type
443
+
444
+ - `getIsvCrmEntity-typesApplicationByApplicationId()` - Get application
445
+ - `getIsvCrmEntity-typesById()` - Get entity types
446
+ - `postIsvCrmEntity-types()` - Create entity types
447
+ - `patchIsvCrmEntity-typesById()` - Update entity types
448
+ - `deleteIsvCrmEntity-typesById()` - Delete entity types
449
+
450
+ ## Crm custom field definition
451
+
452
+ - `getIsvCrmField-definitionsEntity-typeByEntityType()` - Get entity type
453
+ - `postIsvCrmField-definitions()` - Create field definitions
454
+ - `patchIsvCrmField-definitionsById()` - Update field definitions
455
+ - `deleteIsvCrmField-definitionsById()` - Delete field definitions
456
+
457
+ ## Crm deal
458
+
459
+ - `getCrmDealsById()` - Get deals
460
+ - `getCrmDealsWorkspaceByWorkspaceId()` - Get workspace
461
+ - `postCrmDeals()` - Create deals
462
+ - `patchCrmDealsById()` - Update deals
463
+ - `deleteCrmDealsById()` - Delete deals
464
+
465
+ ## Crm deal product
466
+
467
+ - `getCrmDeal-products()` - List deal products
468
+ - `postCrmDeal-products()` - Create deal products
469
+ - `deleteCrmDeal-productsById()` - Delete deal products
470
+
471
+ ## Crm pipeline
472
+
473
+ - `getCrmPipelinesById()` - Get pipelines
474
+ - `getCrmPipelinesWorkspaceByWorkspaceId()` - Get workspace
475
+ - `postCrmPipelines()` - Create pipelines
476
+ - `patchCrmPipelinesById()` - Update pipelines
477
+ - `deleteCrmPipelinesById()` - Delete pipelines
478
+
479
+ ## Crm pipeline stage
480
+
481
+ - `getCrmPipeline-stagesById()` - Get pipeline stages
482
+ - `postCrmPipeline-stages()` - Create pipeline stages
483
+ - `patchCrmPipeline-stagesById()` - Update pipeline stages
484
+ - `deleteCrmPipeline-stagesById()` - Delete pipeline stages
485
+
486
+ ## Crm relationship
487
+
488
+ - `getCrmRelationshipsById()` - Get relationships
489
+ - `getCrmRelationshipsWorkspaceByWorkspaceId()` - Get workspace
490
+ - `postCrmRelationships()` - Create relationships
491
+ - `deleteCrmRelationshipsById()` - Delete relationships
492
+
493
+ ## Crm relationship type
494
+
495
+ - `getCrmRelationship-types()` - List relationship types
496
+ - `getCrmRelationship-typesById()` - Get relationship types
497
+ - `postCrmRelationship-types()` - Create relationship types
498
+ - `patchCrmRelationship-typesById()` - Update relationship types
499
+ - `deleteCrmRelationship-typesById()` - Delete relationship types
500
+
501
+ ## Crm sync config
502
+
503
+ - `getIsvCrmSync-configsWorkspaceByWorkspaceId()` - Get workspace
504
+ - `postIsvCrmSync-configs()` - Create sync configs
505
+ - `patchIsvCrmSync-configsById()` - Update sync configs
506
+ - `deleteIsvCrmSync-configsById()` - Delete sync configs
507
+
508
+ ## Customer
509
+
510
+ - `getCustomersById()` - Get customers
511
+ - `postCustomers()` - Create customers
512
+ - `patchCustomersById()` - Update customers
513
+ - `deleteCustomersById()` - Delete customers
514
+
515
+ ## Data protection impact assessment
516
+
517
+ - `getImpact-assessments()` - List impact assessments
518
+ - `getImpact-assessmentsById()` - Get impact assessments
519
+ - `postImpact-assessments()` - Create impact assessments
520
+ - `patchImpact-assessmentsById()` - Update impact assessments
521
+ - `patchImpact-assessmentsByIdApprove()` - Update approve
522
+
523
+ ## Data subject request
524
+
525
+ - `getData-subject-requests()` - List data subject requests
526
+ - `getData-subject-requestsById()` - Get data subject requests
527
+ - `postData-subject-requests()` - Create data subject requests
528
+ - `patchData-subject-requestsByIdStatus()` - Update status
529
+
530
+ ## Document chunk
531
+
532
+ - `getAiChunksDocumentByDocumentId()` - Get document
533
+ - `postAiChunksSearch()` - Create search
534
+
535
+ ## Document Extraction
536
+
537
+ - `getExtractionDocuments()` - List documents
538
+ - `getExtractionDocumentsById()` - Get documents
539
+ - `getExtractionDocumentsByIdStatus()` - Get status
540
+ - `getExtractionDocumentsByIdView()` - Get view
541
+ - `getExtractionDocumentsWorkspaceByWorkspaceId()` - Get workspace
542
+ - `getExtractionDocumentsWorkspaceByWorkspaceIdBy-statusByStatus()` - Get by status
543
+ - `getExtractionDocumentsWorkspaceByWorkspaceIdExcluded()` - Get excluded
544
+ - `getExtractionDocumentsWorkspaceByWorkspaceIdReview-queue()` - Get review queue
545
+ - `getExtractionDocumentsWorkspaceByWorkspaceIdTrained()` - Get trained
546
+ - `getExtractionDocumentsWorkspaceByWorkspaceIdTrashed()` - Get trashed
547
+ - `postExtractionDocumentsBegin-upload()` - Create begin upload
548
+ - `postExtractionDocumentsFind-or-begin-upload()` - Create find or begin upload
549
+ - `postExtractionDocumentsUpload()` - Create upload
550
+ - `patchExtractionDocumentsByIdCancel()` - Update cancel
551
+ - `patchExtractionDocumentsByIdDismiss()` - Update dismiss
552
+ - `patchExtractionDocumentsByIdDismiss-training()` - Update dismiss training
553
+ - `patchExtractionDocumentsByIdExclude()` - Update exclude
554
+ - `patchExtractionDocumentsByIdFinish-upload()` - Update finish upload
555
+ - `patchExtractionDocumentsByIdInclude()` - Update include
556
+ - `patchExtractionDocumentsByIdMark-trained()` - Update mark trained
557
+ - `patchExtractionDocumentsByIdReprocess()` - Update reprocess
558
+ - `patchExtractionDocumentsByIdRestore()` - Update restore
559
+ - `patchExtractionDocumentsByIdStatus()` - Update status
560
+ - `patchExtractionDocumentsByIdVerification()` - Update verification
561
+ - `deleteExtractionDocumentsById()` - Delete documents
562
+
563
+ ## Document stats
564
+
565
+ - `getDocumentsStats()` - List stats
566
+
567
+ ## Email template
568
+
569
+ - `getApplicationsByApplicationIdEmail-templates()` - Get email templates
570
+ - `getApplicationsByApplicationIdEmail-templatesBySlug()` - Get email templates
571
+ - `postApplicationsByApplicationIdEmail-templates()` - Create email templates
572
+ - `postApplicationsByApplicationIdEmail-templatesBySlugPreview()` - Create preview
573
+ - `postApplicationsByApplicationIdEmail-templatesBySlugTest()` - Create test
574
+ - `patchApplicationsByApplicationIdEmail-templatesBySlug()` - Update email templates
575
+ - `deleteApplicationsByApplicationIdEmail-templatesBySlug()` - Delete email templates
576
+
577
+ ## Email-marketing-campaign
578
+
579
+ - `getEmail-marketingCampaignsById()` - Get campaigns
580
+ - `getEmail-marketingCampaignsWorkspaceByWorkspaceId()` - Get workspace
581
+ - `postEmail-marketingCampaigns()` - Create campaigns
582
+ - `postEmail-marketingCampaignsByIdAnalyze()` - Create analyze
583
+ - `postEmail-marketingCampaignsByIdCreate-followup()` - Create create followup
584
+ - `postEmail-marketingCampaignsByIdExport()` - Create export
585
+ - `postEmail-marketingCampaignsByIdGenerate-emails()` - Create generate emails
586
+ - `postEmail-marketingCampaignsByIdImport-recipients()` - Create import recipients
587
+ - `postEmail-marketingCampaignsByIdOptimize-send-times()` - Create optimize send times
588
+ - `postEmail-marketingCampaignsByIdOptimize-subjects()` - Create optimize subjects
589
+ - `postEmail-marketingCampaignsByIdSend()` - Create send
590
+ - `patchEmail-marketingCampaignsById()` - Update campaigns
591
+ - `deleteEmail-marketingCampaignsById()` - Delete campaigns
592
+
593
+ ## Email-marketing-generated-email
594
+
595
+ - `getEmail-marketingGenerated-emailsById()` - Get generated emails
596
+ - `getEmail-marketingGenerated-emailsCampaignByCampaignId()` - Get campaign
597
+ - `patchEmail-marketingGenerated-emailsById()` - Update generated emails
598
+ - `patchEmail-marketingGenerated-emailsByIdApprove()` - Update approve
599
+ - `patchEmail-marketingGenerated-emailsByIdReject()` - Update reject
600
+ - `patchEmail-marketingGenerated-emailsByIdSchedule()` - Update schedule
601
+
602
+ ## Email-marketing-recipient
603
+
604
+ - `getEmail-marketingRecipientsById()` - Get recipients
605
+ - `getEmail-marketingRecipientsCampaignByCampaignId()` - Get campaign
606
+
607
+ ## Email-marketing-send-limit
608
+
609
+ - `getEmail-marketingSend-limitsById()` - Get send limits
610
+ - `getEmail-marketingSend-limitsWorkspaceByWorkspaceId()` - Get workspace
611
+
612
+ ## Email-marketing-sender-profile
613
+
614
+ - `getEmail-marketingSender-profilesById()` - Get sender profiles
615
+ - `getEmail-marketingSender-profilesWorkspaceByWorkspaceId()` - Get workspace
616
+ - `postEmail-marketingSender-profiles()` - Create sender profiles
617
+ - `patchEmail-marketingSender-profilesById()` - Update sender profiles
618
+ - `patchEmail-marketingSender-profilesByIdValidate-dns()` - Update validate dns
619
+ - `deleteEmail-marketingSender-profilesById()` - Delete sender profiles
620
+
621
+ ## Email-marketing-sequence
622
+
623
+ - `getEmail-marketingSequencesById()` - Get sequences
624
+ - `getEmail-marketingSequencesWorkspaceByWorkspaceId()` - Get workspace
625
+ - `postEmail-marketingSequences()` - Create sequences
626
+ - `patchEmail-marketingSequencesById()` - Update sequences
627
+ - `patchEmail-marketingSequencesByIdActivate()` - Update activate
628
+ - `patchEmail-marketingSequencesByIdComplete()` - Update complete
629
+ - `patchEmail-marketingSequencesByIdPause()` - Update pause
630
+ - `patchEmail-marketingSequencesByIdResume()` - Update resume
631
+ - `deleteEmail-marketingSequencesById()` - Delete sequences
632
+
633
+ ## Email-marketing-sequence-step
634
+
635
+ - `getEmail-marketingSequence-stepsById()` - Get sequence steps
636
+ - `getEmail-marketingSequence-stepsSequenceBySequenceId()` - Get sequence
637
+ - `postEmail-marketingSequence-steps()` - Create sequence steps
638
+ - `patchEmail-marketingSequence-stepsById()` - Update sequence steps
639
+ - `deleteEmail-marketingSequence-stepsById()` - Delete sequence steps
640
+
641
+ ## Email-marketing-template
642
+
643
+ - `getEmail-marketingTemplatesById()` - Get templates
644
+ - `getEmail-marketingTemplatesWorkspaceByWorkspaceId()` - Get workspace
645
+ - `postEmail-marketingTemplates()` - Create templates
646
+ - `patchEmail-marketingTemplatesById()` - Update templates
647
+ - `patchEmail-marketingTemplatesByIdArchive()` - Update archive
648
+ - `patchEmail-marketingTemplatesByIdRestore()` - Update restore
649
+ - `deleteEmail-marketingTemplatesById()` - Delete templates
650
+
651
+ ## Email-marketing-tracking-event
652
+
653
+ - `getEmail-marketingTracking-eventsById()` - Get tracking events
654
+ - `getEmail-marketingTracking-eventsCampaignByCampaignId()` - Get campaign
655
+
656
+ ## Email-marketing-unsubscriber
657
+
658
+ - `getEmail-marketingUnsubscribersById()` - Get unsubscribers
659
+ - `getEmail-marketingUnsubscribersWorkspaceByWorkspaceId()` - Get workspace
660
+
661
+ ## Embedding
662
+
663
+ - `postAiEmbed()` - Create embed
664
+
665
+ ## Extraction Batches
666
+
667
+ - `getExtractionBatchesById()` - Get batches
668
+ - `getExtractionBatchesByIdUpload-urls()` - Get upload urls
669
+ - `getExtractionBatchesWorkspaceByWorkspaceId()` - Get workspace
670
+ - `postExtractionBatches()` - Create batches
671
+ - `deleteExtractionBatchesById()` - Delete batches
672
+
673
+ ## Extraction export
674
+
675
+ - `getWorkspacesByWorkspaceIdExtractionExports()` - Get exports
676
+ - `getWorkspacesByWorkspaceIdExtractionExportsById()` - Get exports
677
+ - `postWorkspacesByWorkspaceIdExtractionExports()` - Create exports
678
+
679
+ ## Extraction Results
680
+
681
+ - `getExtractionResults()` - List results
682
+ - `getExtractionResultsById()` - Get results
683
+ - `getExtractionResultsDocumentByDocumentId()` - Get document
684
+ - `getExtractionResultsDocumentByDocumentIdHistory()` - Get history
685
+ - `getExtractionResultsWorkspaceByWorkspaceId()` - Get workspace
686
+ - `patchExtractionResultsById()` - Update results
687
+ - `patchExtractionResultsByIdRegenerate()` - Update regenerate
688
+ - `patchExtractionResultsByIdSave-corrections()` - Update save corrections
689
+ - `deleteExtractionResultsById()` - Delete results
690
+
691
+ ## Field mapping confirmation
692
+
693
+ - `postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping()` - Create mapping
694
+
695
+ ## Field mapping result
696
+
697
+ - `getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping()` - Get mapping
698
+
699
+ ## Field Templates
700
+
701
+ - `getField-templates()` - List field templates
702
+ - `getField-templatesById()` - Get field templates
703
+ - `postField-templates()` - Create field templates
704
+ - `deleteField-templatesById()` - Delete field templates
705
+
706
+ ## Invitations
707
+
708
+ - `getInvitations()` - List invitations
709
+ - `getInvitationsConsumeByToken()` - Get consume
710
+ - `getInvitationsMe()` - List me
711
+ - `postInvitations()` - Create invitations
712
+ - `postInvitationsAccept-by-token()` - Create accept by token
713
+ - `patchInvitationsByIdAccept()` - Update accept
714
+ - `patchInvitationsByIdAccept-by-user()` - Update accept by user
715
+ - `patchInvitationsByIdDecline()` - Update decline
716
+ - `patchInvitationsByIdResend()` - Update resend
717
+ - `patchInvitationsByIdRevoke()` - Update revoke
718
+
719
+ ## Isv revenue
720
+
721
+ - `getIsv-revenue()` - List isv revenue
722
+ - `getIsv-revenueById()` - Get isv revenue
723
+ - `postIsv-revenue()` - Create isv revenue
724
+
725
+ ## Isv settlement
726
+
727
+ - `getIsv-settlements()` - List isv settlements
728
+ - `getIsv-settlementsById()` - Get isv settlements
729
+ - `postIsv-settlements()` - Create isv settlements
730
+ - `patchIsv-settlementsById()` - Update isv settlements
731
+
732
+ ## Knowledge Graph
733
+
734
+ - `getAiGraphNodes()` - List nodes
735
+ - `getAiGraphNodesLabelByLabel()` - Get label
736
+ - `postAiGraphNodes()` - Create nodes
737
+ - `deleteAiGraphNodesById()` - Delete nodes
738
+
739
+ ## Ledger
740
+
741
+ - `getLedger()` - List ledger
742
+ - `getLedgerBy-accountByAccountId()` - Get by account
743
+ - `getLedgerById()` - Get ledger
744
+
745
+ ## Legal acceptance
746
+
747
+ - `getLegal-acceptances()` - List legal acceptances
748
+ - `getLegal-acceptancesById()` - Get legal acceptances
749
+ - `getLegal-acceptancesLatest()` - List latest
750
+
751
+ ## Legal document
752
+
753
+ - `getLegal-documents()` - List legal documents
754
+ - `getLegal-documentsBy-locale()` - List by locale
755
+ - `getLegal-documentsById()` - Get legal documents
756
+ - `getLegal-documentsFor-application()` - List for application
757
+ - `postLegal-documents()` - Create legal documents
758
+ - `patchLegal-documentsById()` - Update legal documents
759
+ - `patchLegal-documentsByIdPublish()` - Update publish
760
+ - `patchLegal-documentsByIdUnpublish()` - Update unpublish
761
+ - `deleteLegal-documentsById()` - Delete legal documents
762
+
763
+ ## Messages
764
+
765
+ - `getAiMessages()` - List messages
766
+ - `getMessages()` - List messages
767
+ - `getMessagesById()` - Get messages
768
+ - `getMessagesSearch()` - List search
769
+ - `getMessagesSemantic-search()` - List semantic search
770
+ - `getThreadsByIdMessages()` - Get messages
771
+ - `postAiMessages()` - Create messages
772
+ - `postMessages()` - Create messages
773
+ - `patchMessagesById()` - Update messages
774
+ - `deleteAiMessagesById()` - Delete messages
775
+ - `deleteMessagesById()` - Delete messages
776
+
777
+ ## Notification log
778
+
779
+ - `getNotification-logs()` - List notification logs
780
+ - `getNotification-logsById()` - Get notification logs
781
+ - `getNotification-logsStats()` - List stats
782
+
783
+ ## Notification method
784
+
785
+ - `getNotification-methods()` - List notification methods
786
+ - `getNotification-methodsById()` - Get notification methods
787
+ - `postNotification-methods()` - Create notification methods
788
+ - `patchNotification-methodsById()` - Update notification methods
789
+ - `patchNotification-methodsByIdSend-verification()` - Update send verification
790
+ - `patchNotification-methodsByIdSet-primary()` - Update set primary
791
+ - `patchNotification-methodsByIdVerify()` - Update verify
792
+ - `deleteNotification-methodsById()` - Delete notification methods
793
+
794
+ ## Notification preference
795
+
796
+ - `getNotification-preferences()` - List notification preferences
797
+ - `getNotification-preferencesById()` - Get notification preferences
798
+ - `postNotification-preferences()` - Create notification preferences
799
+ - `patchNotification-preferencesById()` - Update notification preferences
800
+ - `deleteNotification-preferencesById()` - Delete notification preferences
801
+
802
+ ## Operation success
803
+
804
+ - `postDocumentsBulk-delete()` - Create bulk delete
805
+
806
+ ## Payment method
807
+
808
+ - `getPayment-methods()` - List payment methods
809
+ - `getPayment-methodsById()` - Get payment methods
810
+ - `postPayment-methods()` - Create payment methods
811
+ - `postPayment-methodsTokenize()` - Create tokenize
812
+ - `patchPayment-methodsById()` - Update payment methods
813
+ - `patchPayment-methodsByIdDefault()` - Update default
814
+ - `deletePayment-methodsById()` - Delete payment methods
815
+
816
+ ## Permission
817
+
818
+ - `getPermissions()` - List permissions
819
+ - `getPermissionsById()` - Get permissions
820
+ - `getPermissionsPresets()` - List presets
821
+
822
+ ## Permission meta
823
+
824
+ - `getPermissionsMeta()` - List meta
825
+
826
+ ## Permission preset
827
+
828
+ - `getPermissionsPresetsById()` - Get presets
829
+
830
+ ## Platform-pricing-config
831
+
832
+ - `getPlatform-pricing-configs()` - List platform pricing configs
833
+ - `getPlatform-pricing-configsById()` - Get platform pricing configs
834
+ - `postPlatform-pricing-configs()` - Create platform pricing configs
835
+ - `patchPlatform-pricing-configsById()` - Update platform pricing configs
836
+ - `deletePlatform-pricing-configsById()` - Delete platform pricing configs
837
+
838
+ ## Presigned url
839
+
840
+ - `postDocumentsPresigned-upload()` - Create presigned upload
841
+ - `postStorageSign-download()` - Create sign download
842
+ - `postStorageSign-upload()` - Create sign upload
843
+
844
+ ## Pricing rule
845
+
846
+ - `getPricing-rules()` - List pricing rules
847
+ - `getPricing-rulesById()` - Get pricing rules
848
+ - `getPricing-rulesResolve()` - List resolve
849
+ - `postPricing-rules()` - Create pricing rules
850
+ - `patchPricing-rulesById()` - Update pricing rules
851
+
852
+ ## Pricing strategy
853
+
854
+ - `getPricing-strategies()` - List pricing strategies
855
+ - `getPricing-strategiesById()` - Get pricing strategies
856
+ - `postPricing-strategies()` - Create pricing strategies
857
+ - `patchPricing-strategiesById()` - Update pricing strategies
858
+
859
+ ## Processing activity
860
+
861
+ - `getProcessing-activities()` - List processing activities
862
+ - `getProcessing-activitiesById()` - Get processing activities
863
+ - `postProcessing-activities()` - Create processing activities
864
+ - `deleteProcessing-activitiesById()` - Delete processing activities
865
+
866
+ ## Retention policy
867
+
868
+ - `getRetention-policies()` - List retention policies
869
+ - `getRetention-policiesById()` - Get retention policies
870
+ - `postRetention-policies()` - Create retention policies
871
+ - `patchRetention-policiesById()` - Update retention policies
872
+ - `deleteRetention-policiesById()` - Delete retention policies
873
+
874
+ ## Role
875
+
876
+ - `getRoles()` - List roles
877
+ - `postRoles()` - Create roles
878
+ - `patchRolesById()` - Update roles
879
+ - `deleteRolesById()` - Delete roles
880
+
881
+ ## Scan result
882
+
883
+ - `getScan-results()` - List scan results
884
+ - `getScan-resultsById()` - Get scan results
885
+
886
+ ## Scheduling availability rule
887
+
888
+ - `getSchedulingAvailability-rules()` - List availability rules
889
+ - `getSchedulingAvailability-rulesById()` - Get availability rules
890
+ - `postSchedulingAvailability-rules()` - Create availability rules
891
+ - `patchSchedulingAvailability-rulesById()` - Update availability rules
892
+
893
+ ## Scheduling booking
894
+
895
+ - `getSchedulingBookings()` - List bookings
896
+ - `getSchedulingBookingsById()` - Get bookings
897
+ - `postSchedulingBookings()` - Create bookings
898
+ - `patchSchedulingBookingsSchedulingBookingsByIdCancel()` - Update cancel
899
+ - `patchSchedulingBookingsSchedulingBookingsByIdConfirm()` - Update confirm
900
+ - `patchSchedulingBookingsSchedulingBookingsByIdReschedule()` - Update reschedule
901
+
902
+ ## Scheduling calendar sync
903
+
904
+ - `getSchedulingCalendar-syncs()` - List calendar syncs
905
+ - `getSchedulingCalendar-syncsById()` - Get calendar syncs
906
+ - `postSchedulingCalendar-syncs()` - Create calendar syncs
907
+ - `patchSchedulingCalendar-syncsSchedulingCalendar-syncsById()` - Update calendar syncs
908
+ - `patchSchedulingCalendar-syncsSchedulingCalendar-syncsByIdPause()` - Update pause
909
+ - `patchSchedulingCalendar-syncsSchedulingCalendar-syncsByIdResume()` - Update resume
910
+ - `deleteSchedulingCalendar-syncsSchedulingCalendar-syncsById()` - Delete calendar syncs
911
+
912
+ ## Scheduling event
913
+
914
+ - `getSchedulingEvents()` - List events
915
+ - `getSchedulingEventsById()` - Get events
916
+ - `postSchedulingEvents()` - Create events
917
+ - `patchSchedulingEventsById()` - Update events
918
+
919
+ ## Scheduling event type
920
+
921
+ - `getSchedulingEvent-types()` - List event types
922
+ - `getSchedulingEvent-typesById()` - Get event types
923
+ - `postSchedulingEvent-types()` - Create event types
924
+ - `patchSchedulingEvent-typesById()` - Update event types
925
+
926
+ ## Scheduling location
927
+
928
+ - `getSchedulingLocations()` - List locations
929
+ - `getSchedulingLocationsById()` - Get locations
930
+ - `postSchedulingLocations()` - Create locations
931
+ - `patchSchedulingLocationsById()` - Update locations
932
+
933
+ ## Scheduling participant
934
+
935
+ - `getSchedulingParticipants()` - List participants
936
+ - `getSchedulingParticipantsById()` - Get participants
937
+ - `postSchedulingParticipants()` - Create participants
938
+ - `patchSchedulingParticipantsById()` - Update participants
939
+
940
+ ## Scheduling reminder
941
+
942
+ - `getSchedulingReminders()` - List reminders
943
+ - `getSchedulingRemindersById()` - Get reminders
944
+ - `postSchedulingReminders()` - Create reminders
945
+
946
+ ## Schema discovery
947
+
948
+ - `getExtractionSchema-discoveriesById()` - Get schema discoveries
949
+ - `postExtractionSchema-discoveries()` - Create schema discoveries
950
+ - `postExtractionSchema-discoveriesBootstrap()` - Create bootstrap
951
+
952
+ ## Search
953
+
954
+ - `getSearch()` - List search
955
+ - `getSearchHealth()` - List health
956
+ - `getSearchIndexes()` - List indexes
957
+ - `getSearchSaved()` - List saved
958
+ - `getSearchSemantic()` - List semantic
959
+ - `getSearchStats()` - List stats
960
+ - `getSearchStatus()` - List status
961
+ - `getSearchSuggest()` - List suggest
962
+ - `postAiSearch()` - Create search
963
+ - `postAiSearchAdvanced()` - Create advanced
964
+ - `postSearchBatch()` - Create batch
965
+ - `postSearchReindex()` - Create reindex
966
+ - `postSearchSaved()` - Create saved
967
+ - `postSearchSavedByIdRun()` - Create run
968
+ - `patchSearchSavedById()` - Update saved
969
+ - `deleteSearchSavedById()` - Delete saved
970
+
971
+ ## Search analytics
972
+
973
+ - `getSearchAnalytics()` - List analytics
974
+ - `getSearchAnalyticsSummary()` - List summary
975
+
976
+ ## Semantic cache entry
977
+
978
+ - `getSysSemantic-cacheById()` - Get semantic cache
979
+ - `postSysSemantic-cacheClear()` - Create clear
980
+
981
+ ## Settlement
982
+
983
+ - `getSettlements()` - List settlements
984
+ - `getSettlementsById()` - Get settlements
985
+ - `postSettlements()` - Create settlements
986
+
987
+ ## Storage
988
+
989
+ - `getBuckets()` - List buckets
990
+ - `getBucketsAll()` - List all
991
+ - `getBucketsById()` - Get buckets
992
+ - `getBucketsByIdObjects()` - Get objects
993
+ - `getBucketsByIdStats()` - Get stats
994
+ - `getObjects()` - List objects
995
+ - `getObjectsById()` - Get objects
996
+ - `postBuckets()` - Create buckets
997
+ - `postObjectsBulk-destroy()` - Create bulk destroy
998
+ - `postObjectsCopy()` - Create copy
999
+ - `postObjectsMove()` - Create move
1000
+ - `postObjectsRegister()` - Create register
1001
+ - `patchBucketsById()` - Update buckets
1002
+ - `deleteBucketsById()` - Delete buckets
1003
+ - `deleteObjectsById()` - Delete objects
1004
+
1005
+ ## Storage stats
1006
+
1007
+ - `getStorageStats()` - List stats
1008
+ - `getStorageStatsTenantByTenantId()` - Get tenant
1009
+
1010
+ ## System message
1011
+
1012
+ - `getSystem-messages()` - List system messages
1013
+ - `getSystem-messagesById()` - Get system messages
1014
+ - `postSystem-messages()` - Create system messages
1015
+ - `patchSystem-messagesById()` - Update system messages
1016
+ - `patchSystem-messagesByIdPublish()` - Update publish
1017
+ - `patchSystem-messagesByIdUnpublish()` - Update unpublish
1018
+ - `deleteSystem-messagesById()` - Delete system messages
1019
+
1020
+ ## Tenant document stats
1021
+
1022
+ - `getTenantsByTenantIdDocumentStats()` - Get document stats
1023
+
1024
+ ## Tenant pricing override
1025
+
1026
+ - `getTenant-pricing-overrides()` - List tenant pricing overrides
1027
+ - `getTenant-pricing-overridesById()` - Get tenant pricing overrides
1028
+ - `postTenant-pricing-overrides()` - Create tenant pricing overrides
1029
+ - `patchTenant-pricing-overridesById()` - Update tenant pricing overrides
1030
+ - `deleteTenant-pricing-overridesById()` - Delete tenant pricing overrides
1031
+
1032
+ ## Tenant stats
1033
+
1034
+ - `getTenantsByTenantIdStats()` - Get stats
1035
+
1036
+ ## Tenant-membership
1037
+
1038
+ - `getTenant-memberships()` - List tenant memberships
1039
+ - `postTenant-memberships()` - Create tenant memberships
1040
+ - `patchTenant-membershipsByTenantIdByUserId()` - Update tenant memberships
1041
+ - `deleteTenant-membershipsByTenantIdByUserId()` - Delete tenant memberships
1042
+
1043
+ ## Tenants
1044
+
1045
+ - `getTenants()` - List tenants
1046
+ - `getTenantsById()` - Get tenants
1047
+ - `postTenants()` - Create tenants
1048
+ - `postTenantsByIdBuy-storage()` - Create buy storage
1049
+ - `postTenantsByIdCredit()` - Create credit
1050
+ - `postTenantsByIdRemove-storage()` - Create remove storage
1051
+ - `postTenantsByIdSchedule-purge()` - Create schedule purge
1052
+ - `postTenantsIsv()` - Create isv
1053
+ - `patchTenantsById()` - Update tenants
1054
+ - `deleteTenantsById()` - Delete tenants
1055
+
1056
+ ## Thread stats
1057
+
1058
+ - `getThreadsStats()` - List stats
1059
+
1060
+ ## Thread workspace stats
1061
+
1062
+ - `getThreadsWorkspace-stats()` - List workspace stats
1063
+
1064
+ ## Threads
1065
+
1066
+ - `getThreads()` - List threads
1067
+ - `getThreadsById()` - Get threads
1068
+ - `getThreadsSearch()` - List search
1069
+ - `postThreads()` - Create threads
1070
+ - `postThreadsActive()` - Create active
1071
+ - `postThreadsByIdExport()` - Create export
1072
+ - `postThreadsByIdFork()` - Create fork
1073
+ - `postThreadsByIdMessages()` - Create messages
1074
+ - `postThreadsByIdSummarize()` - Create summarize
1075
+ - `patchThreadsById()` - Update threads
1076
+ - `patchThreadsByIdArchive()` - Update archive
1077
+ - `patchThreadsByIdUnarchive()` - Update unarchive
1078
+ - `deleteThreadsById()` - Delete threads
1079
+
1080
+ ## Token
1081
+
1082
+ - `postTokens()` - Create tokens
1083
+
1084
+ ## Training analytics
1085
+
1086
+ - `getWorkspacesAnalytics-batch()` - List analytics batch
1087
+ - `getWorkspacesByWorkspaceIdTrainingAnalytics()` - Get analytics
1088
+
1089
+ ## Transaction
1090
+
1091
+ - `getTransactions()` - List transactions
1092
+ - `getTransactionsById()` - Get transactions
1093
+ - `postPayments()` - Create payments
1094
+
1095
+ ## Transfer
1096
+
1097
+ - `getTransfers()` - List transfers
1098
+ - `getTransfersById()` - Get transfers
1099
+
1100
+ ## Users
1101
+
1102
+ - `getUser-profiles()` - List user profiles
1103
+ - `getUser-profilesById()` - Get user profiles
1104
+ - `getUser-profilesMe()` - List me
1105
+ - `getUsers()` - List users
1106
+ - `getUsersBy-email()` - List by email
1107
+ - `getUsersById()` - Get users
1108
+ - `getUsersMe()` - List me
1109
+ - `getUsersMeActivity()` - List activity
1110
+ - `getUsersMeDashboard()` - List dashboard
1111
+ - `getUsersMeStats()` - List stats
1112
+ - `getUsersMeTenants()` - List tenants
1113
+ - `postUser-profiles()` - Create user profiles
1114
+ - `postUsersAuthConfirm()` - Create confirm
1115
+ - `postUsersAuthLogin()` - Create login
1116
+ - `postUsersAuthMagic-linkLogin()` - Create login
1117
+ - `postUsersAuthMagic-linkRequest()` - Create request
1118
+ - `postUsersAuthRegister()` - Create register
1119
+ - `postUsersAuthRegister-with-oidc()` - Create register with oidc
1120
+ - `postUsersAuthResend-confirmation()` - Create resend confirmation
1121
+ - `postUsersRegister-isv()` - Create register isv
1122
+ - `patchUser-profilesById()` - Update user profiles
1123
+ - `patchUser-profilesByIdAccept-tos()` - Update accept tos
1124
+ - `patchUser-profilesByIdDismiss-announcement()` - Update dismiss announcement
1125
+ - `patchUser-profilesByIdDismiss-welcome()` - Update dismiss welcome
1126
+ - `patchUsersAuthPasswordChange()` - Update change
1127
+ - `patchUsersAuthReset-password()` - Update reset password
1128
+ - `patchUsersById()` - Update admin
1129
+ - `patchUsersByIdConfirm-email()` - Update confirm email
1130
+ - `patchUsersByIdEmail()` - Update email
1131
+ - `patchUsersByIdReset-password()` - Update reset password
1132
+ - `deleteUser-profilesById()` - Delete user profiles
1133
+ - `deleteUsersById()` - Delete users
1134
+
1135
+ ## Voice session
1136
+
1137
+ - `getVoiceSessions()` - List sessions
1138
+ - `getVoiceSessionsById()` - Get sessions
1139
+ - `getVoiceSessionsMine()` - List mine
1140
+ - `getVoiceSessionsWorkspaceByWorkspaceId()` - Get workspace
1141
+
1142
+ ## Webhooks
1143
+
1144
+ - `getWebhook-configs()` - List webhook configs
1145
+ - `getWebhook-configsById()` - Get webhook configs
1146
+ - `getWebhook-configsByIdEvents()` - Get events
1147
+ - `getWebhook-configsStats()` - List stats
1148
+ - `getWebhook-deliveries()` - List webhook deliveries
1149
+ - `getWebhook-deliveriesById()` - Get webhook deliveries
1150
+ - `getWebhook-deliveriesStats()` - List stats
1151
+ - `postWebhook-configs()` - Create webhook configs
1152
+ - `postWebhook-configsBulk-disable()` - Create bulk disable
1153
+ - `postWebhook-configsBulk-enable()` - Create bulk enable
1154
+ - `postWebhook-configsByIdReplay()` - Create replay
1155
+ - `postWebhook-configsByIdTest()` - Create test
1156
+ - `postWebhook-deliveriesBulk-retry()` - Create bulk retry
1157
+ - `postWebhook-deliveriesByIdRetry()` - Create retry
1158
+ - `patchWebhook-configsById()` - Update webhook configs
1159
+ - `patchWebhook-configsByIdRotate-secret()` - Update rotate secret
1160
+ - `deleteWebhook-configsById()` - Delete webhook configs
1161
+
1162
+ ## Wholesale-agreement
1163
+
1164
+ - `getWholesale-agreements()` - List wholesale agreements
1165
+ - `getWholesale-agreementsById()` - Get wholesale agreements
1166
+ - `postWholesale-agreements()` - Create wholesale agreements
1167
+ - `patchWholesale-agreementsById()` - Update wholesale agreements
1168
+
1169
+ ## Workspace document stats
1170
+
1171
+ - `getTenantsByTenantIdWorkspaceStats()` - Get workspace stats
1172
+
1173
+ ## Workspace-membership
1174
+
1175
+ - `getWorkspace-memberships()` - List workspace memberships
1176
+ - `getWorkspace-membershipsInherited()` - List inherited
1177
+ - `getWorkspacesByIdMembers()` - Get members
1178
+ - `postWorkspace-memberships()` - Create workspace memberships
1179
+ - `patchWorkspace-membershipsByWorkspaceIdByUserId()` - Update workspace memberships
1180
+ - `deleteWorkspace-membershipsByWorkspaceIdByUserId()` - Delete workspace memberships
1181
+
1182
+ ## Workspaces
1183
+
1184
+ - `getWorkspaces()` - List workspaces
1185
+ - `getWorkspacesById()` - Get workspaces
1186
+ - `getWorkspacesMine()` - List mine
1187
+ - `getWorkspacesShared()` - List shared
1188
+ - `postWorkspaces()` - Create workspaces
1189
+ - `patchWorkspacesById()` - Update workspaces
1190
+ - `patchWorkspacesByIdAllocate()` - Update allocate
1191
+ - `patchWorkspacesByIdPopulate-hashes()` - Update populate hashes
1192
+ - `patchWorkspacesByIdStorage-settings()` - Update storage settings
1193
+ - `deleteWorkspacesById()` - Delete workspaces
1194
+
1195
+ ## Error Handling
1196
+
1197
+ All functions return a Promise that resolves with `{ data, error, response }`.
1198
+
1199
+ ```typescript
1200
+ const { data, error } = await getAgents();
1201
+ if (error) {
1202
+ console.error(error.status, error.detail);
1203
+ } else {
1204
+ console.log(data);
1205
+ }
1206
+ ```
1207
+
1208
+ ## Types
1209
+
1210
+ All types are exported:
1211
+
1212
+ ```typescript
1213
+ import type { Agent, Workspace, Document } from '@gpt-platform/admin';
1214
+ ```