syllable-sdk 0.1.0-alpha.186 → 0.1.0-alpha.190

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 (65) hide show
  1. package/README.md +11 -0
  2. package/docs/sdks/batches/README.md +4 -4
  3. package/docs/sdks/organizations/README.md +325 -0
  4. package/docs/sdks/workflows/README.md +8 -8
  5. package/funcs/organizationsCreate.d.ts +16 -0
  6. package/funcs/organizationsCreate.d.ts.map +1 -0
  7. package/funcs/organizationsCreate.js +120 -0
  8. package/funcs/organizationsCreate.js.map +1 -0
  9. package/funcs/organizationsDelete.d.ts +16 -0
  10. package/funcs/organizationsDelete.d.ts.map +1 -0
  11. package/funcs/organizationsDelete.js +105 -0
  12. package/funcs/organizationsDelete.js.map +1 -0
  13. package/funcs/organizationsOrganizationsGet.d.ts +15 -0
  14. package/funcs/organizationsOrganizationsGet.d.ts.map +1 -0
  15. package/funcs/organizationsOrganizationsGet.js +88 -0
  16. package/funcs/organizationsOrganizationsGet.js.map +1 -0
  17. package/funcs/organizationsUpdate.d.ts +16 -0
  18. package/funcs/organizationsUpdate.d.ts.map +1 -0
  19. package/funcs/organizationsUpdate.js +125 -0
  20. package/funcs/organizationsUpdate.js.map +1 -0
  21. package/jsr.json +1 -1
  22. package/lib/config.d.ts +2 -2
  23. package/lib/config.js +2 -2
  24. package/models/components/bodyorganizationscreate.d.ts +74 -0
  25. package/models/components/bodyorganizationscreate.d.ts.map +1 -0
  26. package/models/components/bodyorganizationscreate.js +114 -0
  27. package/models/components/bodyorganizationscreate.js.map +1 -0
  28. package/models/components/bodyorganizationsdelete.d.ts +32 -0
  29. package/models/components/bodyorganizationsdelete.d.ts.map +1 -0
  30. package/models/components/bodyorganizationsdelete.js +68 -0
  31. package/models/components/bodyorganizationsdelete.js.map +1 -0
  32. package/models/components/bodyorganizationsupdate.d.ts +79 -0
  33. package/models/components/bodyorganizationsupdate.d.ts.map +1 -0
  34. package/models/components/bodyorganizationsupdate.js +119 -0
  35. package/models/components/bodyorganizationsupdate.js.map +1 -0
  36. package/models/components/index.d.ts +4 -0
  37. package/models/components/index.d.ts.map +1 -1
  38. package/models/components/index.js +4 -0
  39. package/models/components/index.js.map +1 -1
  40. package/models/components/organizationresponse.d.ts +64 -0
  41. package/models/components/organizationresponse.d.ts.map +1 -0
  42. package/models/components/organizationresponse.js +90 -0
  43. package/models/components/organizationresponse.js.map +1 -0
  44. package/openapi.json +427 -33
  45. package/package.json +1 -1
  46. package/sdk/organizations.d.ts +33 -0
  47. package/sdk/organizations.d.ts.map +1 -0
  48. package/sdk/organizations.js +52 -0
  49. package/sdk/organizations.js.map +1 -0
  50. package/sdk/sdk.d.ts +3 -0
  51. package/sdk/sdk.d.ts.map +1 -1
  52. package/sdk/sdk.js +4 -0
  53. package/sdk/sdk.js.map +1 -1
  54. package/src/funcs/organizationsCreate.ts +157 -0
  55. package/src/funcs/organizationsDelete.ts +140 -0
  56. package/src/funcs/organizationsOrganizationsGet.ts +111 -0
  57. package/src/funcs/organizationsUpdate.ts +162 -0
  58. package/src/lib/config.ts +2 -2
  59. package/src/models/components/bodyorganizationscreate.ts +176 -0
  60. package/src/models/components/bodyorganizationsdelete.ts +78 -0
  61. package/src/models/components/bodyorganizationsupdate.ts +171 -0
  62. package/src/models/components/index.ts +4 -0
  63. package/src/models/components/organizationresponse.ts +134 -0
  64. package/src/sdk/organizations.ts +79 -0
  65. package/src/sdk/sdk.ts +6 -0
