-
Notifications
You must be signed in to change notification settings - Fork 5
/
openapi.yaml
7460 lines (7005 loc) · 227 KB
/
openapi.yaml
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
description: >-
The Clerk REST Backend API, meant to be accessed by backend
servers.
### Versions
When the API changes in a way that isn't compatible with older versions, a
new version is released.
Each 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).
Please see https://clerk.com/docs for more information.
version: v1
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: support@clerk.com
name: Clerk Platform Team
url: https://clerk.com/support
termsOfService: https://clerk.com/terms
license:
name: MIT
url: https://github.com/clerkinc/clerk-sdk-go/blob/main/LICENSE
x-konfig-ignore:
object-with-no-properties: true
servers:
- url: https://api.clerk.com/v1
tags:
- description: >-
The user object represents a user that has successfully signed up to your
application.
name: Users
externalDocs:
url: https://clerk.com/docs/reference/clerkjs/user
- description: >-
Organizations are used to group members under a common entity and provide
shared access to resources.
name: Organizations
externalDocs:
url: https://clerk.com/docs/organizations/overview
- description: >-
Allow-lists and Block-lists allow you to control who can sign up or sign
in
to your application, by restricting access based on the user's email
address or phone number.
name: Allow-list / Block-list
externalDocs:
url: https://clerk.com/docs/authentication/allowlist
- description: >-
Email & SMS templates allow you to customize the theming and wording of
emails & SMS messages that are sent by your instance.
name: Email & SMS Templates
externalDocs:
url: https://clerk.com/docs/authentication/email-sms-templates
- description: >-
OAuth applications contain data for clients using Clerk as an OAuth2
identity provider.
name: OAuth Applications
- description: Invite users to an organization.
name: Organization Invitations
externalDocs:
url: https://clerk.com/docs/organizations/invite-users
- description: |-
JWT Templates allow you to generate custom authentication tokens
tied to authenticated sessions, enabling you to integrate with third-party
services.
name: JWT Templates
externalDocs:
url: https://clerk.com/docs/request-authentication/jwt-templates
- description: Manage member roles in an organization.
name: Organization Memberships
externalDocs:
url: https://clerk.com/docs/organizations/manage-member-roles
- description: >-
A SAML Connection holds configuration data required for facilitating a
SAML SSO flow between your
Clerk Instance (SP) and a particular SAML IdP.
name: SAML Connections
- description: >-
The Session object is an abstraction over an HTTP session.
It models the period of information exchange between a user and the
server.
Sessions are created when a user successfully goes through the sign in or
sign up flows.
name: Sessions
externalDocs:
url: https://clerk.com/docs/reference/clerkjs/session
- description: Domains represent each instance's URLs and DNS setup.
name: Domains
- description: >-
A user can be associated with one or more email addresses, which allows
them to be contacted via email.
name: Email Addresses
externalDocs:
url: https://clerk.com/docs/reference/clerkjs/emailaddress
- description: >-
A user can be associated with one or more phone numbers, which allows them
to be contacted via SMS.
name: Phone Numbers
externalDocs:
url: https://clerk.com/docs/reference/clerkjs/phonenumber
- description: >-
Redirect URLs are whitelisted URLs that facilitate secure authentication
flows in native applications (e.g. React Native, Expo).
In these contexts, Clerk ensures that security-critical nonces are passed
only to the whitelisted URLs.
name: Redirect URLs
- description: >-
The Client object tracks sessions, as well as the state of any sign in and
sign up attempts, for a given device.
name: Clients
externalDocs:
url: https://clerk.com/docs/reference/clerkjs/client
- description: Modify the settings of your instance.
name: Instance Settings
- description: >-
Invitations allow you to invite someone to sign up to your application,
via email.
name: Invitations
externalDocs:
url: https://clerk.com/docs/authentication/invitations
- description: >-
You can configure webhooks to be notified about various events that happen
on your instance.
name: Webhooks
externalDocs:
url: https://clerk.com/docs/integration/webhooks
- description: Modify instance settings that are currently in beta.
name: Beta Features
- description: Allow your users to sign in on behalf of other users.
name: Actor Tokens
externalDocs:
url: https://clerk.com/docs/authentication/user-impersonation#actor-tokens
- description: >-
Sign-in tokens are JWTs that can be used to sign in to an application
without specifying any credentials.
A sign-in token can be used at most once and they can be consumed from the
Frontend API using the `ticket` strategy.
name: Sign-in Tokens
- description: >-
Retrieve the JSON Web Key Set which can be used to verify the token
signatures of the instance.
name: JWKS
- description: Various endpoints that do not belong in any particular category.
name: Miscellaneous
- name: Proxy checks
- name: Sign-ups
paths:
/public/interstitial:
get:
tags:
- Miscellaneous
summary: Returns the markup for the interstitial page
operationId: Miscellaneous_getInterstitialMarkup
security: []
description: >-
The Clerk interstitial endpoint serves an html page that loads clerk.js
in order to check the user's authentication state.
It is used by Clerk SDKs when the user's authentication state cannot be
immediately determined.
parameters:
- description: The Frontend API key of your instance
name: frontendApi
in: query
required: false
schema:
type: string
- description: The publishable key of your instance
name: publishable_key
in: query
required: false
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:
tags:
- JWKS
summary: Retrieve the JSON Web Key Set of the instance
operationId: Jwks_getJsonWebKeySet
description: Retrieve the JSON Web Key Set of the instance
responses:
'200':
description: The JSON Web Key Set
/clients:
get:
tags:
- Clients
summary: List all clients
operationId: Clients_listSortedByCreationDate
description: >-
Returns a list of all clients. The clients are returned sorted by
creation date,
with the newest clients appearing first.
Warning: the endpoint is being deprecated and will be removed in future
versions.
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'
deprecated: true
/clients/verify:
post:
tags:
- Clients
summary: Verify a client
operationId: Clients_verifyClientToken
description: Verifies the client in the provided token
requestBody:
description: Parameters.
content:
application/json:
schema:
$ref: '#/components/schemas/ClientsVerifyClientTokenRequest'
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:
tags:
- Clients
summary: Get a client
operationId: Clients_getDetails
description: Returns the details of a client.
parameters:
- description: Client ID.
name: client_id
in: path
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:
tags:
- Email Addresses
summary: Create an email address
operationId: EmailAddresses_createNewAddress
description: Create a new email address
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/EmailAddressesCreateNewAddressRequest'
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:
tags:
- Email Addresses
summary: Retrieve an email address
operationId: EmailAddresses_getDetails
description: Returns the details of an email address.
parameters:
- description: The ID of the email address to retrieve
name: email_address_id
in: path
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:
tags:
- Email Addresses
summary: Delete an email address
operationId: EmailAddresses_deleteById
description: Delete the email address with the given ID
parameters:
- description: The ID of the email address to delete
name: email_address_id
in: path
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:
tags:
- Email Addresses
summary: Update an email address
operationId: EmailAddresses_updateAddress
description: Updates an email address.
parameters:
- description: The ID of the email address to update
name: email_address_id
in: path
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/EmailAddressesUpdateAddressRequest'
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:
tags:
- Phone Numbers
summary: Create a phone number
operationId: PhoneNumbers_createNewPhoneNumber
description: Create a new phone number
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PhoneNumbersCreateNewPhoneNumberRequest'
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:
tags:
- Phone Numbers
summary: Retrieve a phone number
operationId: PhoneNumbers_getDetails
description: Returns the details of a phone number
parameters:
- description: The ID of the phone number to retrieve
name: phone_number_id
in: path
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:
tags:
- Phone Numbers
summary: Delete a phone number
operationId: PhoneNumbers_deletePhoneNumberById
description: Delete the phone number with the given ID
parameters:
- description: The ID of the phone number to delete
name: phone_number_id
in: path
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:
tags:
- Phone Numbers
summary: Update a phone number
operationId: PhoneNumbers_updateDetails
description: Updates a phone number
parameters:
- description: The ID of the phone number to update
name: phone_number_id
in: path
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PhoneNumbersUpdateDetailsRequest'
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:
tags:
- Sessions
summary: List all sessions
operationId: Sessions_listSortedByCreationDate
description: >-
Returns a list of all sessions.
The sessions are returned sorted by creation date, with the newest
sessions appearing first.
**Deprecation Notice (2024-01-01):** All parameters were initially
considered optional, however
moving forward at least one of `client_id` or `user_id` parameters
should be provided.
parameters:
- description: List sessions for the given client
name: client_id
in: query
required: false
schema:
type: string
- description: List sessions for the given user
name: user_id
in: query
required: false
schema:
type: string
- description: Filter sessions by the provided status
name: status
in: query
required: false
schema:
type: string
enum:
- abandoned
- active
- ended
- expired
- removed
- replaced
- revoked
- $ref: '#/components/parameters/LimitParameter'
- $ref: '#/components/parameters/OffsetParameter'
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:
tags:
- Sessions
summary: Retrieve a session
operationId: Sessions_getDetails
description: Retrieve the details of a session
parameters:
- description: The ID of the session
name: session_id
in: path
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:
tags:
- Sessions
summary: Revoke a session
operationId: Sessions_revokeSession
description: >-
Sets the status of a session as "revoked", which is an unauthenticated
state.
In 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:
- description: The ID of the session
name: session_id
in: path
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:
tags:
- Sessions
summary: Verify a session
operationId: Sessions_verifySession
description: >-
Returns the session if it is authenticated, otherwise returns an error.
WARNING: This endpoint is deprecated and will be removed in future
versions. We strongly recommend switching to networkless verification
using short-lived session tokens,
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)).
For more details on how networkless verification works, refer to our [Session Tokens documentation](https://clerk.com/docs/backend-requests/resources/session-tokens).
parameters:
- description: The ID of the session
name: session_id
in: path
required: true
schema:
type: string
requestBody:
description: Parameters.
content:
application/json:
schema:
$ref: '#/components/schemas/SessionsVerifySessionRequest'
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'
deprecated: true
/sessions/{session_id}/tokens/{template_name}:
post:
tags:
- Sessions
summary: Create a session token from a jwt template
operationId: Sessions_createSessionTokenFromTemplate
description: >-
Creates a JSON Web Token(JWT) based on a session and a JWT Template name
defined for your instance
parameters:
- description: The ID of the session
name: session_id
in: path
required: true
schema:
type: string
- description: >-
The name of the JWT Template defined in your instance (e.g.
`custom_hasura`).
name: template_name
in: path
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: >-
#/components/schemas/SessionsCreateSessionTokenFromTemplateResponse
'401':
$ref: '#/components/responses/AuthenticationInvalid'
'404':
$ref: '#/components/responses/ResourceNotFound'
/templates/{template_type}:
get:
tags:
- Email & SMS Templates
summary: List all templates
operationId: EmailSmsTemplates_listSortedByPosition
description: |-
Returns a list of all templates.
The templates are returned sorted by position.
parameters:
- description: The type of templates to list (email or SMS)
name: template_type
in: path
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:
tags:
- Email & SMS Templates
summary: Retrieve a template
operationId: EmailSmsTemplates_getTemplateDetails
description: Returns the details of a template
parameters:
- description: The type of templates to retrieve (email or SMS)
name: template_type
in: path
required: true
schema:
type: string
enum:
- email
- sms
- description: The slug (i.e. machine-friendly name) of the template to retrieve
name: slug
in: path
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:
tags:
- Email & SMS Templates
summary: Update a template for a given type and slug
operationId: EmailSmsTemplates_updateTemplateByTypeAndSlug
description: Updates the existing template of the given type and slug
parameters:
- description: The type of template to update
name: template_type
in: path
required: true
schema:
type: string
enum:
- email
- sms
- description: The slug of the template to update
name: slug
in: path
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: >-
#/components/schemas/EmailSmsTemplatesUpdateTemplateByTypeAndSlugRequest
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'
'422':
$ref: '#/components/responses/UnprocessableEntity'
/templates/{template_type}/{slug}/revert:
post:
tags:
- Email & SMS Templates
summary: Revert a template
operationId: EmailSmsTemplates_revertTemplate
description: Reverts an updated template to its default state
parameters:
- description: The type of template to revert
name: template_type
in: path
required: true
schema:
type: string
enum:
- email
- sms
- description: The slug of the template to revert
name: slug
in: path
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:
tags:
- Email & SMS Templates
summary: Preview changes to a template
operationId: EmailSmsTemplates_previewTemplate
description: Returns a preview of a template for a given template_type, slug and body
parameters:
- description: The type of template to preview
name: template_type
in: path
required: true
schema:
type: string
- description: The slug of the template to preview
name: slug
in: path
required: true
schema:
type: string
requestBody:
description: Required parameters
content:
application/json:
schema:
$ref: '#/components/schemas/EmailSmsTemplatesPreviewTemplateRequest'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/EmailSmsTemplatesPreviewTemplateResponse'
'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:
tags:
- Email & SMS Templates
summary: Toggle the delivery by Clerk for a template of a given type and slug
operationId: EmailSmsTemplates_toggleDeliveryByTypeAndSlug
description: >-
Toggles the delivery by Clerk for a template of a given type and slug.
If disabled, Clerk will not deliver the resulting email or SMS.
The app developer will need to listen to the `email.created` or
`sms.created` webhooks in order to handle delivery themselves.
parameters:
- description: The type of template to toggle delivery for
name: template_type
in: path
required: true
schema:
type: string
enum:
- email
- sms
- description: The slug of the template for which to toggle delivery
name: slug
in: path
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: >-
#/components/schemas/EmailSmsTemplatesToggleDeliveryByTypeAndSlugRequest
responses:
'200':
$ref: '#/components/responses/Template'
'400':
$ref: '#/components/responses/ClerkErrors'
'401':
$ref: '#/components/responses/AuthenticationInvalid'
'404':
$ref: '#/components/responses/ResourceNotFound'
/users:
get:
tags:
- Users
summary: List all users
operationId: Users_listSortedByCreationDate
description: >-
Returns a list of all users.
The users are returned sorted by creation date, with the newest users
appearing first.
parameters:
- description: |-
Returns users with the specified email addresses.
Accepts up to 100 email addresses.
Any email addresses not found are ignored.
name: email_address
in: query
schema:
type: array
items:
type: string
required: false
- description: |-
Returns users with the specified phone numbers.
Accepts up to 100 phone numbers.
Any phone numbers not found are ignored.
name: phone_number
in: query
schema:
type: array
items:
type: string
required: false
- description: |-
Returns users with the specified external ids.
For each external id, the `+` and `-` can be
prepended to the id, which denote whether the
respective external id should be included or
excluded from the result set.
Accepts up to 100 external ids.
Any external ids not found are ignored.
name: external_id
in: query
schema:
type: array
items:
type: string
required: false
- description: |-
Returns users with the specified usernames.
Accepts up to 100 usernames.
Any usernames not found are ignored.
name: username
in: query
schema:
type: array
items:
type: string
required: false
- description: |-
Returns users with the specified web3 wallet addresses.
Accepts up to 100 web3 wallet addresses.
Any web3 wallet addressed not found are ignored.
name: web3_wallet
in: query
schema:
type: array
items:
type: string
required: false
- description: |-
Returns users with the user ids specified.
For each user id, the `+` and `-` can be
prepended to the id, which denote whether the
respective user id should be included or
excluded from the result set.
Accepts up to 100 user ids.
Any user ids not found are ignored.
name: user_id
in: query
schema:
type: array
items:
type: string
required: false
- description: |-
Returns users that have memberships to the
given organizations.
For each organization id, the `+` and `-` can be
prepended to the id, which denote whether the
respective organization should be included or
excluded from the result set.
Accepts up to 100 organization ids.
name: organization_id
in: query
schema:
type: array
items:
type: string
required: false
- description: >-
Returns users that match the given query.
For possible matches, we check the email addresses, phone numbers,
usernames, web3 wallets, user ids, first and last names.
The query value doesn't need to match the exact value you are
looking for, it is capable of partial matches as well.