Sample code for 30+ languages & platforms
Rust

GeoOp - Get a list of all users

See more GeoOp Examples

Gets a list of all GeoOp users.

Chilkat Rust Downloads

Rust

// 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", "/users") else {
    println!("{}", rest.last_error_text());
    return;
};

// 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());
    println!("{}", response_body);
    return;
}

let json = chilkat::JsonObject::new();
json.set_emit_compact(false);
let _ = json.load(&response_body);
// Show the full JSON response..
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 user and get information from each.
let num_records = json.size_of_array("users");
let mut i = 0;
while i < num_records {

    json.set_i(i);
    println!("id: {}", json.string_of("users[i].id").unwrap_or_default());
    println!("firstName: {}", json.string_of("users[i].firstName").unwrap_or_default());
    println!("lastName: {}", json.string_of("users[i].lastName").unwrap_or_default());
    println!("companyName: {}", json.string_of("users[i].companyName").unwrap_or_default());
    println!("active: {}", json.int_of("users[i].active"));
    println!("isAssignable: {}", json.bool_of("users[i].isAssignable"));
    println!("account id: {}", json.bool_of("users[i].account.id"));

    let _ = dtime.set_from_timestamp(&json.string_of("users[i].created").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;
}

// The responseJson looks like this:
// {
//   "result": "success",
//   "users": [
//     {
//       "id": 984236,
//       "firstName": "Joe",
//       "lastName": "Smith",
//       "companyName": "Chilkat Software, Inc.",
//       "email": "support@chilkatsoft.com",
//       "phone": "",
//       "mobile": "1-630-555-5555",
//       "hourlyRate": 0,
//       "active": 1,
//       "deleted": false,
//       "colour": "#D2BC14",
//       "created": "2016-10-26T12:05:09+00:00",
//       "modified": "2016-10-26T12:05:09+00:00",
//       "isAssignable": true,
//       "avatarUrl": "https:\/\/www.geoop.com\/images\/mobithumb_984236.jpg",
//       "role": {
//         "id": 1
//       },
//       "account": {
//         "id": 39409
//       },
//       "status": {}
//     },
//     {
//       "id": 984237,
//       "firstName": "Demo",
//       "lastName": "Employee",
//       "companyName": "",
//       "email": "",
//       "phone": "",
//       "mobile": "58458458475854758",
//       "hourlyRate": 0,
//       "active": 0,
//       "deleted": true,
//       "colour": "#4C4CFF",
//       "created": "2015-09-03T01:56:17+00:00",
//       "modified": "2016-06-14T20:20:58+00:00",
//       "isAssignable": true,
//       "avatarUrl": "https:\/\/www.geoop.com\/images\/mobithumb_984237.jpg",
//       "role": {
//         "id": 2
//       },
//       "account": {
//         "id": 39409
//       },
//       "status": {
//         "message": null,
//         "timestamp": "2015-09-03T01:57:45+00:00"
//       }
//     }
//   ],
//   "metadata": {
//     "page": 1,
//     "pagesCount": 1,
//     "recordsPerPage": 20,
//     "recordsCount": 2
//   }
// }
// 
//