Skip to main content

Crate jobcelis

Crate jobcelis 

Source
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§

JobcelisClient
Client for the Jobcelis Event Infrastructure Platform API.

Enums§

JobcelisError
Error returned by Jobcelis API operations.

Functions§

verify_webhook_signature
Verify a webhook signature using HMAC-SHA256 (Base64, no padding).