infobip-sms-sdk 0.1.0

Async Rust SDK for the Infobip SMS API: send messages, manage scheduled bulks, query delivery reports and logs, fetch inbound SMS, and parse webhook payloads.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Per-domain endpoint methods (each module adds an `impl Client`).

mod helpers;
mod send;
mod preview;
mod reports;
mod logs;
mod inbox;
mod bulks;
mod conversion;

pub(crate) use helpers::{decode_response, ErrorKind};