Expand description
Official Rust SDK for the Jobcelis Event Infrastructure Platform.
All API calls go to https://jobcelis.com by default — you only need your API key.
§Quick Start
use jobcelis::JobcelisClient;
use serde_json::json;
#[tokio::main]
async fn main() -> Result<(), jobcelis::JobcelisError> {
let client = JobcelisClient::new("your_api_key");
let event = client.send_event("order.created", json!({"order_id": "123"})).await?;
println!("{:?}", event);
Ok(())
}Structs§
- Jobcelis
Client - Client for the Jobcelis Event Infrastructure Platform API.
Enums§
- Jobcelis
Error - Error returned by Jobcelis API operations.
Functions§
- verify_
webhook_ signature - Verify a webhook signature using HMAC-SHA256 (Base64, no padding).