-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsegment-public-api-openapi.yml
More file actions
2270 lines (2270 loc) · 67.7 KB
/
segment-public-api-openapi.yml
File metadata and controls
2270 lines (2270 loc) · 67.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.1.0
info:
title: Segment Public API
description: >-
The Segment Public API allows developers to programmatically manage
Segment workspaces and their resources. It supports full CRUD operations
for sources, destinations, warehouses, tracking plans, functions,
transformations, and catalog entries. The API follows REST conventions
with standard HTTP methods and predictable resource-oriented URLs. It
is available for Team and Business tier customers and is the recommended
API going forward, replacing the older Config API.
version: '1.0.0'
contact:
name: Segment Support
url: https://segment.com/help/
termsOfService: https://segment.com/legal/terms/
externalDocs:
description: Segment Public API Documentation
url: https://docs.segmentapis.com/
servers:
- url: https://api.segmentapis.com
description: Production Server
tags:
- name: Catalog
description: >-
Operations for browsing the Segment catalog of available sources
and destination integrations.
- name: Destinations
description: >-
Operations for managing destinations where collected data is
sent, including configuration and connection settings.
- name: Functions
description: >-
Operations for managing custom functions that transform or
enrich data flowing through Segment.
- name: Labels
description: >-
Operations for managing labels used to organize and control
access to workspace resources.
- name: Regulations
description: >-
Operations for managing data privacy regulations and
suppression requests.
- name: Sources
description: >-
Operations for creating, reading, updating, and deleting data
collection sources within a workspace.
- name: Tracking Plans
description: >-
Operations for managing tracking plans that define and enforce
data schemas for event tracking.
- name: Transformations
description: >-
Operations for managing transformations that modify event data
before it reaches destinations.
- name: Warehouses
description: >-
Operations for managing data warehouse connections, including
creating and configuring warehouse destinations.
- name: Workspaces
description: >-
Operations for managing Segment workspaces, including retrieving
workspace details and configuration.
security:
- bearerAuth: []
paths:
/workspace:
get:
operationId: getWorkspace
summary: Get workspace
description: >-
Returns the workspace associated with the access token used
to make the request, including the workspace name, ID, and slug.
tags:
- Workspaces
responses:
'200':
description: Workspace retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
workspace:
$ref: '#/components/schemas/Workspace'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
/sources:
get:
operationId: listSources
summary: List sources
description: >-
Returns a list of all sources in the workspace, including their
configuration, write keys, and metadata.
tags:
- Sources
parameters:
- $ref: '#/components/parameters/PaginationCursor'
- $ref: '#/components/parameters/PaginationCount'
responses:
'200':
description: Sources retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
sources:
type: array
items:
$ref: '#/components/schemas/Source'
pagination:
$ref: '#/components/schemas/Pagination'
'401':
$ref: '#/components/responses/Unauthorized'
post:
operationId: createSource
summary: Create source
description: >-
Creates a new source in the workspace with the specified
configuration and metadata.
tags:
- Sources
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- slug
- metadataId
properties:
slug:
type: string
description: >-
URL-friendly name for the source.
metadataId:
type: string
description: >-
The ID of the source metadata from the catalog.
enabled:
type: boolean
description: >-
Whether the source is enabled.
settings:
type: object
description: >-
Configuration settings for the source.
additionalProperties: true
responses:
'200':
description: Source created successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
source:
$ref: '#/components/schemas/Source'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/sources/{sourceId}:
get:
operationId: getSource
summary: Get source
description: >-
Returns a single source by its ID, including its configuration,
write key, and metadata.
tags:
- Sources
parameters:
- $ref: '#/components/parameters/SourceId'
responses:
'200':
description: Source retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
source:
$ref: '#/components/schemas/Source'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
patch:
operationId: updateSource
summary: Update source
description: >-
Updates an existing source with the provided configuration changes.
tags:
- Sources
parameters:
- $ref: '#/components/parameters/SourceId'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
name:
type: string
description: >-
Updated name for the source.
enabled:
type: boolean
description: >-
Whether the source is enabled.
slug:
type: string
description: >-
Updated URL-friendly name.
settings:
type: object
description: >-
Updated configuration settings.
additionalProperties: true
responses:
'200':
description: Source updated successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
source:
$ref: '#/components/schemas/Source'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
delete:
operationId: deleteSource
summary: Delete source
description: >-
Deletes a source from the workspace by its ID. This action
is irreversible.
tags:
- Sources
parameters:
- $ref: '#/components/parameters/SourceId'
responses:
'200':
description: Source deleted successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
status:
type: string
description: >-
Status of the delete operation.
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/destinations:
get:
operationId: listDestinations
summary: List destinations
description: >-
Returns a list of all destinations in the workspace, including
their configuration and connection status.
tags:
- Destinations
parameters:
- $ref: '#/components/parameters/PaginationCursor'
- $ref: '#/components/parameters/PaginationCount'
responses:
'200':
description: Destinations retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
destinations:
type: array
items:
$ref: '#/components/schemas/Destination'
pagination:
$ref: '#/components/schemas/Pagination'
'401':
$ref: '#/components/responses/Unauthorized'
post:
operationId: createDestination
summary: Create destination
description: >-
Creates a new destination connected to a source in the workspace.
tags:
- Destinations
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- sourceId
- metadataId
properties:
sourceId:
type: string
description: >-
The ID of the source to connect.
metadataId:
type: string
description: >-
The ID of the destination metadata from the catalog.
enabled:
type: boolean
description: >-
Whether the destination is enabled.
name:
type: string
description: >-
Optional display name for the destination.
settings:
type: object
description: >-
Configuration settings for the destination.
additionalProperties: true
responses:
'200':
description: Destination created successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
destination:
$ref: '#/components/schemas/Destination'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/destinations/{destinationId}:
get:
operationId: getDestination
summary: Get destination
description: >-
Returns a single destination by its ID, including its configuration
and connection status.
tags:
- Destinations
parameters:
- $ref: '#/components/parameters/DestinationId'
responses:
'200':
description: Destination retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
destination:
$ref: '#/components/schemas/Destination'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
patch:
operationId: updateDestination
summary: Update destination
description: >-
Updates an existing destination with the provided changes.
tags:
- Destinations
parameters:
- $ref: '#/components/parameters/DestinationId'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
name:
type: string
description: >-
Updated display name.
enabled:
type: boolean
description: >-
Whether the destination is enabled.
settings:
type: object
description: >-
Updated configuration settings.
additionalProperties: true
responses:
'200':
description: Destination updated successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
destination:
$ref: '#/components/schemas/Destination'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
delete:
operationId: deleteDestination
summary: Delete destination
description: >-
Deletes a destination from the workspace by its ID.
tags:
- Destinations
parameters:
- $ref: '#/components/parameters/DestinationId'
responses:
'200':
description: Destination deleted successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
status:
type: string
description: >-
Status of the delete operation.
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/warehouses:
get:
operationId: listWarehouses
summary: List warehouses
description: >-
Returns a list of all warehouses in the workspace.
tags:
- Warehouses
parameters:
- $ref: '#/components/parameters/PaginationCursor'
- $ref: '#/components/parameters/PaginationCount'
responses:
'200':
description: Warehouses retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
warehouses:
type: array
items:
$ref: '#/components/schemas/Warehouse'
pagination:
$ref: '#/components/schemas/Pagination'
'401':
$ref: '#/components/responses/Unauthorized'
post:
operationId: createWarehouse
summary: Create warehouse
description: >-
Creates a new warehouse connection in the workspace.
tags:
- Warehouses
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- metadataId
properties:
metadataId:
type: string
description: >-
The ID of the warehouse metadata from the catalog.
enabled:
type: boolean
description: >-
Whether the warehouse is enabled.
settings:
type: object
description: >-
Configuration settings for the warehouse connection.
additionalProperties: true
responses:
'200':
description: Warehouse created successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
warehouse:
$ref: '#/components/schemas/Warehouse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/warehouses/{warehouseId}:
get:
operationId: getWarehouse
summary: Get warehouse
description: >-
Returns a single warehouse by its ID.
tags:
- Warehouses
parameters:
- $ref: '#/components/parameters/WarehouseId'
responses:
'200':
description: Warehouse retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
warehouse:
$ref: '#/components/schemas/Warehouse'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
patch:
operationId: updateWarehouse
summary: Update warehouse
description: >-
Updates an existing warehouse with the provided changes.
tags:
- Warehouses
parameters:
- $ref: '#/components/parameters/WarehouseId'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
enabled:
type: boolean
description: >-
Whether the warehouse is enabled.
settings:
type: object
description: >-
Updated configuration settings.
additionalProperties: true
responses:
'200':
description: Warehouse updated successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
warehouse:
$ref: '#/components/schemas/Warehouse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
delete:
operationId: deleteWarehouse
summary: Delete warehouse
description: >-
Deletes a warehouse connection from the workspace.
tags:
- Warehouses
parameters:
- $ref: '#/components/parameters/WarehouseId'
responses:
'200':
description: Warehouse deleted successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
status:
type: string
description: >-
Status of the delete operation.
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/tracking-plans:
get:
operationId: listTrackingPlans
summary: List tracking plans
description: >-
Returns a list of all tracking plans in the workspace.
tags:
- Tracking Plans
parameters:
- $ref: '#/components/parameters/PaginationCursor'
- $ref: '#/components/parameters/PaginationCount'
responses:
'200':
description: Tracking plans retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
trackingPlans:
type: array
items:
$ref: '#/components/schemas/TrackingPlan'
pagination:
$ref: '#/components/schemas/Pagination'
'401':
$ref: '#/components/responses/Unauthorized'
post:
operationId: createTrackingPlan
summary: Create tracking plan
description: >-
Creates a new tracking plan in the workspace with the specified
rules and configuration.
tags:
- Tracking Plans
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- name
properties:
name:
type: string
description: >-
The name of the tracking plan.
description:
type: string
description: >-
A description of the tracking plan.
type:
type: string
description: >-
The type of tracking plan.
enum:
- ENGAGE
- LIVE
- PROPERTY_LIBRARY
- RULE_LIBRARY
- TEMPLATE
rules:
type: array
description: >-
The rules that define the tracking plan.
items:
$ref: '#/components/schemas/TrackingPlanRule'
responses:
'200':
description: Tracking plan created successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
trackingPlan:
$ref: '#/components/schemas/TrackingPlan'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/tracking-plans/{trackingPlanId}:
get:
operationId: getTrackingPlan
summary: Get tracking plan
description: >-
Returns a single tracking plan by its ID.
tags:
- Tracking Plans
parameters:
- $ref: '#/components/parameters/TrackingPlanId'
responses:
'200':
description: Tracking plan retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
trackingPlan:
$ref: '#/components/schemas/TrackingPlan'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
patch:
operationId: updateTrackingPlan
summary: Update tracking plan
description: >-
Updates an existing tracking plan with the provided changes.
tags:
- Tracking Plans
parameters:
- $ref: '#/components/parameters/TrackingPlanId'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
name:
type: string
description: >-
Updated name for the tracking plan.
description:
type: string
description: >-
Updated description.
responses:
'200':
description: Tracking plan updated successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
trackingPlan:
$ref: '#/components/schemas/TrackingPlan'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
delete:
operationId: deleteTrackingPlan
summary: Delete tracking plan
description: >-
Deletes a tracking plan from the workspace.
tags:
- Tracking Plans
parameters:
- $ref: '#/components/parameters/TrackingPlanId'
responses:
'200':
description: Tracking plan deleted successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
status:
type: string
description: >-
Status of the delete operation.
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/catalog/sources:
get:
operationId: listCatalogSources
summary: List catalog sources
description: >-
Returns a list of all available source integrations in the
Segment catalog.
tags:
- Catalog
parameters:
- $ref: '#/components/parameters/PaginationCursor'
- $ref: '#/components/parameters/PaginationCount'
responses:
'200':
description: Catalog sources retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
sourcesCatalog:
type: array
items:
$ref: '#/components/schemas/CatalogSource'
pagination:
$ref: '#/components/schemas/Pagination'
'401':
$ref: '#/components/responses/Unauthorized'
/catalog/sources/{sourceMetadataId}:
get:
operationId: getCatalogSource
summary: Get catalog source
description: >-
Returns a single source integration from the catalog by its
metadata ID.
tags:
- Catalog
parameters:
- name: sourceMetadataId
in: path
required: true
description: >-
The ID of the source metadata.
schema:
type: string
responses:
'200':
description: Catalog source retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
sourceCatalog:
$ref: '#/components/schemas/CatalogSource'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/catalog/destinations:
get:
operationId: listCatalogDestinations
summary: List catalog destinations
description: >-
Returns a list of all available destination integrations in the
Segment catalog.
tags:
- Catalog
parameters:
- $ref: '#/components/parameters/PaginationCursor'
- $ref: '#/components/parameters/PaginationCount'
responses:
'200':
description: Catalog destinations retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
destinationsCatalog:
type: array
items:
$ref: '#/components/schemas/CatalogDestination'
pagination:
$ref: '#/components/schemas/Pagination'
'401':
$ref: '#/components/responses/Unauthorized'
/catalog/destinations/{destinationMetadataId}:
get:
operationId: getCatalogDestination
summary: Get catalog destination
description: >-
Returns a single destination integration from the catalog by its
metadata ID.
tags:
- Catalog
parameters:
- name: destinationMetadataId
in: path
required: true
description: >-
The ID of the destination metadata.
schema:
type: string
responses:
'200':
description: Catalog destination retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
destinationCatalog:
$ref: '#/components/schemas/CatalogDestination'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/functions:
get:
operationId: listFunctions
summary: List functions
description: >-
Returns a list of all custom functions in the workspace.
tags:
- Functions
parameters:
- $ref: '#/components/parameters/PaginationCursor'
- $ref: '#/components/parameters/PaginationCount'
- name: resourceType
in: query
description: >-
Filter functions by resource type.
schema:
type: string
enum:
- DESTINATION
- INSERT_DESTINATION
- INSERT_SOURCE
- SOURCE
responses:
'200':
description: Functions retrieved successfully.
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
functions:
type: array