-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
1085 lines (1026 loc) · 29.8 KB
/
openapi.yaml
File metadata and controls
1085 lines (1026 loc) · 29.8 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: LiveSession API
version: v1
servers:
- url: https://api.livesession.io/v1
description: Production server (uses live data)
paths:
# BEGIN Sessions
/sessions:
x-fern-sdk-group-name: sessions
x-fern-sdk-method-name: list
get:
summary: Get Sessions
security:
- livesession_oauth: [ users.sessions:read ]
- api_token: [ users.sessions:read ]
description: |
---
title: List sessions
group: [ENDPOINTS]
---
List of all sessions
tags:
- Sessions
parameters:
- name: page
in: query
description: The number of page to start with (default 0, max 10000).
schema:
type: integer
- name: size
in: query
description: The number of page's size (default 25, max 100).
schema:
type: integer
- name: email
in: query
description: The email address that you have associated with a session via [identify](/docs/api/browser/methods#identify).
schema:
type: string
- name: visitor_id
in: query
description: The visitor ID.
schema:
type: string
- name: tz
in: query
description: IANA timezone. Default Europe/London if RelativeDateString is applied.
schema:
type: string
- name: date_from
in: query
description: |
[ISO 8601](https://wikipedia.org/wiki/ISO_8601) string or [RelativeDateString](/docs/api/rest/RelativeDateString).
schema:
oneOf:
- type: string
- $ref: '#/components/schemas/RelativeDateString'
- name: date_to
in: query
description: |
[ISO 8601](https://wikipedia.org/wiki/ISO_8601) string or [RelativeDateString](/docs/api/rest/RelativeDateString).
schema:
oneOf:
- type: string
- $ref: '#/components/schemas/RelativeDateString'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/GetListSessionsResponse'
'400':
description: 400 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: 500 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
# BEGIN Alerts
/alerts:
get:
x-fern-sdk-group-name: alerts
x-fern-sdk-method-name: list
summary: Get all alerts
security:
- livesession_oauth: [ alerts:read ]
description: |
---
title: List alerts
group: [ENDPOINTS]
---
List of all alerts
tags:
- Alerts
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Alert'
'400':
description: 400 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: 500 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
post:
x-fern-sdk-group-name: alerts
x-fern-sdk-method-name: create
summary: Create an alert
security:
- livesession_oauth: [ alerts:write ]
description: |
---
title: Create alert
group: [ENDPOINTS]
---
Create alert
tags:
- Alerts
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AlertCreate'
responses:
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/Alert'
'400':
description: 400 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: 500 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/alerts/{id}:
put:
x-fern-sdk-group-name: alerts
x-fern-sdk-method-name: update
summary: Update an alert by ID
security:
- livesession_oauth: [ alerts:write ]
description: |
---
title: Update alert
group: [ENDPOINTS]
---
Update alert by ID
tags:
- Alerts
parameters:
- in: path
name: id
required: true
description: Unique identifier of the alert to update
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AlertUpdate'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Alert'
'400':
description: 400 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: 500 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
delete:
x-fern-sdk-group-name: alerts
x-fern-sdk-method-name: delete
summary: Delete an alert by ID
security:
- livesession_oauth: [ alerts:write ]
description: |
---
title: Delete alert
group: [ENDPOINTS]
---
Delete alert by ID
tags:
- Alerts
parameters:
- in: path
name: id
required: true
description: Unique identifier of the alert to delete
schema:
type: string
responses:
'200':
description: Alert deleted
content:
application/json:
schema:
type: object
properties:
alert_id:
type: string
description: ID of the alert that was deleted
deleted:
type: boolean
description: Indicates whether the alert was successfully deleted
'400':
description: 400 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: 500 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
# END Alerts
# BEGIN Webhooks
/webhooks:
get:
x-fern-sdk-group-name: webhooks
x-fern-sdk-method-name: list
summary: Get a list of webhooks
security:
- livesession_oauth: [ webhooks:read ]
description: |
---
title: List webhooks
group: [ENDPOINTS]
---
List of all webhooks
tags:
- Webhooks
responses:
'200':
description: List of webhooks
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Webhook'
'400':
description: 400 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: 500 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
post:
x-fern-sdk-group-name: webhooks
x-fern-sdk-method-name: create
summary: Create a webhook
security:
- livesession_oauth: [ webhooks:write ]
description: |
---
title: Create webhook
group: [ENDPOINTS]
---
Create a webhook
tags:
- Webhooks
requestBody:
description: Webhook creation request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/WebhookCreate'
responses:
'200':
description: Webhook created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Webhook'
'400':
description: 400 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: 500 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/webhooks/{id}:
put:
x-fern-sdk-group-name: webhooks
x-fern-sdk-method-name: update
summary: Update a webhook
security:
- livesession_oauth: [ webhooks:write ]
description: |
---
title: Update webhook
group: [ENDPOINTS]
---
Update a webhook
tags:
- Webhooks
parameters:
- name: id
in: path
description: ID of the webhook to update
required: true
schema:
type: string
- name: version
in: query
description: API version
required: true
schema:
type: string
enum: [ v1.0 ]
requestBody:
description: Webhook update request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/WebhookUpdate'
responses:
'200':
description: Webhook updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Webhook'
'400':
description: 400 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'404':
description: 404 response
'500':
description: 500 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
delete:
x-fern-sdk-group-name: webhooks
x-fern-sdk-method-name: delete
summary: Delete a webhook
security:
- livesession_oauth: [ webhooks:write ]
description: |
---
title: Delete webhook
group: [ENDPOINTS]
---
Delete a webhook
tags:
- Webhooks
parameters:
- name: id
in: path
description: ID of the webhook to delete
required: true
schema:
type: string
responses:
'200':
description: Webhook deleted successfully
content:
application/json:
schema:
$ref: '#/components/schemas/WebhookDeleted'
'400':
description: 400 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'404':
description: 404 response
'500':
description: 500 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
# END Webhooks
# BEGIN Websites
/websites:
get:
x-fern-sdk-group-name: websites
x-fern-sdk-method-name: list
summary: Get a list of websites
security:
- livesession_oauth: [ websites:read ]
description: |
---
title: List websites
group: [ENDPOINTS]
---
List of all websites
tags:
- Websites
responses:
'200':
description: List of websites
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Website'
'400':
description: 400 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: 500 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
post:
x-fern-sdk-group-name: websites
x-fern-sdk-method-name: create
summary: Create a website
security:
- livesession_oauth: [ websites:write ]
description: |
---
title: Create website
group: [ENDPOINTS]
---
Create a website
tags:
- Websites
requestBody:
description: Website creation request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/WebsiteCreate'
responses:
'200':
description: Create a website
content:
application/json:
schema:
type: object
$ref: '#/components/schemas/Website'
'400':
description: 400 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: 500 response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
# END Websites
components:
securitySchemes:
api_token:
type: apiKey
name: Authorization
description: "[API Tokens](https://developers.livesession.io/rest-api/introduction/#creating-a-personal-access-token)"
in: header
livesession_oauth:
type: oauth2
flows:
authorizationCode:
authorizationUrl: https://apis.livesession.io/accounts/v1/oauth2/authorize
tokenUrl: https://apis.livesession.io/accounts/v1/oauth2/access_token
refreshUrl: https://apis.livesession.io/accounts/v1/oauth2/access_token
scopes:
users.sessions:read: read user sessions
webhooks:read: read webhooks
webhooks:write: write webhooks
alerts:read: read alerts
alerts:write: write alerts
websites:read: read websites
websites:write: write websites
payment_intents:write: write payment intents
payment_intents.confirm: confirm payment intents
schemas:
# BEGIN Errors
ErrorResponse:
type: object
properties:
error:
type: object
properties:
type:
type: string
description: Type of error (e.g., validation_error, authentication_error)
code:
type: string
description: Machine-readable error code
param:
type: string
description: Name of the parameter that caused the error
message:
type: string
description: Human-readable error message
http_status_code:
type: integer
description: HTTP status code associated with the error
request_id:
type: string
description: Unique identifier for the request that caused the error
# END Errors
# BEGIN Sessions
Session:
type: object
properties:
id:
type: string
description: Unique identifier for the session
website_id:
type: string
description: ID of the website where the session was recorded
session_url:
type: string
description: URL to view the session in LiveSession dashboard
creation_timestamp:
type: integer
description: Unix timestamp when the session was created
duration:
type: integer
description: Total duration of the session in seconds
end_timestamp:
type: integer
description: Unix timestamp when the session ended
active_time:
type: integer
description: Total time the user was actively interacting with the page in seconds
end_url:
type: string
description: The last URL visited during the session
expiration_timestamp:
type: integer
description: Unix timestamp when the session recording will expire
last_event_timestamp:
type: integer
description: Unix timestamp of the last event recorded in the session
product:
type: string
description: Product identifier associated with the session
device:
type: string
description: Device type (e.g., desktop, mobile, tablet)
tags:
type: array
description: Custom tags associated with the session
items:
type: string
last_seen_page_view_id:
type: string
description: ID of the last page view in the session
seen:
type: boolean
description: Whether the session has been viewed in the dashboard
referrer:
type: string
description: URL where the user came from before starting the session
start_url:
type: string
description: First URL visited during the session
visitor_first_session:
type: boolean
description: Whether this is the visitor's first session
engagment_score:
type: number
description: Calculated engagement score for the session (0-100)
visitor:
$ref: '#/components/schemas/SessionVisitorData'
resolution:
$ref: '#/components/schemas/SessionResolutionData'
os:
$ref: '#/components/schemas/SessionOsData'
browser:
$ref: '#/components/schemas/SessionBrowserData'
utm:
$ref: '#/components/schemas/SessionUTMData'
page_views_statistics:
$ref: '#/components/schemas/SessionPageViewsStatisticsData'
events_statistics:
$ref: '#/components/schemas/SessionEventsStatisticsData'
SessionVisitorData:
type: object
properties:
id:
type: string
description: Unique identifier for the visitor
ip:
type: string
description: IP address of the visitor
geolocation:
$ref: '#/components/schemas/SessionVisitorDataGeolocation'
name:
type: string
description: Name of the visitor if identified
email:
type: string
description: Email address of the visitor if identified
email_hash:
type: string
description: Hashed version of the visitor's email for privacy
params:
type: array
description: Custom parameters associated with the visitor
items:
$ref: '#/components/schemas/SessionVisitorDataParams'
last_session_timestamp:
type: integer
description: Unix timestamp of the visitor's last session
first_session_timestamp:
type: integer
description: Unix timestamp of the visitor's first session
SessionOsData:
type: object
properties:
name:
type: string
description: Operating system name (e.g., Windows, macOS, iOS)
version:
type: string
description: Operating system version
SessionBrowserData:
type: object
properties:
description:
type: string
description: Full browser description string
name:
type: string
description: Browser name (e.g., Chrome, Firefox, Safari)
version:
type: string
description: Browser version
SessionUTMData:
type: object
properties:
source:
type: string
description: UTM source parameter (e.g., google, facebook)
medium:
type: string
description: UTM medium parameter (e.g., cpc, social)
campaign:
type: string
description: UTM campaign parameter
term:
type: string
description: UTM term parameter (search keywords)
content:
type: string
description: UTM content parameter
SessionEventsStatisticsData:
type: object
properties:
clicks:
type: integer
description: Total number of clicks during the session
error_clicks:
type: integer
description: Number of clicks on error elements
rage_clicks:
type: integer
description: Number of rapid clicks indicating user frustration
error_logs:
type: integer
description: Number of JavaScript errors logged
net_errors:
type: integer
description: Number of network errors encountered
SessionPageViewLocationData:
type: object
properties:
base:
type: string
description: Base URL of the page
href:
type: string
description: Full URL of the page
origin:
type: string
description: Origin of the page (protocol + hostname)
referrer:
type: string
description: URL of the previous page
SessionPageViewViewPortData:
type: object
properties:
height:
type: integer
description: Viewport height in pixels
width:
type: integer
description: Viewport width in pixels
SessionVisitorDataGeolocation:
type: object
properties:
country_code:
type: string
description: Two-letter country code (ISO 3166-1 alpha-2)
city:
type: string
description: City name
region:
type: string
description: Region or state name
SessionVisitorDataParams:
type: object
properties:
name:
type: string
description: Parameter name
value:
type: string
description: Parameter value
SessionResolutionData:
type: object
properties:
height:
type: integer
description: Screen height in pixels
width:
type: integer
description: Screen width in pixels
resolution:
type: string
description: Screen resolution (e.g., "1920x1080")
SessionPageViewsStatisticsData:
type: object
properties:
count:
type: integer
description: Total number of page views in the session
GetListSessionsResponse:
type: object
properties:
total:
type: integer
description: Total number of sessions matching the query
page:
$ref: '#/components/schemas/Pagination'
sessions:
type: array
description: List of session objects
items:
$ref: '#/components/schemas/Session'
Pagination:
type: object
properties:
num:
type: integer
description: Current page number
size:
type: integer
description: Number of items per page
RelativeDateString:
type: string
description: |
* `TODAY` - Today since midnight
* `YESTERDAY` - Yesterday since midnight
* `BEGINNING_OF_WEEK` - Nearest monday since midnight
* `BEGINNING_OF_MONTH` - 1st of the month since midnight
* `BEGINNING_OF_PREV_MONTH` - Previous 1st of the month since midnight
* `TODAY-7DAYS` - Exact 7 days ago since midnight
* `TODAY-30DAYS` - Exact 30 days ago since midnight
enum:
- TODAY
- YESTERDAY
- BEGINNING_OF_WEEK
- BEGINNING_OF_MONTH
- BEGINNING_OF_PREV_MONTH
- TODAY-7DAYS
- TODAY-30DAYS
# END Sessions
# BEGIN Alerts
AlertCreate:
type: object
required:
- name
- events
- provider
properties:
name:
type: string
description: Name of the alert for easy identification
events:
type: array
description: List of events that will trigger the alert
items:
$ref: '#/components/schemas/AlertEvent'
provider:
$ref: '#/components/schemas/AlertProviderEnum'
description: Notification provider for the alert, `slack` or `webhooks`
slack_channel_id:
type: string
description: Slack channel ID where notifications will be sent (required if provider is `slack`)
webhook_id:
type: string
description: Webhook ID where notifications will be sent (required if provider is `webhooks`)
AlertUpdate:
type: object
properties:
name:
type: string
description: New name for the alert
events:
type: array
description: Updated list of events that will trigger the alert
items:
$ref: '#/components/schemas/AlertEvent'
provider:
$ref: '#/components/schemas/AlertProviderEnum'
description: Updated notification provider for the alert
slack_channel_id:
type: string
description: Updated Slack channel ID for notifications
webhook_id:
type: string
description: Updated webhook ID for notifications
AlertEvent:
type: object
properties:
kind:
type: integer
description: Kind of event, more info [here](/docs/api/rest/EventKind)
value:
type: string
description: Value or threshold that triggers the alert
Alert:
type: object
properties:
alert_id:
type: string
description: Unique identifier for the alert
name:
type: string
description: Name of the alert
events:
type: array
description: List of events that trigger the alert
items:
$ref: '#/components/schemas/AlertEvent'
provider:
$ref: '#/components/schemas/AlertProviderEnum'
description: Notification provider for the alert
slack_channel_id:
type: string
description: Slack channel ID for notifications
webhook_id:
type: string
description: Webhook ID for notifications
enabled:
type: boolean
description: Whether the alert is currently active
creation_date:
type: string
description: |
[ISO 8601](https://wikipedia.org/wiki/ISO_8601) timestamp when the alert was created
AlertDeleted:
type: object
properties:
alert_id:
type: string
description: ID of the deleted alert
deleted:
type: boolean
description: Confirmation that the alert was deleted
AlertProviderEnum:
type: string
description: Available notification providers for alerts
enum:
- slack
- webhooks
# END Alerts
# BEGIN Webhooks
WebhookCreate:
type: object
required:
- url
- website_id
- version
properties:
url:
type: string
description: URL for the webhook
website_id:
type: string
description: Website ID