curl \
-X POST \
-d api_key=TURBO_API_KEY \
https://api.tur.bo/customers/123
<?php
$api_url ='https://api.tur.bo';
$api_path='/customers/123';
$api_key ='TURBO_API_KEY';
$fields =array( 'api_key'=>$api_key );
$opts =array( 'form_params'=>$fields );
try {
$client =new GuzzleHttp\Client( array( 'base_uri'=>$api_url ) );
$response=$client->post( $api_path,$opts );
$json =$response->getBody();
echo $json;
}
catch( Exception $e ) {
echo 'error = ',$e->getMessage(),"\n";
}
?>
#!/usr/bin/python
import requests
import json
api_url="https://api.tur.bo/customers/123"
result=requests.post( api_url,data="api_key=TURBO_API_KEY" )
print( json.dumps( result.json() ) )
#!/usr/bin/env ruby
require 'uri'
require 'net/http'
api_url="https://api.tur.bo/customers/123"
uri =URI( api_url )
result =Net::HTTP.post_form( uri,'api_key'=>'TURBO_API_KEY' )
puts result.body
{
"error": false,
"msg": "OK",
"api_path": "/customers",
"total_results":1,
"limit":25,
"customers": [ {
"id": "123",
"first_name": "Bob",
"last_name": "Example",
"created":"2023-11-01 11:19:49",
"email": "bob@example.com",
"phone": "(000) 000-0000"
} ]
}
JSON response object |
Key |
Value |
error |
true or false depending on if an error has occurred in the API request |
msg |
OK if all is well, otherwise will include descriptive error text |
type |
customers |
total_results |
total number of all results found |
limit |
number of results currently displayed |
customers[] |
customer object |
customers.id |
customer ID |
customers.first_name |
first name |
customers.last_name |
last name |
customers.created |
timestamp for customer creation |
customers.email |
email address |
customers.phone |
phone number |