-
Notifications
You must be signed in to change notification settings - Fork 8
/
openapi.yml
5726 lines (5726 loc) · 236 KB
/
openapi.yml
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.0.3"
info:
title: "Clerk Backend API"
x-logo:
{
"url": "https://clerk.com/_next/image?url=%2Fimages%2Fclerk-logo.svg&w=96&q=75",
"altText": "Clerk docs",
"href": "https://clerk.com/docs",
}
contact:
email: "[email protected]"
name: "Clerk Platform Team"
url: "https://clerk.com/support"
description: "The Clerk REST Backend API, meant to be accessed by backend\nservers.\n\n### Versions\n\nWhen the API changes in a way that isn't compatible with older versions, a new version is released.\nEach version is identified by its release date, e.g. `2021-02-05`. For more information, please see [Clerk API Versions](https://clerk.com/docs/backend-requests/versioning/overview).\n\n\nPlease see https://clerk.com/docs for more information."
version: "v1"
termsOfService: "https://clerk.com/terms"
license:
name: "MIT"
url: "https://github.com/clerkinc/clerk-sdk-go/blob/main/LICENSE"
servers:
- url: "https://api.clerk.com/v1"
security:
- bearerAuth: []
tags:
- name: "Actor Tokens"
description: "Allow your users to sign in on behalf of other users."
externalDocs:
url: "https://clerk.com/docs/authentication/user-impersonation#actor-tokens"
- name: "Allow-list / Block-list"
description: "Allow-lists and Block-lists allow you to control who can sign up or sign in\nto your application, by restricting access based on the user's email\naddress or phone number."
externalDocs:
url: "https://clerk.com/docs/authentication/allowlist"
- name: "Clients"
description: "The Client object tracks sessions, as well as the state of any sign in and sign up attempts, for a given device."
externalDocs:
url: "https://clerk.com/docs/reference/clerkjs/client"
- name: "Domains"
description: "Domains represent each instance's URLs and DNS setup."
- name: "Email Addresses"
description: "A user can be associated with one or more email addresses, which allows them to be contacted via email."
externalDocs:
url: "https://clerk.com/docs/reference/clerkjs/emailaddress"
- name: "Email & SMS Templates"
description: "Email & SMS templates allow you to customize the theming and wording of emails & SMS messages that are sent by your instance."
externalDocs:
url: "https://clerk.com/docs/authentication/email-sms-templates"
- name: "Instance Settings"
description: "Modify the settings of your instance."
- name: "Invitations"
description: "Invitations allow you to invite someone to sign up to your application, via email."
externalDocs:
url: "https://clerk.com/docs/authentication/invitations"
- name: "JWKS"
description: "Retrieve the JSON Web Key Set which can be used to verify the token signatures of the instance."
- name: "JWT Templates"
description: "JWT Templates allow you to generate custom authentication tokens\ntied to authenticated sessions, enabling you to integrate with third-party\nservices."
externalDocs:
url: "https://clerk.com/docs/request-authentication/jwt-templates"
- name: "OAuth Applications"
description: "OAuth applications contain data for clients using Clerk as an OAuth2 identity provider."
- name: "Organizations"
description: "Organizations are used to group members under a common entity and provide shared access to resources."
externalDocs:
url: "https://clerk.com/docs/organizations/overview"
- name: "Organization Invitations"
description: "Invite users to an organization."
externalDocs:
url: "https://clerk.com/docs/organizations/invite-users"
- name: "Organization Memberships"
description: "Manage member roles in an organization."
externalDocs:
url: "https://clerk.com/docs/organizations/manage-member-roles"
- name: "Phone Numbers"
description: "A user can be associated with one or more phone numbers, which allows them to be contacted via SMS."
externalDocs:
url: "https://clerk.com/docs/reference/clerkjs/phonenumber"
- name: "Redirect URLs"
description: "Redirect URLs are whitelisted URLs that facilitate secure authentication flows in native applications (e.g. React Native, Expo).\nIn these contexts, Clerk ensures that security-critical nonces are passed only to the whitelisted URLs."
- name: "SAML Connections"
description: "A SAML Connection holds configuration data required for facilitating a SAML SSO flow between your\nClerk Instance (SP) and a particular SAML IdP."
- name: "Sessions"
description: "The Session object is an abstraction over an HTTP session.\nIt models the period of information exchange between a user and the server.\nSessions are created when a user successfully goes through the sign in or sign up flows."
externalDocs:
url: "https://clerk.com/docs/reference/clerkjs/session"
- name: "Sign-in Tokens"
description: "Sign-in tokens are JWTs that can be used to sign in to an application without specifying any credentials.\nA sign-in token can be used at most once and they can be consumed from the Frontend API using the `ticket` strategy."
- name: "Testing Tokens"
description: "Tokens meant for use by end-to-end test suites in requests to the Frontend API, so as to bypass bot detection measures."
externalDocs:
url: "https://clerk.com/docs/testing/overview#testing-tokens"
- name: "Users"
description: "The user object represents a user that has successfully signed up to your application."
externalDocs:
url: "https://clerk.com/docs/reference/clerkjs/user"
- name: "Webhooks"
description: "You can configure webhooks to be notified about various events that happen on your instance."
externalDocs:
url: "https://clerk.com/docs/integration/webhooks"
- name: "Miscellaneous"
description: "Various endpoints that do not belong in any particular category."
- name: "Beta Features"
description: "Modify instance settings that are currently in beta."
externalDocs:
url: "https://clerk.com/docs"
paths:
"/public/interstitial":
get:
x-speakeasy-group: miscellaneous
x-speakeasy-name-override: getPublicInterstitial
security: []
summary: "Returns the markup for the interstitial page"
description: "The Clerk interstitial endpoint serves an html page that loads clerk.js in order to check the user's authentication state.\nIt is used by Clerk SDKs when the user's authentication state cannot be immediately determined."
operationId: "GetPublicInterstitial"
tags:
- "Miscellaneous"
parameters:
- name: "frontendApi"
in: "query"
required: false
description: "The Frontend API key of your instance"
schema:
type: "string"
- name: "publishable_key"
in: "query"
required: false
description: "The publishable key of your instance"
schema:
type: "string"
responses:
"200":
description: "The interstitial page markup"
"400":
description: "A required query parameter is missing"
"500":
description: "An infinite redirect loop was detected"
"/jwks":
get:
x-speakeasy-group: jwks
x-speakeasy-name-override: getJWKS
operationId: "GetJWKS"
summary: "Retrieve the JSON Web Key Set of the instance"
description: "Retrieve the JSON Web Key Set of the instance"
tags:
- "JWKS"
responses:
"200":
description: "The JSON Web Key Set"
"/clients":
get:
x-speakeasy-usage-example: true
x-speakeasy-group: clients
x-speakeasy-name-override: list
deprecated: true
operationId: "GetClientList"
tags:
- "Clients"
summary: "List all clients"
description: "Returns a list of all clients. The clients are returned sorted by creation date,\nwith the newest clients appearing first.\nWarning: the endpoint is being deprecated and will be removed in future versions."
x-speakeasy-pagination:
type: offsetLimit
inputs:
- name: limit
in: parameters
type: limit
- name: offset
in: parameters
type: offset
outputs:
results: $
parameters:
- { "$ref": "#/components/parameters/LimitParameter" }
- { "$ref": "#/components/parameters/OffsetParameter" }
responses:
"200": { "$ref": "#/components/responses/Client.List" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"410": { "$ref": "#/components/responses/DeprecatedEndpoint" }
"422": { "$ref": "#/components/responses/UnprocessableEntity" }
"/clients/verify":
post:
x-speakeasy-group: clients
x-speakeasy-name-override: verify
operationId: "VerifyClient"
tags:
- "Clients"
summary: "Verify a client"
description: "Verifies the client in the provided token"
requestBody:
description: "Parameters."
content:
"application/json":
schema:
type: "object"
additionalProperties: false
properties:
"token":
type: "string"
description: "A JWT Token that represents the active client."
responses:
"200": { "$ref": "#/components/responses/Client" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"/clients/{client_id}":
get:
x-speakeasy-group: clients
x-speakeasy-name-override: get
operationId: "GetClient"
tags:
- "Clients"
summary: "Get a client"
description: "Returns the details of a client."
parameters:
- name: "client_id"
in: "path"
description: "Client ID."
required: true
schema:
type: "string"
responses:
"200": { "$ref": "#/components/responses/Client" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"/email_addresses":
post:
x-speakeasy-group: emailAddresses
x-speakeasy-name-override: create
operationId: "CreateEmailAddress"
tags:
- "Email Addresses"
summary: "Create an email address"
description: "Create a new email address"
requestBody:
content:
"application/json":
schema:
type: "object"
properties:
"user_id":
type: "string"
description: "The ID representing the user"
"email_address":
type: "string"
description: "The new email address. Must adhere to the RFC 5322 specification for email address format."
"verified":
type: "boolean"
description: "When created, the email address will be marked as verified."
nullable: true
"primary":
type: "boolean"
description: "Create this email address as the primary email address for the user.\nDefault: false, unless it is the first email address."
nullable: true
responses:
"200": { "$ref": "#/components/responses/EmailAddress" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"403": { "$ref": "#/components/responses/AuthorizationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"422": { "$ref": "#/components/responses/UnprocessableEntity" }
"/email_addresses/{email_address_id}":
get:
x-speakeasy-group: emailAddresses
x-speakeasy-name-override: get
operationId: "GetEmailAddress"
tags:
- "Email Addresses"
summary: "Retrieve an email address"
description: "Returns the details of an email address."
parameters:
- name: "email_address_id"
in: "path"
description: "The ID of the email address to retrieve"
required: true
schema:
type: "string"
responses:
"200": { "$ref": "#/components/responses/EmailAddress" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"403": { "$ref": "#/components/responses/AuthorizationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
delete:
x-speakeasy-group: emailAddresses
x-speakeasy-name-override: delete
operationId: "DeleteEmailAddress"
tags:
- "Email Addresses"
summary: "Delete an email address"
description: "Delete the email address with the given ID"
parameters:
- name: "email_address_id"
in: "path"
description: "The ID of the email address to delete"
required: true
schema:
type: "string"
responses:
"200": { "$ref": "#/components/responses/DeletedObject" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"403": { "$ref": "#/components/responses/AuthorizationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
patch:
x-speakeasy-group: emailAddresses
x-speakeasy-name-override: update
operationId: "UpdateEmailAddress"
tags:
- "Email Addresses"
summary: "Update an email address"
description: "Updates an email address."
parameters:
- name: "email_address_id"
in: "path"
description: "The ID of the email address to update"
required: true
schema:
type: "string"
requestBody:
content:
"application/json":
schema:
type: "object"
properties:
"verified":
type: "boolean"
description: "The email address will be marked as verified."
nullable: true
"primary":
type: "boolean"
description: "Set this email address as the primary email address for the user."
nullable: true
responses:
"200": { "$ref": "#/components/responses/EmailAddress" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"403": { "$ref": "#/components/responses/AuthorizationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"/phone_numbers":
post:
x-speakeasy-group: phoneNumbers
x-speakeasy-name-override: create
operationId: "CreatePhoneNumber"
tags:
- "Phone Numbers"
summary: "Create a phone number"
description: "Create a new phone number"
requestBody:
content:
"application/json":
schema:
type: "object"
properties:
"user_id":
type: "string"
description: "The ID representing the user"
"phone_number":
type: "string"
description: "The new phone number. Must adhere to the E.164 standard for phone number format."
"verified":
type: "boolean"
description: "When created, the phone number will be marked as verified."
nullable: true
"primary":
type: "boolean"
description: "Create this phone number as the primary phone number for the user.\nDefault: false, unless it is the first phone number."
nullable: true
"reserved_for_second_factor":
type: "boolean"
description: "Create this phone number as reserved for multi-factor authentication.\nThe phone number must also be verified.\nIf there are no other reserved second factors, the phone number will be set as the default second factor."
nullable: true
responses:
"200": { "$ref": "#/components/responses/PhoneNumber" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"403": { "$ref": "#/components/responses/AuthorizationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"422": { "$ref": "#/components/responses/UnprocessableEntity" }
"/phone_numbers/{phone_number_id}":
get:
x-speakeasy-group: phoneNumbers
x-speakeasy-name-override: get
operationId: "GetPhoneNumber"
tags:
- "Phone Numbers"
summary: "Retrieve a phone number"
description: "Returns the details of a phone number"
parameters:
- name: "phone_number_id"
in: "path"
description: "The ID of the phone number to retrieve"
required: true
schema:
type: "string"
responses:
"200": { "$ref": "#/components/responses/PhoneNumber" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"403": { "$ref": "#/components/responses/AuthorizationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
delete:
x-speakeasy-group: phoneNumbers
x-speakeasy-name-override: delete
operationId: "DeletePhoneNumber"
tags:
- "Phone Numbers"
summary: "Delete a phone number"
description: "Delete the phone number with the given ID"
parameters:
- name: "phone_number_id"
in: "path"
description: "The ID of the phone number to delete"
required: true
schema:
type: "string"
responses:
"200": { "$ref": "#/components/responses/DeletedObject" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"403": { "$ref": "#/components/responses/AuthorizationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
patch:
x-speakeasy-group: phoneNumbers
x-speakeasy-name-override: update
operationId: "UpdatePhoneNumber"
tags:
- "Phone Numbers"
summary: "Update a phone number"
description: "Updates a phone number"
parameters:
- name: "phone_number_id"
in: "path"
description: "The ID of the phone number to update"
required: true
schema:
type: "string"
requestBody:
content:
"application/json":
schema:
type: "object"
properties:
"verified":
type: "boolean"
description: "The phone number will be marked as verified."
nullable: true
"primary":
type: "boolean"
description: "Set this phone number as the primary phone number for the user."
nullable: true
"reserved_for_second_factor":
type: "boolean"
description: "Set this phone number as reserved for multi-factor authentication.\nThe phone number must also be verified.\nIf there are no other reserved second factors, the phone number will be set as the default second factor."
nullable: true
responses:
"200": { "$ref": "#/components/responses/PhoneNumber" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"403": { "$ref": "#/components/responses/AuthorizationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"/sessions":
get:
x-speakeasy-group: sessions
x-speakeasy-name-override: list
operationId: "GetSessionList"
tags:
- "Sessions"
summary: "List all sessions"
description: "Returns a list of all sessions.\nThe sessions are returned sorted by creation date, with the newest sessions appearing first.\n**Deprecation Notice (2024-01-01):** All parameters were initially considered optional, however\nmoving forward at least one of `client_id` or `user_id` parameters should be provided."
parameters:
- name: "client_id"
in: "query"
required: false
description: "List sessions for the given client"
schema:
type: "string"
- name: "user_id"
in: "query"
required: false
description: "List sessions for the given user"
schema:
type: "string"
- name: "status"
in: "query"
required: false
description: "Filter sessions by the provided status"
schema:
type: "string"
enum:
- "abandoned"
- "active"
- "ended"
- "expired"
- "removed"
- "replaced"
- "revoked"
- { "$ref": "#/components/parameters/LimitParameter" }
- { "$ref": "#/components/parameters/OffsetParameter" }
# x-speakeasy-pagination:
# type: offsetLimit
# inputs:
# - name: limit
# in: parameters
# type: limit
# - name: offset
# in: parameters
# type: offset
# outputs:
# results: $
responses:
"200": { "$ref": "#/components/responses/Session.List" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"422": { "$ref": "#/components/responses/UnprocessableEntity" }
"/sessions/{session_id}":
get:
x-speakeasy-group: sessions
x-speakeasy-name-override: get
operationId: "GetSession"
tags:
- "Sessions"
summary: "Retrieve a session"
description: "Retrieve the details of a session"
parameters:
- name: "session_id"
in: "path"
description: "The ID of the session"
required: true
schema:
type: "string"
responses:
"200": { "$ref": "#/components/responses/Session" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"/sessions/{session_id}/revoke":
post:
x-speakeasy-group: sessions
x-speakeasy-name-override: revoke
operationId: "RevokeSession"
tags:
- "Sessions"
summary: "Revoke a session"
description: "Sets the status of a session as \"revoked\", which is an unauthenticated state.\nIn multi-session mode, a revoked session will still be returned along with its client object, however the user will need to sign in again."
parameters:
- name: "session_id"
in: "path"
description: "The ID of the session"
required: true
schema:
type: "string"
responses:
"200": { "$ref": "#/components/responses/Session" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"/sessions/{session_id}/verify":
post:
x-speakeasy-group: sessions
x-speakeasy-name-override: verify
deprecated: true
operationId: "VerifySession"
tags:
- "Sessions"
summary: "Verify a session"
description: "Returns the session if it is authenticated, otherwise returns an error.\nWARNING: This endpoint is deprecated and will be removed in future versions. We strongly recommend switching to networkless verification using short-lived session tokens,\n which is implemented transparently in all recent SDK versions (e.g. [NodeJS SDK](https://clerk.com/docs/backend-requests/handling/nodejs#clerk-express-require-auth)).\n For more details on how networkless verification works, refer to our [Session Tokens documentation](https://clerk.com/docs/backend-requests/resources/session-tokens)."
parameters:
- name: "session_id"
in: "path"
description: "The ID of the session"
required: true
schema:
type: "string"
requestBody:
description: "Parameters."
content:
"application/json":
schema:
type: "object"
additionalProperties: false
properties:
"token":
type: "string"
description: "The JWT that is sent via the `__session` cookie from your frontend.\nNote: this JWT must be associated with the supplied session ID."
responses:
"200": { "$ref": "#/components/responses/Session" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"410": { "$ref": "#/components/responses/DeprecatedEndpoint" }
"/sessions/{session_id}/tokens/{template_name}":
post:
x-speakeasy-group: sessions
x-speakeasy-name-override: createTokenFromTemplate
operationId: "CreateSessionTokenFromTemplate"
tags:
- "Sessions"
summary: "Create a session token from a jwt template"
description: "Creates a JSON Web Token(JWT) based on a session and a JWT Template name defined for your instance"
parameters:
- name: "session_id"
in: "path"
description: "The ID of the session"
required: true
schema:
type: "string"
- name: "template_name"
in: "path"
description: "The name of the JWT Template defined in your instance (e.g. `custom_hasura`)."
required: true
schema:
type: "string"
responses:
"200":
description: "OK"
content:
"application/json":
schema:
type: "object"
properties:
"object":
type: "string"
enum:
- "token"
"jwt":
type: "string"
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"/templates/{template_type}":
get:
x-speakeasy-group: templates
x-speakeasy-name-override: list
operationId: "GetTemplateList"
summary: "List all templates"
description: "Returns a list of all templates.\nThe templates are returned sorted by position."
tags:
- "Email & SMS Templates"
parameters:
- name: "template_type"
in: "path"
description: "The type of templates to list (email or SMS)"
required: true
schema:
type: "string"
enum:
- "email"
- "sms"
responses:
"200": { "$ref": "#/components/responses/Template.List" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"422": { "$ref": "#/components/responses/UnprocessableEntity" }
"/templates/{template_type}/{slug}":
get:
x-speakeasy-group: templates
x-speakeasy-name-override: get
operationId: "GetTemplate"
summary: "Retrieve a template"
description: "Returns the details of a template"
tags:
- "Email & SMS Templates"
parameters:
- name: "template_type"
in: "path"
description: "The type of templates to retrieve (email or SMS)"
required: true
schema:
type: "string"
enum:
- "email"
- "sms"
- name: "slug"
in: "path"
description: "The slug (i.e. machine-friendly name) of the template to retrieve"
required: true
schema:
type: "string"
responses:
"200": { "$ref": "#/components/responses/Template" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
put:
x-speakeasy-group: templates
x-speakeasy-name-override: upsert
operationId: "UpsertTemplate"
summary: "Update a template for a given type and slug"
description: "Updates the existing template of the given type and slug"
tags:
- "Email & SMS Templates"
parameters:
- name: "template_type"
in: "path"
description: "The type of template to update"
required: true
schema:
type: "string"
enum:
- "email"
- "sms"
- name: "slug"
in: "path"
description: "The slug of the template to update"
required: true
schema:
type: "string"
requestBody:
content:
"application/json":
schema:
type: "object"
additionalProperties: false
properties:
"name":
type: "string"
description: "The user-friendly name of the template"
"subject":
type: "string"
description: "The email subject.\nApplicable only to email templates."
nullable: true
"markup":
type: "string"
description: "The editor markup used to generate the body of the template"
nullable: true
"body":
type: "string"
description: "The template body before variable interpolation"
"delivered_by_clerk":
type: "boolean"
description: "Whether Clerk should deliver emails or SMS messages based on the current template"
nullable: true
"from_email_name":
type: "string"
description: "The local part of the From email address that will be used for emails.\nFor example, in the address '[email protected]', the local part is 'hello'.\nApplicable only to email templates."
"reply_to_email_name":
type: "string"
description: "The local part of the Reply To email address that will be used for emails.\nFor example, in the address '[email protected]', the local part is 'hello'.\nApplicable only to email templates."
responses:
"200": { "$ref": "#/components/responses/Template" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"402": { "$ref": "#/components/responses/PaymentRequired" }
"403": { "$ref": "#/components/responses/ClerkErrors" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"422": { "$ref": "#/components/responses/UnprocessableEntity" }
"/templates/{template_type}/{slug}/revert":
post:
x-speakeasy-group: templates
x-speakeasy-name-override: revert
operationId: "RevertTemplate"
summary: "Revert a template"
description: "Reverts an updated template to its default state"
tags:
- "Email & SMS Templates"
parameters:
- name: "template_type"
in: "path"
description: "The type of template to revert"
required: true
schema:
type: "string"
enum:
- "email"
- "sms"
- name: "slug"
in: "path"
description: "The slug of the template to revert"
required: true
schema:
type: "string"
responses:
"200": { "$ref": "#/components/responses/Template" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"402": { "$ref": "#/components/responses/PaymentRequired" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"/templates/{template_type}/{slug}/preview":
post:
x-speakeasy-group: templates
x-speakeasy-name-override: preview
operationId: "PreviewTemplate"
summary: "Preview changes to a template"
description: "Returns a preview of a template for a given template_type, slug and body"
tags:
- "Email & SMS Templates"
parameters:
- name: "template_type"
in: "path"
description: "The type of template to preview"
required: true
schema:
type: "string"
- name: "slug"
in: "path"
description: "The slug of the template to preview"
required: true
schema:
type: "string"
requestBody:
description: "Required parameters"
content:
"application/json":
schema:
type: "object"
additionalProperties: false
properties:
"subject":
type: "string"
description: "The email subject.\nApplicable only to email templates."
nullable: true
"body":
type: "string"
description: "The template body before variable interpolation"
"from_email_name":
type: "string"
description: "The local part of the From email address that will be used for emails.\nFor example, in the address '[email protected]', the local part is 'hello'.\nApplicable only to email templates."
"reply_to_email_name":
type: "string"
description: "The local part of the Reply To email address that will be used for emails.\nFor example, in the address '[email protected]', the local part is 'hello'.\nApplicable only to email templates."
responses:
"200":
description: "OK"
content:
"application/json":
schema:
type: "object"
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"422": { "$ref": "#/components/responses/UnprocessableEntity" }
"/templates/{template_type}/{slug}/toggle_delivery":
post:
x-speakeasy-group: templates
x-speakeasy-name-override: toggleDelivery
operationId: "ToggleTemplateDelivery"
summary: "Toggle the delivery by Clerk for a template of a given type and slug"
description: "Toggles the delivery by Clerk for a template of a given type and slug.\nIf disabled, Clerk will not deliver the resulting email or SMS.\nThe app developer will need to listen to the `email.created` or `sms.created` webhooks in order to handle delivery themselves."
tags:
- "Email & SMS Templates"
parameters:
- name: "template_type"
in: "path"
description: "The type of template to toggle delivery for"
required: true
schema:
type: "string"
enum:
- "email"
- "sms"
- name: "slug"
in: "path"
description: "The slug of the template for which to toggle delivery"
required: true
schema:
type: "string"
requestBody:
content:
"application/json":
schema:
type: "object"
additionalProperties: false
properties:
"delivered_by_clerk":
type: "boolean"
description: "Whether Clerk should deliver emails or SMS messages based on the current template"
nullable: true
responses:
"200": { "$ref": "#/components/responses/Template" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"404": { "$ref": "#/components/responses/ResourceNotFound" }
"/users":
get:
x-speakeasy-group: users
x-speakeasy-name-override: list
operationId: "GetUserList"
summary: "List all users"
description: "Returns a list of all users.\nThe users are returned sorted by creation date, with the newest users appearing first."
tags:
- "Users"
parameters:
- name: "email_address"
in: "query"
schema:
type: "array"
items:
type: "string"
description: "Returns users with the specified email addresses.\nAccepts up to 100 email addresses.\nAny email addresses not found are ignored."
required: false
- name: "phone_number"
in: "query"
schema:
type: "array"
items:
type: "string"
description: "Returns users with the specified phone numbers.\nAccepts up to 100 phone numbers.\nAny phone numbers not found are ignored."
required: false
- name: "external_id"
in: "query"
schema:
type: "array"
items:
type: "string"
description: "Returns users with the specified external ids.\nFor each external id, the `+` and `-` can be\nprepended to the id, which denote whether the\nrespective external id should be included or\nexcluded from the result set.\nAccepts up to 100 external ids.\nAny external ids not found are ignored."
required: false
- name: "username"
in: "query"
schema:
type: "array"
items:
type: "string"
description: "Returns users with the specified usernames.\nAccepts up to 100 usernames.\nAny usernames not found are ignored."
required: false
- name: "web3_wallet"
in: "query"
schema:
type: "array"
items:
type: "string"
description: "Returns users with the specified web3 wallet addresses.\nAccepts up to 100 web3 wallet addresses.\nAny web3 wallet addressed not found are ignored."
required: false
- name: "user_id"
in: "query"
schema:
type: "array"
items:
type: "string"
description: "Returns users with the user ids specified.\nFor each user id, the `+` and `-` can be\nprepended to the id, which denote whether the\nrespective user id should be included or\nexcluded from the result set.\nAccepts up to 100 user ids.\nAny user ids not found are ignored."
required: false
- name: "organization_id"
in: "query"
schema:
type: "array"
items:
type: "string"
description: "Returns users that have memberships to the\ngiven organizations.\nFor each organization id, the `+` and `-` can be\nprepended to the id, which denote whether the\nrespective organization should be included or\nexcluded from the result set.\nAccepts up to 100 organization ids."
required: false
- name: "query"
in: "query"
description: "Returns users that match the given query.\nFor possible matches, we check the email addresses, phone numbers, usernames, web3 wallets, user ids, first and last names.\nThe query value doesn't need to match the exact value you are looking for, it is capable of partial matches as well."
schema:
type: "string"
required: false
- name: "last_active_at_since"
in: "query"
description: "Returns users that had session activity since the given date, with day precision.\nProviding a value with higher precision than day will result in an error.\nExample: use 1700690400000 to retrieve users that had session activity from 2023-11-23 until the current day."
example: 1700690400000
schema:
type: "integer"
- { "$ref": "#/components/parameters/LimitParameter" }
- { "$ref": "#/components/parameters/OffsetParameter" }
- name: "order_by"
in: "query"
description: "Allows to return users in a particular order.\nAt the moment, you can order the returned users by their `created_at`,`updated_at`,`email_address`,`web3wallet`,`first_name`,`last_name`,`phone_number`,`username`,`last_active_at`,`last_sign_in_at`.\nIn order to specify the direction, you can use the `+/-` symbols prepended in the property to order by.\nFor example, if you want users to be returned in descending order according to their `created_at` property, you can use `-created_at`.\nIf you don't use `+` or `-`, then `+` is implied. We only support one `order_by` parameter, and if multiple `order_by` parameters are provided, we will only keep the first one. For example,\nif you pass `order_by=username&order_by=created_at`, we will consider only the first `order_by` parameter, which is `username`. The `created_at` parameter will be ignored in this case."
schema:
type: "string"
default: "-created_at"
required: false
responses:
"200": { "$ref": "#/components/responses/User.List" }
"400": { "$ref": "#/components/responses/ClerkErrors" }
"401": { "$ref": "#/components/responses/AuthenticationInvalid" }
"422": { "$ref": "#/components/responses/UnprocessableEntity" }
# x-speakeasy-pagination:
# type: offsetLimit
# inputs:
# - name: limit
# in: parameters
# type: limit
# - name: offset
# in: parameters
# type: offset
# outputs:
# results: $
post:
x-speakeasy-group: users
x-speakeasy-name-override: create
operationId: "CreateUser"
summary: "Create a new user"
description: "Creates a new user. Your user management settings determine how you should setup your user model.\n\nAny email address and phone number created using this method will be marked as verified.\n\nNote: If you are performing a migration, check out our guide on [zero downtime migrations](https://clerk.com/docs/deployments/migrate-overview).\n\nA rate limit rule of 20 requests per 10 seconds is applied to this endpoint."
tags:
- "Users"
requestBody:
required: true
content:
"application/json":
schema:
type: "object"
additionalProperties: false
properties:
"external_id":
type: "string"
description: "The ID of the user as used in your external systems or your previous authentication solution.\nMust be unique across your instance."
nullable: true
"first_name":
type: "string"
description: "The first name to assign to the user"
nullable: true
"last_name":
type: "string"