package/openapi.json CHANGED
@@ -9244,6 +9244,165 @@
9244
9244
  ]
9245
9245
  }
9246
9246
  },
9247
+ "/api/v1/organizations/": {
9248
+ "get": {
9249
+ "tags": [
9250
+ "organizations"
9251
+ ],
9252
+ "summary": "Get Current Organization",
9253
+ "description": "Fetch the current organization.",
9254
+ "operationId": "organizations_get",
9255
+ "responses": {
9256
+ "200": {
9257
+ "description": "Successful Response",
9258
+ "content": {
9259
+ "application/json": {
9260
+ "schema": {
9261
+ "$ref": "#/components/schemas/OrganizationResponse"
9262
+ }
9263
+ }
9264
+ }
9265
+ }
9266
+ },
9267
+ "security": [
9268
+ {
9269
+ "APIKeyHeader": []
9270
+ }
9271
+ ]
9272
+ },
9273
+ "put": {
9274
+ "tags": [
9275
+ "organizations"
9276
+ ],
9277
+ "summary": "Update Current Organization",
9278
+ "description": "Update the current organization.",
9279
+ "operationId": "organizations_update",
9280
+ "requestBody": {
9281
+ "content": {
9282
+ "multipart/form-data": {
9283
+ "schema": {
9284
+ "$ref": "#/components/schemas/Body_organizations_update"
9285
+ }
9286
+ }
9287
+ },
9288
+ "required": true
9289
+ },
9290
+ "responses": {
9291
+ "200": {
9292
+ "description": "Successful Response",
9293
+ "content": {
9294
+ "application/json": {
9295
+ "schema": {
9296
+ "$ref": "#/components/schemas/OrganizationResponse"
9297
+ }
9298
+ }
9299
+ }
9300
+ },
9301
+ "422": {
9302
+ "description": "Validation Error",
9303
+ "content": {
9304
+ "application/json": {
9305
+ "schema": {
9306
+ "$ref": "#/components/schemas/HTTPValidationError"
9307
+ }
9308
+ }
9309
+ }
9310
+ }
9311
+ },
9312
+ "security": [
9313
+ {
9314
+ "APIKeyHeader": []
9315
+ }
9316
+ ]
9317
+ },
9318
+ "post": {
9319
+ "tags": [
9320
+ "organizations"
9321
+ ],
9322
+ "summary": "Create Organization",
9323
+ "description": "Create a new organization.",
9324
+ "operationId": "organizations_create",
9325
+ "requestBody": {
9326
+ "content": {
9327
+ "multipart/form-data": {
9328
+ "schema": {
9329
+ "$ref": "#/components/schemas/Body_organizations_create"
9330
+ }
9331
+ }
9332
+ },
9333
+ "required": true
9334
+ },
9335
+ "responses": {
9336
+ "200": {
9337
+ "description": "Successful Response",
9338
+ "content": {
9339
+ "application/json": {
9340
+ "schema": {
9341
+ "$ref": "#/components/schemas/OrganizationResponse"
9342
+ }
9343
+ }
9344
+ }
9345
+ },
9346
+ "422": {
9347
+ "description": "Validation Error",
9348
+ "content": {
9349
+ "application/json": {
9350
+ "schema": {
9351
+ "$ref": "#/components/schemas/HTTPValidationError"
9352
+ }
9353
+ }
9354
+ }
9355
+ }
9356
+ },
9357
+ "security": [
9358
+ {
9359
+ "APIKeyHeader": []
9360
+ }
9361
+ ]
9362
+ },
9363
+ "delete": {
9364
+ "tags": [
9365
+ "organizations"
9366
+ ],
9367
+ "summary": "Delete Current Organization",
9368
+ "description": "Delete the current organization and all its users.",
9369
+ "operationId": "organizations_delete",
9370
+ "requestBody": {
9371
+ "content": {
9372
+ "application/x-www-form-urlencoded": {
9373
+ "schema": {
9374
+ "$ref": "#/components/schemas/Body_organizations_delete"
9375
+ }
9376
+ }
9377
+ }
9378
+ },
9379
+ "responses": {
9380
+ "200": {
9381
+ "description": "Successful Response",
9382
+ "content": {
9383
+ "application/json": {
9384
+ "schema": {}
9385
+ }
9386
+ }
9387
+ },
9388
+ "422": {
9389
+ "description": "Validation Error",
9390
+ "content": {
9391
+ "application/json": {
9392
+ "schema": {
9393
+ "$ref": "#/components/schemas/HTTPValidationError"
9394
+ }
9395
+ }
9396
+ }
9397
+ }
9398
+ },
9399
+ "security": [
9400
+ {
9401
+ "APIKeyHeader": []
9402
+ }
9403
+ ]
9404
+ }
9405
+ },
9247
9406
  "/api/v1/outbound/batches": {
9248
9407
  "get": {
9249
9408
  "tags": [
@@ -12583,7 +12742,7 @@
12583
12742
  "title": "Batch Id",
12584
12743
  "description": "Unique ID for conversation batch",
12585
12744
  "examples": [
12586
- "20250617.9"
12745
+ "20250624.9"
12587
12746
  ]
12588
12747
  },
12589
12748
  "campaign_id": {
@@ -12607,7 +12766,7 @@
12607
12766
  "title": "Expires On",
12608
12767
  "description": "Timestamp of batch expiration",
12609
12768
  "examples": [
12610
- "2025-06-18T00:00:00Z"
12769
+ "2025-06-25T00:00:00Z"
12611
12770
  ]
12612
12771
  },
12613
12772
  "paused": {
@@ -12660,7 +12819,7 @@
12660
12819
  "title": "Created At",
12661
12820
  "description": "Timestamp of batch creation",
12662
12821
  "examples": [
12663
- "2025-06-17T00:00:00Z"
12822
+ "2025-06-24T00:00:00Z"
12664
12823
  ]
12665
12824
  },
12666
12825
  "deleted_at": {
@@ -12676,7 +12835,7 @@
12676
12835
  "title": "Deleted At",
12677
12836
  "description": "Timestamp of batch deletion",
12678
12837
  "examples": [
12679
- "2025-06-17T00:00:00Z"
12838
+ "2025-06-24T00:00:00Z"
12680
12839
  ]
12681
12840
  },
12682
12841
  "deleted_reason": {
@@ -12707,7 +12866,7 @@
12707
12866
  "title": "Last Updated At",
12708
12867
  "description": "Timestamp of last change to batch",
12709
12868
  "examples": [
12710
- "2025-06-17T00:00:00Z"
12869
+ "2025-06-24T00:00:00Z"
12711
12870
  ]
12712
12871
  },
12713
12872
  "last_updated_by": {
@@ -12817,6 +12976,141 @@
12817
12976
  "type": "object",
12818
12977
  "title": "Body_insights_folder_upload_file"
12819
12978
  },
12979
+ "Body_organizations_create": {
12980
+ "properties": {
12981
+ "logo": {
12982
+ "type": "string",
12983
+ "format": "binary",
12984
+ "title": "Logo",
12985
+ "description": "The organization logo image file to upload. Must be a PNG file and 120x120 pixels."
12986
+ },
12987
+ "display_name": {
12988
+ "type": "string",
12989
+ "title": "Display Name",
12990
+ "description": "The human-readable display name of the organization",
12991
+ "examples": [
12992
+ "My Great Org"
12993
+ ]
12994
+ },
12995
+ "description": {
12996
+ "anyOf": [
12997
+ {
12998
+ "type": "string"
12999
+ },
13000
+ {
13001
+ "type": "null"
13002
+ }
13003
+ ],
13004
+ "title": "Description",
13005
+ "description": "Description of the organization",
13006
+ "examples": [
13007
+ "An organization that does great things with agentic AI"
13008
+ ]
13009
+ },
13010
+ "domains": {
13011
+ "type": "string",
13012
+ "title": "Domains",
13013
+ "description": "Comma-delimited list of domains that users at the organization may have in their email addresses",
13014
+ "examples": [
13015
+ "mygreatorg.com,mygreatorg.org"
13016
+ ]
13017
+ }
13018
+ },
13019
+ "type": "object",
13020
+ "required": [
13021
+ "logo",
13022
+ "display_name",
13023
+ "domains"
13024
+ ],
13025
+ "title": "Body_organizations_create"
13026
+ },
13027
+ "Body_organizations_delete": {
13028
+ "properties": {
13029
+ "delete_comments": {
13030
+ "anyOf": [
13031
+ {
13032
+ "type": "string"
13033
+ },
13034
+ {
13035
+ "type": "null"
13036
+ }
13037
+ ],
13038
+ "title": "Delete Comments",
13039
+ "description": "Comments explaining the deletion"
13040
+ }
13041
+ },
13042
+ "type": "object",
13043
+ "title": "Body_organizations_delete"
13044
+ },
13045
+ "Body_organizations_update": {
13046
+ "properties": {
13047
+ "logo": {
13048
+ "anyOf": [
13049
+ {
13050
+ "type": "string",
13051
+ "format": "binary"
13052
+ },
13053
+ {
13054
+ "type": "null"
13055
+ }
13056
+ ],
13057
+ "title": "Logo",
13058
+ "description": "The organization logo image file to upload. Must be a PNG file and 120x120 pixels. If not provided, the logo will not be updated."
13059
+ },
13060
+ "display_name": {
13061
+ "type": "string",
13062
+ "title": "Display Name",
13063
+ "description": "The human-readable display name of the organization",
13064
+ "examples": [
13065
+ "My Great Org"
13066
+ ]
13067
+ },
13068
+ "description": {
13069
+ "anyOf": [
13070
+ {
13071
+ "type": "string"
13072
+ },
13073
+ {
13074
+ "type": "null"
13075
+ }
13076
+ ],
13077
+ "title": "Description",
13078
+ "description": "Description of the organization",
13079
+ "examples": [
13080
+ "An organization that does great things with agentic AI"
13081
+ ]
13082
+ },
13083
+ "domains": {
13084
+ "type": "string",
13085
+ "title": "Domains",
13086
+ "description": "Comma-delimited list of domains that users at the organization may have in their email addresses",
13087
+ "examples": [
13088
+ "mygreatorg.com,mygreatorg.org"
13089
+ ]
13090
+ },
13091
+ "update_comments": {
13092
+ "anyOf": [
13093
+ {
13094
+ "type": "string"
13095
+ },
13096
+ {
13097
+ "type": "null"
13098
+ }
13099
+ ],
13100
+ "title": "Update Comments",
13101
+ "description": "Comments about the update",
13102
+ "examples": [
13103
+ "Updated the organization to add a new domain"
13104
+ ]
13105
+ }
13106
+ },
13107
+ "type": "object",
13108
+ "required": [
13109
+ "display_name",
13110
+ "domains"
13111
+ ],
13112
+ "title": "Body_organizations_update"
13113
+ },
12820
13114
  "Body_outbound_batch_delete": {
12821
13115
  "properties": {
12822
13116
  "delete_reason": {
@@ -13223,7 +13517,7 @@
13223
13517
  "title": "Batch Id",
13224
13518
  "description": "Unique ID for conversation batch",
13225
13519
  "examples": [
13226
- "20250617.9"
13520
+ "20250624.9"
13227
13521
  ]
13228
13522
  },
13229
13523
  "campaign_id": {
@@ -13247,7 +13541,7 @@
13247
13541
  "title": "Expires On",
13248
13542
  "description": "Timestamp of batch expiration",
13249
13543
  "examples": [
13250
- "2025-06-18T00:00:00Z"
13544
+ "2025-06-25T00:00:00Z"
13251
13545
  ]
13252
13546
  },
13253
13547
  "paused": {
@@ -13300,7 +13594,7 @@
13300
13594
  "title": "Created At",
13301
13595
  "description": "Timestamp of batch creation",
13302
13596
  "examples": [
13303
- "2025-06-17T00:00:00Z"
13597
+ "2025-06-24T00:00:00Z"
13304
13598
  ]
13305
13599
  },
13306
13600
  "deleted_at": {
@@ -13316,7 +13610,7 @@
13316
13610
  "title": "Deleted At",
13317
13611
  "description": "Timestamp of batch deletion",
13318
13612
  "examples": [
13319
- "2025-06-17T00:00:00Z"
13613
+ "2025-06-24T00:00:00Z"
13320
13614
  ]
13321
13615
  },
13322
13616
  "deleted_reason": {
@@ -13347,7 +13641,7 @@
13347
13641
  "title": "Last Updated At",
13348
13642
  "description": "Timestamp of last change to batch",
13349
13643
  "examples": [
13350
- "2025-06-17T00:00:00Z"
13644
+ "2025-06-24T00:00:00Z"
13351
13645
  ]
13352
13646
  },
13353
13647
  "last_updated_by": {
@@ -13390,7 +13684,7 @@
13390
13684
  "title": "Batch Id",
13391
13685
  "description": "Unique ID for conversation batch",
13392
13686
  "examples": [
13393
- "20250617.9"
13687
+ "20250624.9"
13394
13688
  ]
13395
13689
  },
13396
13690
  "campaign_id": {
@@ -13414,7 +13708,7 @@
13414
13708
  "title": "Expires On",
13415
13709
  "description": "Timestamp of batch expiration",
13416
13710
  "examples": [
13417
- "2025-06-18T00:00:00Z"
13711
+ "2025-06-25T00:00:00Z"
13418
13712
  ]
13419
13713
  },
13420
13714
  "paused": {
@@ -13563,7 +13857,7 @@
13563
13857
  "title": "Created At",
13564
13858
  "description": "Timestamp of request creation",
13565
13859
  "examples": [
13566
- "2025-06-16T00:00:00Z"
13860
+ "2025-06-23T00:00:00Z"
13567
13861
  ]
13568
13862
  },
13569
13863
  "sent_at": {
@@ -13579,7 +13873,7 @@
13579
13873
  "title": "Sent At",
13580
13874
  "description": "Timestamp at which request was sent",
13581
13875
  "examples": [
13582
- "2025-06-17T00:00:00Z"
13876
+ "2025-06-24T00:00:00Z"
13583
13877
  ]
13584
13878
  },
13585
13879
  "attempt_count": {
@@ -15479,7 +15773,7 @@
15479
15773
  "title": "Created At",
15480
15774
  "description": "Timestamp at which insight upload folder was created",
15481
15775
  "examples": [
15482
- "2025-06-16T00:00:00Z"
15776
+ "2025-06-23T00:00:00Z"
15483
15777
  ]
15484
15778
  },
15485
15779
  "updated_at": {
@@ -15488,7 +15782,7 @@
15488
15782
  "title": "Updated At",
15489
15783
  "description": "Timestamp at which insight upload folder was last updated",
15490
15784
  "examples": [
15491
- "2025-06-17T00:00:00Z"
15785
+ "2025-06-24T00:00:00Z"
15492
15786
  ]
15493
15787
  },
15494
15788
  "last_updated_by": {
@@ -16203,7 +16497,7 @@
16203
16497
  "title": "Created At",
16204
16498
  "description": "Timestamp of at which insight tool configuration was created",
16205
16499
  "examples": [
16206
- "2025-06-16T00:00:00Z"
16500
+ "2025-06-23T00:00:00Z"
16207
16501
  ]
16208
16502
  },
16209
16503
  "updated_at": {
@@ -16212,7 +16506,7 @@
16212
16506
  "title": "Updated At",
16213
16507
  "description": "Timestamp at which insight tool configuration was last updated",
16214
16508
  "examples": [
16215
- "2025-06-17T00:00:00Z"
16509
+ "2025-06-24T00:00:00Z"
16216
16510
  ]
16217
16511
  },
16218
16512
  "last_updated_by": {
@@ -16567,7 +16861,7 @@
16567
16861
  "title": "Start Datetime",
16568
16862
  "description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
16569
16863
  "examples": [
16570
- "2025-06-16T00:00:00Z"
16864
+ "2025-06-23T00:00:00Z"
16571
16865
  ]
16572
16866
  },
16573
16867
  "end_datetime": {
@@ -16583,7 +16877,7 @@
16583
16877
  "title": "End Datetime",
16584
16878
  "description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
16585
16879
  "examples": [
16586
- "2025-06-17T00:00:00Z"
16880
+ "2025-06-24T00:00:00Z"
16587
16881
  ]
16588
16882
  }
16589
16883
  },
@@ -16657,7 +16951,7 @@
16657
16951
  "title": "Start Datetime",
16658
16952
  "description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
16659
16953
  "examples": [
16660
- "2025-06-16T00:00:00Z"
16954
+ "2025-06-23T00:00:00Z"
16661
16955
  ]
16662
16956
  },
16663
16957
  "end_datetime": {
@@ -16673,7 +16967,7 @@
16673
16967
  "title": "End Datetime",
16674
16968
  "description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
16675
16969
  "examples": [
16676
- "2025-06-17T00:00:00Z"
16970
+ "2025-06-24T00:00:00Z"
16677
16971
  ]
16678
16972
  },
16679
16973
  "id": {
@@ -16726,7 +17020,7 @@
16726
17020
  "title": "Created At",
16727
17021
  "description": "Timestamp at which the insight workflow was created",
16728
17022
  "examples": [
16729
- "2025-06-16T00:00:00Z"
17023
+ "2025-06-23T00:00:00Z"
16730
17024
  ]
16731
17025
  },
16732
17026
  "updated_at": {
@@ -16735,7 +17029,7 @@
16735
17029
  "title": "Updated At",
16736
17030
  "description": "Timestamp of most recent update to the insight workflow",
16737
17031
  "examples": [
16738
- "2025-06-17T00:00:00Z"
17032
+ "2025-06-24T00:00:00Z"
16739
17033
  ]
16740
17034
  },
16741
17035
  "last_updated_by": {
@@ -16831,7 +17125,7 @@
16831
17125
  "title": "Created At",
16832
17126
  "description": "Timestamp at which insight upload folder was created",
16833
17127
  "examples": [
16834
- "2025-06-16T00:00:00Z"
17128
+ "2025-06-23T00:00:00Z"
16835
17129
  ]
16836
17130
  },
16837
17131
  "updated_at": {
@@ -16840,7 +17134,7 @@
16840
17134
  "title": "Updated At",
16841
17135
  "description": "Timestamp at which insight upload folder was last updated",
16842
17136
  "examples": [
16843
- "2025-06-17T00:00:00Z"
17137
+ "2025-06-24T00:00:00Z"
16844
17138
  ]
16845
17139
  },
16846
17140
  "last_updated_by": {
@@ -17075,7 +17369,7 @@
17075
17369
  "title": "Created At",
17076
17370
  "description": "Timestamp at which insight tool result was created",
17077
17371
  "examples": [
17078
- "2025-06-16T00:00:00Z"
17372
+ "2025-06-23T00:00:00Z"
17079
17373
  ]
17080
17374
  },
17081
17375
  "updated_at": {
@@ -17084,7 +17378,7 @@
17084
17378
  "title": "Updated At",
17085
17379
  "description": "Timestamp at which insight tool result was last updated",
17086
17380
  "examples": [
17087
- "2025-06-17T00:00:00Z"
17381
+ "2025-06-24T00:00:00Z"
17088
17382
  ]
17089
17383
  }
17090
17384
  },
@@ -17219,7 +17513,7 @@
17219
17513
  "title": "Start Time",
17220
17514
  "description": "Start time of the uploaded file",
17221
17515
  "examples": [
17222
- "2025-06-16T00:00:00Z"
17516
+ "2025-06-23T00:00:00Z"
17223
17517
  ]
17224
17518
  },
