-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall-resources.yaml
More file actions
1287 lines (1287 loc) · 46.3 KB
/
Copy pathall-resources.yaml
File metadata and controls
1287 lines (1287 loc) · 46.3 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
---
- title: Access Grant
description: An Access Grant resource.
resource_type: access_grant
properties:
access_grant_id: ef83cca9-5fdf-4ac2-93f3-c21c5a8be54b
access_method_ids:
- a1b2c3d4-e5f6-4a3b-2c1d-0e9f8a7b6c5d
- 5f4e3d2c-1b0a-9f8e-7d6c-5b4a3c2d1e0f
- c7d8e9f0-1a2b-3c4d-5e6f-7a8b9c0d1e2f
created_at: '2025-06-16T16:54:17.946606Z'
display_name: My Access Grant
ends_at: '2025-06-18T16:54:17.946606Z'
instant_key_url: 'https://ik.seam.co/ABCXYZ'
requested_access_methods:
- display_name: PIN Code Credential
mode: code
created_at: '2025-06-16T16:54:17.946606Z'
created_access_method_ids:
- a1b2c3d4-e5f6-4a3b-2c1d-0e9f8a7b6c5d
- display_name: Card Credential
mode: card
created_at: '2025-06-16T16:54:19.946606Z'
created_access_method_ids:
- 5f4e3d2c-1b0a-9f8e-7d6c-5b4a3c2d1e0f
- display_name: Mobile Key Credential
mode: mobile_key
created_at: '2025-06-16T16:54:21.946606Z'
created_access_method_ids:
- c7d8e9f0-1a2b-3c4d-5e6f-7a8b9c0d1e2f
space_ids:
- 1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d
- 7f8e9d0a-1b2c-3d4e-5f6a-7b8c9d0e1f2a
starts_at: '2025-06-16T16:54:17.946606Z'
user_identity_id: e3d736c1-540d-4d10-83e5-9a4e135453b4
workspace_id: 750fc0bc-4450-4356-8d9f-18c6a3a6b2c7
- title: ACS Access Group
description: An access group resource.
resource_type: acs_access_group
properties:
access_group_type: salto_ks_access_group
access_group_type_display_name: Salto KS Access Group
acs_access_group_id: 3f448826-9875-4947-9519-e468090a4f7d
acs_system_id: 045baa77-6d06-40fe-a2cd-b82eef688f4a
connected_account_id: daba7bd0-edb6-4bb9-a70b-f9ae08a0e301
created_at: '2025-06-15T16:54:17.946453Z'
display_name: Main Group
errors: []
external_type: salto_ks_access_group
external_type_display_name: Salto KS Access Group
is_managed: true
name: My Access Group
pending_mutations: []
warnings: []
workspace_id: ac19352c-869a-4209-9ce7-44c740a8b5d0
- title: ACS Card Credential
description: An access system card credential resource.
resource_type: acs_credential
properties:
access_method: card
acs_credential_id: 73a0a199-024f-454d-a916-9bbda8502c12
acs_system_id: b1d03165-2759-474b-a342-e02223f27b39
acs_user_id: 0fc82df4-391b-4d00-a234-86378f1c3952
connected_account_id: daba7bd0-edb6-4bb9-a70b-f9ae08a0e301
card_number: '164d29dc4a09b65f'
created_at: '2025-06-16T16:54:17.946514Z'
display_name: Guest Lock 1, Vingcard Lock 2
ends_at: '2025-07-12T16:54:17.946512Z'
errors: []
external_type: visionline_card
external_type_display_name: Visionline Card
is_issued: true
is_latest_desired_state_synced_with_provider: true
is_managed: true
is_multi_phone_sync_credential: false
issued_at: '2025-06-16T16:54:17.946512Z'
latest_desired_state_synced_with_provider_at: '2025-06-18T16:54:17.946514Z'
starts_at: '2025-07-10T16:54:17.946512Z'
visionline_metadata:
card_function_type: guest
card_id: '5'
common_acs_entrance_ids:
- 5f4e3d2c-1b0a-9f8e-7d6c-5b4a3c2d1e0f
credential_id: '15'
guest_acs_entrance_ids:
- a1b2c3d4-e5f6-4a3b-2c1d-0e9f8a7b6c5d
is_valid: true
warnings: []
workspace_id: 005f1e54-5360-40db-8c31-4ef6baaad1fd
- title: ACS Encoder
description: An access system encoder resource.
resource_type: acs_encoder
properties:
acs_encoder_id: 681da2d6-4ac6-4b33-8c03-86281b761325
acs_system_id: c85406d2-214f-4e11-8000-a2e5b5a362a4
connected_account_id: 1b9a3e0d-443f-4063-b619-4ca7e2a97750
created_at: '2025-06-16T16:54:17.946527Z'
display_name: Encoder 1
errors: []
workspace_id: f863ac85-2c4e-49ae-8679-3ec2417f1d62
- title: ACS Entrance
description: An access system entrance resource.
resource_type: acs_entrance
properties:
acs_entrance_id: f74e4879-5991-4e2f-a368-888983dcfbfc
acs_system_id: 6a74a969-94ea-4383-b5cf-5e7da8c113d1
connected_account_id: 1b9a3e0d-443f-4063-b619-4ca7e2a97751
created_at: '2025-06-15T16:54:17.946495Z'
display_name: Main Entrance
errors: []
space_ids: []
visionline_metadata:
door_category: guest
door_name: Main Entrance
profiles:
- visionline_door_profile_id: 7f8e9d0a-1b2c-3d4e-5f6a-7b8c9d0e1f2a
visionline_door_profile_type: BLE
- title: ACS Mobile Key Credential
description: An access system mobile key credential resource.
resource_type: acs_credential
properties:
access_method: mobile_key
acs_credential_id: 73a0a199-024f-454d-a916-9bbda8502c12
acs_system_id: b1d03165-2759-474b-a342-e02223f27b39
acs_user_id: 0fc82df4-391b-4d00-a234-86378f1c3952
connected_account_id: 1b9a3e0d-443f-4063-b619-4ca7e2a97751
created_at: '2025-06-16T16:54:17.946514Z'
display_name: Front Door
errors: []
is_managed: true
is_multi_phone_sync_credential: true
is_one_time_use: false
warnings: []
workspace_id: 005f1e54-5360-40db-8c31-4ef6baaad1fd
- title: ACS PIN Code Credential
description: An access system PIN code credential resource.
resource_type: acs_credential
properties:
access_method: code
acs_credential_id: 73a0a199-024f-454d-a916-9bbda8502c12
acs_system_id: b1d03165-2759-474b-a342-e02223f27b39
acs_user_id: 0fc82df4-391b-4d00-a234-86378f1c3952
connected_account_id: 1b9a3e0d-443f-4063-b619-4ca7e2a97751
code: '123456'
created_at: '2025-06-16T16:54:17.946514Z'
display_name: FRONT_DOOR
errors: []
external_type: salto_ks_credential
external_type_display_name: Salto KS Credential
is_latest_desired_state_synced_with_provider: true
is_managed: true
is_multi_phone_sync_credential: false
is_one_time_use: false
latest_desired_state_synced_with_provider_at: '2025-06-18T16:54:17.946514Z'
starts_at: '2025-07-10T16:54:17.946512Z'
warnings: []
workspace_id: 005f1e54-5360-40db-8c31-4ef6baaad1fd
- title: ACS System
description: An access system resource.
resource_type: acs_system
properties:
acs_access_group_count: 5
acs_system_id: dbed811f-a8c7-4dab-a3cb-1a734ebd6ac7
acs_user_count: 20
connected_account_id: a94aeed0-1ae0-4e49-9c23-8444c7ceba09
connected_account_ids:
- a94aeed0-1ae0-4e49-9c23-8444c7ceba09
created_at: '2025-06-15T16:54:17.946425Z'
default_credential_manager_acs_system_id: 5dde2def-3507-44f5-9521-7ca96aa4cd18
errors: []
external_type: salto_ks_site
external_type_display_name: Salto KS site
image_alt_text: Salto KS site Logo
image_url: https://connect.getseam.com/_next/image?url=https://connect.getseam.com/assets/images/acs_systems/salto_ks_site.png&q=75&w=128
is_credential_manager: false
location:
time_zone: America/New_York
name: My ACS System
warnings: []
workspace_id: 172920be-1f4d-45d4-8519-ecc3bdee638f
- title: ACS User
description: An access system user resource.
resource_type: acs_user
properties:
access_schedule:
ends_at: '2025-06-12T11:00:00.000Z'
starts_at: '2025-06-10T15:00:00.000Z'
acs_system_id: 62d3384f-267f-4a4a-a946-d35819ec9981
acs_user_id: 6a5d9697-3cc4-436a-8165-4375ff424870
connected_account_id: c0175797-30f0-49f7-a228-2df115443ca7
created_at: '2025-06-15T16:54:17.946482Z'
display_name: Jane Doe
email_address: jane@example.com
errors: []
external_type: salto_site_user
external_type_display_name: Salto site user
full_name: Jane Doe
hid_acs_system_id: 2acbe47f-612c-422a-9205-7af292f74e7f
is_managed: true
is_suspended: false
last_successful_sync_at: '2025-06-18T17:45:00.582Z'
pending_mutations:
- to:
acs_access_group_id: 2c0fb4a0-2b42-4651-926e-1a10bedbf6ce
from:
acs_access_group_id: f1e2d3c4-b5a6-4d7c-8e9f-0a1b2c3d4e5f
message: This user's access membership is being updated.
created_at: '2025-06-18T17:57:01.867Z'
mutation_code: updating_group_membership
phone_number: '+1555551000'
user_identity_email_address: jane@example.com
user_identity_full_name: Jane Doe
user_identity_id: a23b3e02-e394-4e5f-b21c-b366b8bc0dd3
user_identity_phone_number: '+1555551000'
warnings: []
workspace_id: 8d4868e3-2f95-4f33-8689-19420b3101cd
- title: ACTIVATE_CLIMATE_PRESET Action Attempt
description: An ACTIVATE_CLIMATE_PRESET action attempt resource.
resource_type: action_attempt
properties:
action_attempt_id: f47ac10b-58cc-4372-a567-0e02b2c3d479
action_type: ACTIVATE_CLIMATE_PRESET
error: null
result: {}
status: success
- title: ENCODE_ACCESS_METHOD Action Attempt
description: An ENCODE_ACCESS_METHOD action attempt resource.
resource_type: action_attempt
properties:
action_attempt_id: 550e8400-e29b-41d4-a716-446655440000
action_type: ENCODE_ACCESS_METHOD
error: null
result:
access_method_id: 9e8d7c6b-5a4b-3c2d-1e0f-9a8b7c6d5e4f
created_at: '2025-06-14T16:54:17.946612Z'
display_name: My Card
is_card_encoding_required: true
issued_at: '2025-06-14T16:54:17.946612Z'
mode: card
workspace_id: 7c8d9e0f-1a2b-3c4d-5e6f-7a8b9c0d1e2f
status: success
- title: ENCODE_CREDENTIAL Action Attempt
description: An ENCODE_CREDENTIAL action attempt resource.
resource_type: action_attempt
properties:
action_attempt_id: 1b4e28ba-2fa1-11d2-883f-0016d3cca427
action_type: ENCODE_CREDENTIAL
error: null
result:
access_method: card
acs_credential_id: 73a0a199-024f-454d-a916-9bbda8502c12
acs_system_id: b1d03165-2759-474b-a342-e02223f27b39
acs_user_id: 0fc82df4-391b-4d00-a234-86378f1c3952
card_number: '164d29dc4a09b65f'
created_at: '2025-06-16T16:54:17.946514Z'
display_name: Guest Lock 1, Vingcard Lock 2
ends_at: '2025-07-12T16:54:17.946512Z'
errors: []
external_type: visionline_card
external_type_display_name: Visionline Card
is_issued: true
is_latest_desired_state_synced_with_provider: true
is_managed: true
is_multi_phone_sync_credential: false
issued_at: '2025-06-16T16:54:17.946512Z'
latest_desired_state_synced_with_provider_at: '2025-06-18T16:54:17.946514Z'
starts_at: '2025-07-10T16:54:17.946512Z'
visionline_metadata:
card_function_type: guest
card_id: '5'
common_acs_entrance_ids:
- 5f4e3d2c-1b0a-9f8e-7d6c-5b4a3c2d1e0f
credential_id: '15'
guest_acs_entrance_ids:
- a1b2c3d4-e5f6-4a3b-2c1d-0e9f8a7b6c5d
is_valid: true
warnings: []
workspace_id: 005f1e54-5360-40db-8c31-4ef6baaad1fd
status: success
- title: LOCK_DOOR Action Attempt
description: A LOCK_DOOR action attempt resource.
resource_type: action_attempt
properties:
action_attempt_id: 3f2b1c8d-1b5e-4f8c-9c7d-9a8b7c6d5e4f
action_type: LOCK_DOOR
error: null
result: {}
status: success
- title: PUSH_THERMOSTAT_PROGRAMS Action Attempt
description: A PUSH_THERMOSTAT_PROGRAMS action attempt resource.
resource_type: action_attempt
properties:
action_attempt_id: a1b2c3d4-e5f6-4a3b-2c1d-0e9f8a7b6c5d
action_type: PUSH_THERMOSTAT_PROGRAMS
error: null
result: {}
status: success
- title: RESET_SANDBOX_WORKSPACE Action Attempt
description: A RESET_SANDBOX_WORKSPACE action attempt resource.
resource_type: action_attempt
properties:
action_attempt_id: f8e7d6c5-4b3a-2c1d-9e0f-8a7b6c5d4e3f
action_type: RESET_SANDBOX_WORKSPACE
error: null
result: {}
status: success
- title: SCAN_CREDENTIAL Action Attempt
description: A SCAN_CREDENTIAL action attempt resource.
resource_type: action_attempt
properties:
action_attempt_id: 123e4567-e89b-12d3-a456-426614174000
action_type: SCAN_CREDENTIAL
error: null
result:
acs_credential_on_encoder:
card_number: '164d29dc4a09b65f'
created_at: '2025-06-16T16:54:17.946514Z'
ends_at: '2025-07-13T16:54:17.946512Z'
is_issued: true
starts_at: '2025-07-10T16:54:17.946512Z'
visionline_metadata:
cancelled: false
card_format: guest
card_holder: 'Guest'
card_id: '5'
common_acs_entrance_ids:
- 5f4e3d2c-1b0a-9f8e-7d6c-5b4a3c2d1e0f
discarded: false
expired: false
guest_acs_entrance_ids:
- a1b2c3d4-e5f6-4a3b-2c1d-0e9f8a7b6c5d
number_of_issued_cards: 1
overridden: false
overwritten: false
pending_auto_update: false
acs_credential_on_seam:
access_method: card
acs_credential_id: 73a0a199-024f-454d-a916-9bbda8502c12
acs_system_id: b1d03165-2759-474b-a342-e02223f27b39
acs_user_id: 0fc82df4-391b-4d00-a234-86378f1c3952
card_number: '164d29dc4a09b65f'
created_at: '2025-06-16T16:54:17.946514Z'
display_name: Guest Lock 1, Vingcard Lock 2
ends_at: '2025-07-12T16:54:17.946512Z'
errors: []
external_type: visionline_card
external_type_display_name: Visionline Card
is_issued: true
is_latest_desired_state_synced_with_provider: true
is_managed: true
is_multi_phone_sync_credential: false
issued_at: '2025-06-16T16:54:17.946512Z'
latest_desired_state_synced_with_provider_at: '2025-06-18T16:54:17.946514Z'
starts_at: '2025-07-10T16:54:17.946512Z'
visionline_metadata:
card_function_type: guest
card_id: '5'
common_acs_entrance_ids:
- 5f4e3d2c-1b0a-9f8e-7d6c-5b4a3c2d1e0f
credential_id: '15'
guest_acs_entrance_ids:
- a1b2c3d4-e5f6-4a3b-2c1d-0e9f8a7b6c5d
is_valid: true
warnings: []
workspace_id: 005f1e54-5360-40db-8c31-4ef6baaad1fd
warnings:
- warning_code: acs_credential_on_encoder_out_of_sync
warning_message: 'The following properties are out of sync between acs_credential_on_encoder and acs_credential_on_seam: ends_at'
status: success
- title: SET_FAN_MODE Action Attempt
description: A SET_FAN_MODE action attempt resource.
resource_type: action_attempt
properties:
action_attempt_id: 2a3b4c5d-6e7f-8a9b-acbd-1e2f3a4b5c6d
action_type: SET_FAN_MODE
error: null
result: {}
status: success
- title: SET_HVAC_MODE Action Attempt
description: A SET_HVAC_MODE action attempt resource.
resource_type: action_attempt
properties:
action_attempt_id: b0e1d2c3-4f5e-6a7b-8c9d-0e1f2a3b4c5d
action_type: SET_HVAC_MODE
error: null
result: {}
status: success
- title: SIMULATE_KEYPAD_CODE_ENTRY Action Attempt
description: A SIMULATE_KEYPAD_CODE_ENTRY action attempt resource.
resource_type: action_attempt
properties:
action_attempt_id: 9a8b7c6d-5e4f-3a2b-1c0d-9e8f7a6b5c4d
action_type: SIMULATE_KEYPAD_CODE_ENTRY
error: null
result: {}
status: success
- title: SIMULATE_MANUAL_LOCK_VIA_KEYPAD Action Attempt
description: A SIMULATE_MANUAL_LOCK_VIA_KEYPAD action attempt resource.
resource_type: action_attempt
properties:
action_attempt_id: f0e1d2c3-b4a5-6d7e-8f90-1a2b3c4d5e6f
action_type: SIMULATE_MANUAL_LOCK_VIA_KEYPAD
error: null
result: {}
status: success
- title: UNLOCK_DOOR Action Attempt
description: An UNLOCK_DOOR action attempt resource.
resource_type: action_attempt
properties:
action_attempt_id: 5f4e3d2c-1b0a-9f8e-7d6c-5b4a3c2d1e0f
action_type: UNLOCK_DOOR
error: null
result:
was_confirmed_by_device: false
status: success
- title: Card Access Method
description: A card access method resource.
resource_type: access_method
properties:
access_method_id: 27d8ad77-55c2-4e20-b5b3-43555926f0e8
created_at: '2025-06-14T16:54:17.946612Z'
display_name: My Card
is_card_encoding_required: true
issued_at: '2025-06-14T16:54:17.946612Z'
mode: card
workspace_id: 661025d3-c1d2-403c-83a8-af153aaedfbc
- title: Client Session
description: A client session resource.
resource_type: client_session
properties:
client_session_id: c2cbd177-1ace-414b-bb1e-9f129e4a05c1
connect_webview_ids:
- 550e8400-e29b-41d4-a716-446655440000
connected_account_ids:
- f47ac10b-58cc-4372-a567-0e02b2c3d479
created_at: '2025-06-15T16:54:17.946309Z'
customer_id: 77eccc4e-c8bc-4c7d-b83c-cb853ed3bade
device_count: 1
expires_at: '2025-06-17T16:54:17.946309Z'
token: seam_cst1891oqCmB_6dBwV8PJ2Fsoe9dWYVyMfVHq
user_identifier_key: user_id_1
user_identity_id: a6e93f84-565e-47d7-8908-1ca71ada373c
user_identity_ids:
- a6e93f84-565e-47d7-8908-1ca71ada373c
workspace_id: b887bf84-9849-4454-a562-cf84293d9781
- title: Connect Webview
description: A connect webview resource.
resource_type: connect_webview
properties:
accepted_capabilities:
- lock
- thermostat
accepted_devices: []
accepted_providers:
- schlage
- kwikset
- yale
- smartthings
any_device_allowed: false
any_provider_allowed: false
authorized_at: '2025-06-14T16:54:17.946323Z'
automatically_manage_new_devices: true
connect_webview_id: c4c30885-ec87-4b31-8d7b-9bc0678fa028
connected_account_id: 5d2fe05f-4f5b-4b91-909c-96e2601dccbe
created_at: '2025-06-14T16:54:17.946323Z'
custom_metadata:
id: internalId1
custom_redirect_failure_url: https://example.com/failure-redirect
custom_redirect_url: https://example.com/redirect
device_selection_mode: single
login_successful: true
selected_provider: schlage
status: authorized
url: 'https://connect.getseam.com/connect_webviews/view?connect_webview_id=12345678-1234-1234-1234-123456789012&auth_token=2r2Rn8V5QUtxE79gNsTmLK58KkuqrwU8d'
wait_for_device_creation: true
workspace_id: 9db95105-e77d-4577-b1b7-0a20b360d5e0
- title: Connected Account
description: A connected account resource.
resource_type: connected_account
properties:
account_type: salto_space
account_type_display_name: Salto Space
display_name: 'j**n@example.com'
automatically_manage_new_devices: true
connected_account_id: a289aa54-5488-4707-9a4b-eeea4edf311d
created_at: '2025-06-15T16:54:17.946329Z'
custom_metadata:
id: internalId1
errors: []
user_identifier:
api_url: https://example.com/api
email: jane_doe@example.com
exclusive: true
phone: '+1555551004'
username: jane_doe
warnings: []
accepted_capabilities:
- lock
- title: Device Provider
description: A device provider resource.
resource_type: device_provider
properties:
can_program_online_access_codes: true
can_remotely_unlock: true
device_provider_name: akiles
display_name: Akiles
image_url: https://connect.getseam.com/_next/image?url=https://connect.getseam.com/assets/images/logos/akiles.png&q=75&w=128
space_ids: []
provider_categories:
- stable
- consumer_smartlocks
- title: Event
description: An event resource.
resource_type: event
properties:
connected_account_id: 2e3f4a5b-6c7d-8e9f-0a1b-2c3d4e5f6a7b
created_at: '2025-06-15T16:54:18.000000Z'
device_id: b3c4d5e6-f7a8-49bc-def1-23456789abcd
event_description: The status of a device changed from offline to online. That is, the device.properties.online property changed from false to true. Note that some devices operate entirely in offline mode, so Seam never emits a device.connected event for these devices.
event_id: 6d7e8f9a-1b2c-3d4e-5f6a-7b8c9d0e1f2a
event_type: device.connected
occurred_at: '2025-06-15T16:54:17.946329Z'
workspace_id: 9a8b7c6d-5e4f-3a2b-1c0d-9e8f7a6b5c4d
- title: Instant Key
description: An Instant Key resource.
resource_type: instant_key
properties:
client_session_id: bfe3b1c6-fb9e-48b1-9b5b-c762b2983af6
created_at: '2025-06-14T16:54:17.946559Z'
expires_at: '2025-06-16T16:54:17.946559Z'
instant_key_id: 1d05c2f6-5b6f-4a9c-b80d-1eca26be12b9
instant_key_url: https://ik.seam.co/ABCXYZ
user_identity_id: e7a94acb-bd8a-4462-b6fb-8612d35cd7c3
workspace_id: 4d1c24b2-781e-4d1a-8d77-15249ad57c8a
- title: Lock Device
description: A lock device resource.
resource_type: device
properties:
can_program_online_access_codes: true
can_remotely_lock: true
can_remotely_unlock: true
capabilities_supported:
- access_code
- lock
connected_account_id: 8e3a4f1b-2c7d-4a9e-8b5f-3d2c1a0b9e8f
created_at: '2025-03-27T02:08:16.418Z'
space_ids: []
custom_metadata:
id: internalId1
device_id: a69569e1-133b-4a9d-b883-018641bfe543
device_type: schlage_lock
display_name: FRONT DOOR
errors: []
is_managed: true
location:
location_name: Front Door
timezone: America/New_York
nickname: Front Door
properties:
appearance:
name: FRONT DOOR
battery:
level: 0.48
status: good
battery_level: 0.48
code_constraints:
- constraint_type: name_length
max_length: 9
has_native_entry_events: true
image_alt_text: Schlage Sense Smart Deadbolt with Camelot Trim, Front
image_url: https://connect.getseam.com/_next/image?url=https://connect.getseam.com/assets/images/devices/schlage_sense-smart-deadbolt-with-camelot-trim_front.png&q=75&w=128
locked: false
manufacturer: schlage
model:
accessory_keypad_supported: false
can_connect_accessory_keypad: false
display_name: Encode
has_built_in_keypad: true
manufacturer_display_name: Schlage
offline_access_codes_supported: false
online_access_codes_supported: true
name: FRONT DOOR
offline_access_codes_enabled: false
online: true
online_access_codes_enabled: true
schlage_metadata:
device_id: a69569e1-133b-4a9d-b883-018641bfe543
device_name: FRONT DOOR
model: Encode
serial_number: '34000000000531e0'
supported_code_lengths:
- 4
- 5
- 6
- 7
- 8
supports_backup_access_code_pool: true
supports_offline_access_codes: false
warnings: []
workspace_id: 5d7f2e1a-9c8b-4f3e-8d2c-1a0b9e8f7c6d
- title: Customer Portal
description: A customer portal resource.
resource_type: customer_portal
properties:
created_at: '2025-06-16T16:54:17.946594Z'
customer_key: My Company
expires_at: '2025-06-17T16:54:17.946594Z'
url: https://se.am/1234
workspace_id: 67c58f1f-f148-4415-a63c-dc6c145c6b91
- title: Mobile Key Access Method
description: A mobile key access method resource.
resource_type: access_method
properties:
access_method_id: 27d8ad77-55c2-4e20-b5b3-43555926f0e8
created_at: '2025-06-14T16:54:17.946612Z'
display_name: My Mobile Key
instant_key_url: https://ik.seam.co/ABCXYZ
is_card_encoding_required: false
mode: mobile_key
workspace_id: 661025d3-c1d2-403c-83a8-af153aaedfbc
- title: Noise Sensor Device
description: A noise sensor device resource.
resource_type: device
properties:
capabilities_supported:
- noise_detection
connected_account_id: 9a8b7c6d-5e4f-3a2b-1c0d-9e8f7a6b5c4d
created_at: '2025-05-16T16:54:17.946049Z'
custom_metadata:
id: internalId1
device_id: f1e2d3c4-b5a6-4d7c-8e9f-0a1b2c3d4e5f
device_type: minut_sensor
display_name: Living Room
errors: []
is_managed: true
space_ids: []
location:
location_name: "Jane's Test Home"
timezone: America/Los_Angeles
nickname: Living Room
properties:
appearance:
name: Living Room
battery:
level: 1
status: full
battery_level: 1
currently_triggering_noise_threshold_ids: []
image_alt_text: Minut Sensor
image_url: https://connect.getseam.com/_next/image?url=https://connect.getseam.com/assets/images/devices/minut_gen-3_front.png&q=75&w=128
manufacturer: minut
minut_metadata:
device_id: 770cd3153deca3dee0fe0614
device_location:
latitude: 0
longitude: 0
device_name: Living Room
home_address:
city: San Francisco
country: US
notes: string
post_code: '44210'
region: San Francisco County
street_name1: 2258 24th Street
street_name2: ''
home_id: 2978b6d5dba395ec08300e46
home_location:
latitude: 0
longitude: 0
home_name: "Jane's Test Home"
latest_sensor_values:
accelerometer_z:
time: '2025-06-16T16:54:17.946049Z'
value: -1.00390625
humidity:
time: '2025-06-16T16:54:17.946049Z'
value: 31.110000610351562
pressure:
time: '2025-06-16T16:54:17.946049Z'
value: 101923
sound:
time: '2025-06-16T16:54:17.946049Z'
value: 47.7117919921875
temperature:
time: '2025-06-16T16:54:17.946049Z'
value: 21.270000457763672
model:
display_name: Noise Sensor
manufacturer_display_name: Minut
name: Living Room
noise_level_decibels: 47.7117919921875
online: true
warnings: []
workspace_id: 1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d
- title: Noise Threshold
description: A noise threshold resource.
resource_type: noise_threshold
properties:
device_id: 69b9e908-039b-413a-904e-5edee653ca27
ends_daily_at: 09:00:00[America/Los_Angeles]
name: My Noise Threshold
noise_threshold_decibels: 21
noise_threshold_id: f8cef69d-625f-464c-aed4-287c06e0d7fe
noise_threshold_nrs: 5
starts_daily_at: 07:00:00[America/Los_Angeles]
- title: One-Time-Use Offline Access Code
description: A one-time-use offline access code resource.
resource_type: access_code
properties:
access_code_id: e9cf6dd6-89aa-477f-a701-c08f3de13c1f
code: '1234'
common_code_key: null
created_at: '2025-06-14T16:54:17.946242Z'
device_id: c9cd621d-ef0c-45c8-b608-026ebdb74615
ends_at: '2025-07-04T16:54:17.946049Z'
errors: []
pending_mutations: []
is_backup: false
is_backup_access_code_available: false
is_external_modification_allowed: false
is_managed: true
is_offline_access_code: true
is_one_time_use: true
is_scheduled_on_device: true
is_waiting_for_code_assignment: false
name: My Access Code
pulled_backup_access_code_id: null
starts_at: '2025-07-02T16:54:17.946049Z'
status: set
type: time_bound
warnings: []
workspace_id: 750fc0bc-4450-4356-8d9f-18c6a3a6b2c7
- title: Ongoing Online Access Code
description: An ongoing online access code resource.
resource_type: access_code
properties:
access_code_id: e9cf6dd6-89aa-477f-a701-c08f3de13c1f
code: '1234'
common_code_key: auto_set_by_create_multiple_550e8400-e29b-41d4-a716-446655440000
created_at: '2025-06-14T16:54:17.946242Z'
device_id: c9cd621d-ef0c-45c8-b608-026ebdb74615
ends_at: null
errors: []
pending_mutations: []
is_backup: false
is_backup_access_code_available: true
is_external_modification_allowed: true
is_managed: true
is_offline_access_code: false
is_one_time_use: false
is_scheduled_on_device: true
is_waiting_for_code_assignment: false
name: My Access Code
pulled_backup_access_code_id: null
starts_at: null
status: set
type: ongoing
warnings: []
workspace_id: 750fc0bc-4450-4356-8d9f-18c6a3a6b2c7
- title: Pagination
description: A pagination resource.
resource_type: pagination
properties:
has_next_page: true
next_page_cursor: WyIyNTk0NTA5ODZhYmVkYmJmMWMxZTExOTU2OTI2MTk5NGE1ZDkzNDg5OTk5ZWZlMDJjZmI4YWVjOWVkYTViNjk5Iix7ImNyZWF0ZWRfYXQiOiIyMDI1LTA2LTE4VDE3OjMyOjAxLjgyN1oiLCJkZXZpY2VfaWQiOiI1MmM0YzFdYi02ODZhLTQxMzUtYWYwOS0wMzllZjE3ZTk0OTAifV0=
next_page_url: https://connect.getseam.com/devices/list?limit=50&page_cursor=WyIyNTk0NTA5ODZhYmVkYmJmMWMxZTExOTU2OTI2MTk5NGE1ZDkzNDg5OTk5ZWZlMDJjZmI4YWVjOWVkYTViNjk5Iix7ImNyZWF0ZWRfYXQiOiIyMDI1LTA2LTE4VDE3OjMyOjAxLjgyN1oiLCJkZXZpY2VfaWQiOiI1MmM0YzFdYi02ODZhLTQxMzUtYWYwOS0wMzllZjE3ZTk0OTAifV0%3D
- title: Partner Resource
description: A partner resource resource.
resource_type: partner_resource
properties:
custom_metadata:
id: internalId1
customer_key: My Company
description: Guest resource from My Company
email_address: jane@example.com
ends_at: '2025-07-02T16:54:17.946633Z'
name: My Partner Resource
partner_resource_key: guest_123
partner_resource_type: guest
phone_number: '+1555551003'
starts_at: '2025-07-01T16:54:17.946633Z'
user_identity_key: jane_doe
- title: Phone
description: A phone resource.
resource_type: phone
properties:
created_at: '2025-06-14T16:54:17.946540Z'
custom_metadata:
id: internalId1
device_id: e452f665-a635-4c65-922b-9feab0e0f84f
device_type: ios_phone
display_name: My Phone
errors: []
nickname: My Phone
properties:
assa_abloy_credential_service_metadata:
endpoints:
- endpoint_id: c7d8e9f0-1a2b-3c4d-5e6f-7a8b9c0d1e2f
is_active: true
has_active_endpoint: true
warnings: []
workspace_id: da8639a4-28a2-4884-a4f9-b7691f4cf336
- title: PIN Code Access Method
description: A PIN code access method resource.
resource_type: access_method
properties:
access_method_id: 27d8ad77-55c2-4e20-b5b3-43555926f0e8
created_at: '2025-06-14T16:54:17.946612Z'
display_name: My PIN Code
is_card_encoding_required: false
mode: code
workspace_id: 661025d3-c1d2-403c-83a8-af153aaedfbc
- title: Production Workspace
description: A production workspace resource.
resource_type: workspace
properties:
company_name: Acme
connect_partner_name: Acme
connect_webview_customization:
inviter_logo_url: https://connect.getseam.com/internal/images/view?image_id=1de135fa-f0c2-4e57-90d0-6b9a7d090a0c
logo_shape: circle
primary_button_color: '#232426'
primary_button_text_color: '#FFFDE7'
success_message: Your account has been successfully connected to Acme!
is_sandbox: false
is_suspended: false
is_publishable_key_auth_enabled: true
publishable_key: 'seam_pk1fGd41X_zKs0ZELRTEc8nWxiBsEXAMPLE'
name: My Production Workspace
workspace_id: 6a0b6282-6a98-4fef-811e-0904c485ac7a
- title: Sandbox Workspace
description: A sandbox workspace resource.
resource_type: workspace
properties:
company_name: Acme
connect_partner_name: Acme
connect_webview_customization:
inviter_logo_url: https://connect.getseam.com/internal/images/view?image_id=1de135fa-f0c2-4e57-90d0-6b9a7d090a0c
logo_shape: circle
primary_button_color: '#232426'
primary_button_text_color: '#FFFDE7'
success_message: Your account has been successfully connected to Acme!
is_sandbox: true
is_suspended: false
is_publishable_key_auth_enabled: true
publishable_key: 'seam_pk1fGd41X_zKs0ZELRTEc8nWxiBsEXAMPLE'
name: My Sandbox Workspace
workspace_id: 6a0b6282-6a98-4fef-811e-0904c485ac7a
- title: Space
description: A space resource.
resource_type: space
properties:
created_at: '2025-06-16T16:54:17.946600Z'
display_name: My Space
name: My Space
space_id: 5afeb047-3277-4102-b8c4-99edf05b91d2
workspace_id: 96bd12f9-6def-4bf4-b517-760417451ae9
- title: Thermostat Daily Program
description: A thermostat daily program resource.
resource_type: thermostat_daily_program
properties:
created_at: '2025-06-14T16:54:17.946642Z'
device_id: 58437d45-47ac-4ee6-ab27-7b2d1f2947d1
name: Weekday Program
periods:
- starts_at_time: 07:00:00
climate_preset_key: Home
- starts_at_time: 09:00:00
climate_preset_key: Away
- starts_at_time: '16:00:00'
climate_preset_key: Home
- starts_at_time: '22:30:00'
climate_preset_key: Sleep
thermostat_daily_program_id: ab8ef74c-c7cd-4100-aa32-0ef960c0080d
workspace_id: 8da8d923-e55b-45cd-84a3-6c96b3d3d454
- title: Thermostat Device
description: A thermostat device resource.
resource_type: device
properties:
can_hvac_cool: true
can_hvac_heat: true
can_hvac_heat_cool: true
can_turn_off_hvac: true
capabilities_supported:
- thermostat
connected_account_id: a0b1c2d3-e4f5-6a7b-8c9d-0e1f2a3b4c5d
created_at: '2024-10-03T22:12:15.666Z'
custom_metadata:
id: internalId1
device_id: a1b2c3d4-e5f6-7890-1234-56789abcdef0
device_type: ecobee_thermostat
display_name: Living Room
errors: []
is_managed: true
space_ids: []
location:
location_name: 2948 20th St, San Francisco, CA, 94110, US
timezone: America/Los_Angeles
nickname: Living Room
properties:
active_climate_preset:
can_delete: true
can_edit: true
climate_preset_key: sleep
cooling_set_point_celsius: 23.88888888888889
display_name: Sleep
fan_mode_setting: auto
heating_set_point_celsius: 17.77777777777778
hvac_mode_setting: heat_cool
manual_override_allowed: true
appearance:
name: Living Room
available_climate_presets:
- climate_preset_key: sleep
can_edit: true
can_delete: true
can_use_with_thermostat_daily_programs: false
name: Sleep
display_name: Sleep
fan_mode_setting: auto
hvac_mode_setting: heat_cool
manual_override_allowed: true
cooling_set_point_celsius: 23.88888888888889
heating_set_point_celsius: 17.77777777777778
cooling_set_point_fahrenheit: 75
heating_set_point_fahrenheit: 64
- climate_preset_key: home
can_edit: true
can_delete: true
can_use_with_thermostat_daily_programs: false
name: Home
display_name: Home
fan_mode_setting: auto
hvac_mode_setting: heat_cool
manual_override_allowed: false
cooling_set_point_celsius: 23.88888888888889
heating_set_point_celsius: 17.77777777777778
cooling_set_point_fahrenheit: 75
heating_set_point_fahrenheit: 64
- climate_preset_key: work
can_edit: true
can_delete: true
can_use_with_thermostat_daily_programs: false
name: Work
display_name: Work
fan_mode_setting: auto
hvac_mode_setting: heat_cool
manual_override_allowed: false
cooling_set_point_celsius: 23.88888888888889
heating_set_point_celsius: 17.77777777777778
cooling_set_point_fahrenheit: 75
heating_set_point_fahrenheit: 64
available_fan_mode_settings:
- auto
- on
available_hvac_mode_settings:
- cool
- heat
- heat_cool
- off
current_climate_setting:
display_name: Manual Setting
fan_mode_setting: auto
heating_set_point_celsius: 25
heating_set_point_fahrenheit: 77
hvac_mode_setting: heat
manual_override_allowed: true
ecobee_metadata:
device_name: Living Room
ecobee_device_id: a1b2c3d4-e5f6-7890-1234-56789abcdef0
fallback_climate_preset_key: eco
fan_mode_setting: auto
has_direct_power: true
image_alt_text: Ecobee 3 Lite Thermostat
image_url: https://connect.getseam.com/_next/image?url=https://connect.getseam.com/assets/images/devices/ecobee_3-lite_front.png&q=75&w=128
is_cooling: false
is_fan_running: false
is_heating: false
is_temporary_manual_override_active: false
manufacturer: ecobee
max_cooling_set_point_celsius: 33.333333333333336
max_cooling_set_point_fahrenheit: 92
max_heating_set_point_celsius: 26.11111111111111
max_heating_set_point_fahrenheit: 79
min_cooling_set_point_celsius: 18.333333333333336
min_cooling_set_point_fahrenheit: 65
min_heating_cooling_delta_celsius: 2.7777777777777777
min_heating_cooling_delta_fahrenheit: 5
min_heating_set_point_celsius: 7.222222222222222
min_heating_set_point_fahrenheit: 45
model:
display_name: Thermostat
manufacturer_display_name: Ecobee
name: Living Room
online: true
relative_humidity: 0.36
temperature_celsius: 21.11111111111111
temperature_fahrenheit: 70
temperature_threshold:
lower_limit_celsius: 16.66666666666667