checkItineraryStatusGet
Check whether the itinerary is ready
/check_itinerary_status
Usage and SDK Samples
curl -X GET\
"https://api.doroad.dev/0.0.1/check_itinerary_status"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;
import java.io.File;
import java.util.*;
public class DefaultApiExample {
public static void main(String[] args) {
DefaultApi apiInstance = new DefaultApi();
try {
apiInstance.checkItineraryStatusGet();
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#checkItineraryStatusGet");
e.printStackTrace();
}
}
}
import io.swagger.client.api.DefaultApi;
public class DefaultApiExample {
public static void main(String[] args) {
DefaultApi apiInstance = new DefaultApi();
try {
apiInstance.checkItineraryStatusGet();
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#checkItineraryStatusGet");
e.printStackTrace();
}
}
}
DefaultApi *apiInstance = [[DefaultApi alloc] init];
// Check whether the itinerary is ready
[apiInstance checkItineraryStatusGetWithCompletionHandler:
^(NSError* error) {
if (error) {
NSLog(@"Error: %@", error);
}
}];
var DoRoadApi = require('do_road_api');
var api = new DoRoadApi.DefaultApi()
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
};
api.checkItineraryStatusGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class checkItineraryStatusGetExample
{
public void main()
{
var apiInstance = new DefaultApi();
try
{
// Check whether the itinerary is ready
apiInstance.checkItineraryStatusGet();
}
catch (Exception e)
{
Debug.Print("Exception when calling DefaultApi.checkItineraryStatusGet: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiDefaultApi();
try {
$api_instance->checkItineraryStatusGet();
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->checkItineraryStatusGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;
my $api_instance = WWW::SwaggerClient::DefaultApi->new();
eval {
$api_instance->checkItineraryStatusGet();
};
if ($@) {
warn "Exception when calling DefaultApi->checkItineraryStatusGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.DefaultApi()
try:
# Check whether the itinerary is ready
api_instance.check_itinerary_status_get()
except ApiException as e:
print("Exception when calling DefaultApi->checkItineraryStatusGet: %s\n" % e)