17225
17519
  "end_time": {
@@ -17235,7 +17529,7 @@
17235
17529
  "title": "End Time",
17236
17530
  "description": "End time of the uploaded file",
17237
17531
  "examples": [
17238
- "2025-06-17T00:00:00Z"
17532
+ "2025-06-24T00:00:00Z"
17239
17533
  ]
17240
17534
  },
17241
17535
  "error_message": {
@@ -17290,7 +17584,7 @@
17290
17584
  "title": "Created At",
17291
17585
  "description": "Timestamp at which insight upload file was created",
17292
17586
  "examples": [
17293
- "2025-06-16T00:00:00Z"
17587
+ "2025-06-23T00:00:00Z"
17294
17588
  ]
17295
17589
  }
17296
17590
  },
@@ -19653,6 +19947,102 @@
19653
19947
  "title": "OrderByDirection",
19654
19948
  "description": "The direction in which to order list results, either ascending or descending."
19655
19949
  },
19950
+ "OrganizationResponse": {
19951
+ "properties": {
19952
+ "display_name": {
19953
+ "type": "string",
19954
+ "title": "Display Name",
19955
+ "description": "The human-readable display name of the organization.",
19956
+ "examples": [
19957
+ "My Great Org"
19958
+ ]
19959
+ },
19960
+ "description": {
19961
+ "anyOf": [
19962
+ {
19963
+ "type": "string"
19964
+ },
19965
+ {
19966
+ "type": "null"
19967
+ }
19968
+ ],
19969
+ "title": "Description",
19970
+ "description": "Description of the organization.",
19971
+ "examples": [
19972
+ "An organization that does great things with agentic AI."
19973
+ ]
19974
+ },
19975
+ "domains": {
19976
+ "type": "string",
19977
+ "title": "Domains",
19978
+ "description": "Comma-delimited list of domains that users at the organization may have in their email addresses.",
19979
+ "examples": [
19980
+ "mygreatorg.com,myothergreatorg.org"
19981
+ ]
19982
+ },
19983
+ "id": {
19984
+ "type": "integer",
19985
+ "title": "Id",
19986
+ "description": "The internal ID of the organization.",
19987
+ "examples": [
19988
+ 1
19989
+ ]
19990
+ },
19991
+ "last_updated_comments": {
19992
+ "anyOf": [
19993
+ {
19994
+ "type": "string"
19995
+ },
19996
+ {
19997
+ "type": "null"
19998
+ }
19999
+ ],
20000
+ "title": "Last Updated Comments",
20001
+ "description": "Comments for the most recent edit to the organization.",
20002
+ "examples": [
20003
+ "Updated to add an additional domain"
20004
+ ]
20005
+ },
20006
+ "last_updated": {
20007
+ "type": "string",
20008
+ "format": "date-time",
20009
+ "title": "Last Updated",
20010
+ "description": "The timestamp of the most recent update to the organization"
20011
+ },
20012
+ "last_updated_by": {
20013
+ "anyOf": [
20014
+ {
20015
+ "type": "string"
20016
+ },
20017
+ {
20018
+ "type": "null"
20019
+ }
20020
+ ],
20021
+ "title": "Last Updated By",
20022
+ "description": "The email of the user who most recently updated the organization"
20023
+ },
20024
+ "logo_str": {
20025
+ "anyOf": [
20026
+ {
20027
+ "type": "string"
20028
+ },
20029
+ {
20030
+ "type": "null"
20031
+ }
20032
+ ],
20033
+ "title": "Logo Str"
20034
+ }
20035
+ },
20036
+ "type": "object",
20037
+ "required": [
20038
+ "display_name",
20039
+ "domains",
20040
+ "id",
20041
+ "last_updated",
20042
+ "logo_str"
20043
+ ],
20044
+ "title": "OrganizationResponse"
20045
+ },
19656
20046
  "OutboundCampaign": {
19657
20047
  "properties": {
19658
20048
  "campaign_name": {
@@ -19866,7 +20256,7 @@
19866
20256
  "title": "Created At",
19867
20257
  "description": "Timestamp of campaign creation",
19868
20258
  "examples": [
19869
- "2025-06-17T00:00:00Z"
20259
+ "2025-06-24T00:00:00Z"
19870
20260
  ]
19871
20261
  },
19872
20262
  "updated_at": {
@@ -19875,7 +20265,7 @@
19875
20265
  "title": "Updated At",
19876
20266
  "description": "Timestamp of campaign update",
19877
20267
  "examples": [
19878
- "2025-06-17T00:00:00Z"
20268
+ "2025-06-24T00:00:00Z"
19879
20269
  ]
19880
20270
  },
19881
20271
  "last_updated_by": {
@@ -23993,6 +24383,10 @@
23993
24383
  "name": "language_groups",
23994
24384
  "description": "Operations related to language groups. A language group is a collection of language, voice, and DTMF configuration that can be linked to an agent to define the languages and voices it supports. For more information, see [Console docs](https://docs.syllable.ai/Resources/LanguageGroups)."
23995
24385
  },
24386
+ {
24387
+ "name": "organizations",
24388
+ "description": "Operations related to organizations."
24389
+ },
23996
24390
  {
23997
24391
  "name": "outbound.campaigns",
23998
24392
  "description": "Operations related to outbound message campaigns"