Expand description
A rust library for interacting with the Checker API.
For more information, the Checker API is still is doumented here: https://docs.checkr.com
Example:
use checkr::Checkr;
use serde::{Deserialize, Serialize};
async fn get_candidates() {
// Initialize the Checker client.
let checkr = Checkr::new_from_env();
// List the candidates.
let candidates = checkr.list_candidates().await.unwrap();
println!("{:?}", candidates);
}
Modules§
Structs§
- APIError
- Error type returned by our library.
- Candidate
- The data type for a candidate.
- Candidate
Request - Candidates
Response - The data type for an API response.
- Checkr
- Entrypoint for interacting with the Checker API.
- Drug
Screening - Event
Data - Event
Object - Invitation
- Invitation
Request - Invitations
Response - The data type for an API response.
- Metadata
- Report
- Webhook
Event - The data type for a webhook event.