Note: This SDK is updated frequently to keep up with any changes to the actual Clerk API. If you see anything that needs updated or is not inline with the offical Clerk api, open an issue!
A unofficial clerk.dev SDK. For more detailed documentation, please reference the clerk docs: https://clerk.com/docs/reference/backend-api
More examples in a
/examples
directory coming soon...
```rust use tokio; use clerk_rs::{clerk::Clerk, ClerkConfiguration, endpoints::ClerkGetEndpoint};
async fn main() -> Result<(), Box
let res = client.get(ClerkGetEndpoint::GetUserList).await?;
Ok(())
} ```
```rust use tokio; use clerkrs::{clerk::Clerk, ClerkConfiguration, endpoints::ClerkGetEndpoint, apis::emailsapi::Email};
async fn main() -> Result<(), Box
Email::create(&client, Some(your_clerk_email));
Ok(())
} ```
Note: This SDK is completely maintained by the Rust community and is by no means affiliated with Clerk.dev.