You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+61-16Lines changed: 61 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Clerk Backend API: The Clerk REST Backend API, meant to be accessed by backend s
16
16
### Versions
17
17
18
18
When the API changes in a way that isn't compatible with older versions, a new version is released.
19
-
Each version is identified by its release date, e.g. `2025-03-12`. For more information, please see [Clerk API Versions](https://clerk.com/docs/versioning/available-versions).
19
+
Each version is identified by its release date, e.g. `2025-04-10`. For more information, please see [Clerk API Versions](https://clerk.com/docs/versioning/available-versions).
20
20
21
21
Please see https://clerk.com/docs for more information.
22
22
@@ -51,15 +51,15 @@ The samples below show how a published SDK artifact is used:
* [lock](docs/sdks/users/README.md#lock) -Lock a user
398
439
* [unlock](docs/sdks/users/README.md#unlock) -Unlock a user
399
440
* [setProfileImage](docs/sdks/users/README.md#setprofileimage) -Set user profile image
400
441
* [deleteProfileImage](docs/sdks/users/README.md#deleteprofileimage) -Delete user profile image
401
442
* [updateMetadata](docs/sdks/users/README.md#updatemetadata) -Merge and update a user's metadata
443
+
* [getBillingSubscription](docs/sdks/users/README.md#getbillingsubscription) - Retrieve a user's billing subscription
402
444
* [getOAuthAccessToken](docs/sdks/users/README.md#getoauthaccesstoken) -Retrieve the OAuth access token of a user
403
445
* [getOrganizationMemberships](docs/sdks/users/README.md#getorganizationmemberships) -Retrieve all memberships for a user
404
446
* [getOrganizationInvitations](docs/sdks/users/README.md#getorganizationinvitations) -Retrieve all invitations for a user
@@ -416,6 +458,8 @@ public class MachineAuthentication {
416
458
417
459
* [list](docs/sdks/waitlistentries/README.md#list) - List all waitlist entries
418
460
* [create](docs/sdks/waitlistentries/README.md#create) - Create a waitlist entry
461
+
* [invite](docs/sdks/waitlistentries/README.md#invite) - Invite a waitlist entry
462
+
* [reject](docs/sdks/waitlistentries/README.md#reject) - Reject a waitlist entry
419
463
420
464
### [webhooks()](docs/sdks/webhooks/README.md)
421
465
@@ -509,12 +553,12 @@ public class Application {
509
553
510
554
Handling errors in thisSDK should largely match your expectations. All operations return a response object or raise an exception.
511
555
512
-
Bydefault, an API error will throw a `models/errors/SDKError` exception. When custom error responses are specified for an operation, the SDK may also throw their associated exception. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `verify` method throws the following exceptions:
556
+
Bydefault, an API error will throw a `models/errors/SDKError` exception. When custom error responses are specified for an operation, the SDK may also throw their associated exception. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `delete` method throws the following exceptions:
|`object`|[Object](../../models/components/Object.md)|:heavy_check_mark:| String representing the object's type. Objects of the same type share the same value.<br/> |
0 commit comments