An unofficial clerk.dev SDK for rust

Note: This SDK is updated frequently to keep up with any changes to the actual Clerk API. However, if you This SDK is by no means affiliated with Clerk.dev.

A unofficial clerk.dev SDK. For more detailed documentation, please reference the clerk docs: https://clerk.com/docs/reference/backend-api

Example

More examples in a /examples directory coming soon...

Using a traditional http request to a valid clerk endpoint:

```rust use tokio; use clerk_rs::{clerk::Clerk, ClerkConfiguration, endpoints::ClerkGetEndpoint};

[tokio::main]

async fn main() -> Result<(), Box> { let config = ClerkConfiguration::new(None, None, Some("sktestkey".to_string()), None); let client = Clerk::new(config);

let res = client.get(ClerkGetEndpoint::GetUserList).await?;

Ok(())

} ```

Using a clerk-rs method:

```rust use tokio; use clerkrs::{clerk::Clerk, ClerkConfiguration, endpoints::ClerkGetEndpoint, apis::emailsapi::Email};

async fn main() -> Result<(), Box> { let config = ClerkConfiguration::new(None, None, Some("sktestkey".to_string()), None); let client = Clerk::new(config);

Email::create(&client, Some(your_clerk_email));

Ok(())

} ```

Roadmap


name