Rust
Rust
GeoOp - Get all Jobs
See more GeoOp Examples
Gets all information about all jobs.Chilkat Rust Downloads
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// This example also assumes an OAuth2 access token was previously fetched.
// and saved in a JSON file.
// First get our previously obtained access token.
// {"access_token":"e6dqdG....mzjpT04w==","token_type":"Bearer","expires_in":2592000,"owner_id":999236}
let json_token = chilkat::JsonObject::new();
let _ = json_token.load_file("qa_data/tokens/geoop.json").is_ok();
// This example assumes we previously obtained an access token
let oauth2 = chilkat::OAuth2::new();
oauth2.set_access_token(&json_token.string_of("access_token").unwrap_or_default());
let rest = chilkat::Rest::new();
// Connect to GeoOp and send the following GET request:
// GET /users HTTP/1.1
// Host: api.geoop.com
let b_auto_reconnect = true;
if rest.connect("api.geoop.com", 443, true, b_auto_reconnect).is_err() {
println!("{}", rest.last_error_text());
return;
}
// Provide the authentication credentials (i.e. the access token)
let _ = rest.set_auth_o_auth2(&oauth2);
// Set the X-Version header.
let _ = rest.add_header("X-Version", "1.0");
let Ok(response_body) = rest.full_request_no_body("GET", "/jobs") else {
println!("{}", rest.last_error_text());
return;
};
let json = chilkat::JsonObject::new();
json.set_emit_compact(false);
// If the response status code did not indicate success, then see what happened..
if rest.response_status_code() != 200 {
println!("Request Header: ");
println!("{}", rest.last_request_header());
println!("----");
println!("Response StatusCode = {}", rest.response_status_code());
println!("Response StatusLine: {}", rest.response_status_text());
println!("Response Header:");
println!("{}", rest.response_header());
let _ = json.load(&response_body);
println!("{}", json.emit().unwrap_or_default());
return;
}
let _ = json.load(&response_body);
// Show the full JSON response.. (see below)
println!("{}", json.emit().unwrap_or_default());
// These will be used for parsing date/time strings..
let dtime = chilkat::DateTime::new();
let b_local_time = true;
let dt = chilkat::DtObj::new();
// Iterate over each job and get information..
let num_records = json.size_of_array("jobs");
let mut i = 0;
while i < num_records {
json.set_i(i);
println!("job id: {}", json.string_of("jobs[i].id").unwrap_or_default());
println!("client id: {}", json.string_of("jobs[i].client.id").unwrap_or_default());
println!("account id: {}", json.string_of("jobs[i].account.id").unwrap_or_default());
println!("address line1: {}", json.string_of("jobs[i].address.line1").unwrap_or_default());
let _ = dtime.set_from_timestamp(&json.string_of("jobs[i].startTime").unwrap_or_default());
dtime.to_dt_obj(b_local_time, &dt);
println!("created: {}/{}/{} {}:{}", dt.month(), dt.day(), dt.year(), dt.hour(), dt.minute());
println!("----");
i = i + 1;
}
// A sample jobs listing response:
//
// {
// "result": "success",
// "jobs": [
// {
// "id": 17580761,
// "reference": "1000",
// "startTime": "2016-10-26T02:10:00+00:00",
// "endTime": "2016-10-28T02:40:00+00:00",
// "priority": 2,
// "title": "[ Demo Job ]",
// "description": "",
// "jobNumber": null,
// "deleted": false,
// "type": "demo",
// "created": "2015-09-03T02:11:32+00:00",
// "modified": "2016-10-26T12:05:09+00:00",
// "client": {
// "id": 9555868
// },
// "billingClient": null,
// "status": {
// "id": 675900
// },
// "account": {
// "id": 39409
// },
// "address": {
// "line1": "21462 New York Avenue NW",
// "line2": null,
// "city": "Washington",
// "postcode": "20005",
// "latitude": 38.903959,
// "longitude": -77.02137
// },
// "metadata": {
// "visitsCount": 3,
// "assignedVisitsCount": 3,
// "unassignedVisitsCount": 0,
// "partsCount": 1,
// "chargesCount": 1,
// "timersCount": 0,
// "notesCount": 0,
// "parcelsCount": 0,
// "paymentsCount": 0,
// "documentsCount": 1
// }
// },
// {
// "id": 17639295,
// "reference": "1000",
// "startTime": "2016-10-31T12:00:00+00:00",
// "endTime": "2016-10-31T12:30:00+00:00",
// "priority": 2,
// "title": "Deliver Donuts",
// "description": "Deliver donuts to the cafe.",
// "jobNumber": "21122",
// "deleted": false,
// "type": "normal",
// "created": "2016-10-31T12:07:14+00:00",
// "modified": "2016-10-31T12:07:14+00:00",
// "client": {
// "id": 9555868
// },
// "billingClient": null,
// "status": {
// "id": 675900
// },
// "account": {
// "id": 39409
// },
// "address": {
// "line1": "1732 Pennsylvania Avenue NW",
// "line2": null,
// "city": "Washington",
// "postcode": "20006",
// "latitude": 38.8990534,
// "longitude": -77.0401866
// },
// "metadata": {
// "visitsCount": 1,
// "assignedVisitsCount": 0,
// "unassignedVisitsCount": 1,
// "partsCount": 0,
// "chargesCount": 0,
// "timersCount": 0,
// "notesCount": 0,
// "parcelsCount": 0,
// "paymentsCount": 0,
// "documentsCount": 0
// }
// }
// ],
// "metadata": {
// "page": 1,
// "pagesCount": 1,
// "recordsPerPage": 20,
// "recordsCount": 2
// }
// }
//