You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib/seam/connect/openapi.ts
+44-48Lines changed: 44 additions & 48 deletions
Original file line number
Diff line number
Diff line change
@@ -61253,8 +61253,18 @@ export default {
61253
61253
'/seam/customer/v1/automations/get': {
61254
61254
get: {
61255
61255
description:
61256
-
'Gets the current automation configuration for a customer portal workspace.\nFor customer client sessions, returns customer-specific config if available,\notherwise falls back to workspace-level config.',
61256
+
'Gets the current automation configuration for a customer portal workspace.\nWhen customer_key is provided, returns customer-specific config if available,\notherwise falls back to workspace-level config.',
61257
61257
operationId: 'seamCustomerV1AutomationsGetGet',
61258
+
parameters: [
61259
+
{
61260
+
in: 'query',
61261
+
name: 'customer_key',
61262
+
schema: {
61263
+
description: 'Key of the customer to get automation config for.',
'Gets the current automation configuration for a customer portal workspace.\nFor customer client sessions, returns customer-specific config if available,\notherwise falls back to workspace-level config.',
61548
+
'Gets the current automation configuration for a customer portal workspace.\nWhen customer_key is provided, returns customer-specific config if available,\notherwise falls back to workspace-level config.',
61543
61549
operationId: 'seamCustomerV1AutomationsGetPost',
61550
+
requestBody: {
61551
+
content: {
61552
+
'application/json': {
61553
+
schema: {
61554
+
properties: {
61555
+
customer_key: {
61556
+
description:
61557
+
'Key of the customer to get automation config for.',
'Key of the customer to update automation config for.',
62098
+
type: 'string',
62099
+
},
62077
62100
},
62078
62101
type: 'object',
62079
62102
},
@@ -62354,6 +62377,11 @@ export default {
62354
62377
},
62355
62378
type: 'object',
62356
62379
},
62380
+
customer_key: {
62381
+
description:
62382
+
'Key of the customer to update automation config for.',
62383
+
type: 'string',
62384
+
},
62357
62385
},
62358
62386
type: 'object',
62359
62387
},
@@ -63360,16 +63388,8 @@ export default {
63360
63388
'/seam/customer/v1/customers/automations/get': {
63361
63389
get: {
63362
63390
description:
63363
-
'Gets the automation configuration for a specific customer.\nReturns the merged configuration (customer overrides on top of workspace defaults).',
63391
+
'Gets the automation configuration for the authenticated customer.\nReturns the merged configuration (customer overrides on top of workspace defaults).',
'Gets the automation configuration for a specific customer.\nReturns the merged configuration (customer overrides on top of workspace defaults).',
63688
+
'Gets the automation configuration for the authenticated customer.\nReturns the merged configuration (customer overrides on top of workspace defaults).',
0 commit comments