driveDrivePost
Drive
/drive
Usage and SDK Samples
curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://api.inverted.ai/v0/aws/m1/drive"
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();
DrivePayload body = ; // DrivePayload |
String apiKey = apiKey_example; // String |
try {
DriveResponse result = apiInstance.driveDrivePost(body, apiKey);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#driveDrivePost");
e.printStackTrace();
}
}
}
import io.swagger.client.api.DefaultApi;
public class DefaultApiExample {
public static void main(String[] args) {
DefaultApi apiInstance = new DefaultApi();
DrivePayload body = ; // DrivePayload |
String apiKey = apiKey_example; // String |
try {
DriveResponse result = apiInstance.driveDrivePost(body, apiKey);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#driveDrivePost");
e.printStackTrace();
}
}
}
DrivePayload *body = ; //
String *apiKey = apiKey_example; // (optional)
DefaultApi *apiInstance = [[DefaultApi alloc] init];
// Drive
[apiInstance driveDrivePostWith:body
apiKey:apiKey
completionHandler: ^(DriveResponse output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var InvertedAi = require('inverted_ai');
var api = new InvertedAi.DefaultApi()
var body = ; // {{DrivePayload}}
var opts = {
'apiKey': apiKey_example // {{String}}
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.driveDrivePost(body, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class driveDrivePostExample
{
public void main()
{
var apiInstance = new DefaultApi();
var body = new DrivePayload(); // DrivePayload |
var apiKey = apiKey_example; // String | (optional)
try
{
// Drive
DriveResponse result = apiInstance.driveDrivePost(body, apiKey);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DefaultApi.driveDrivePost: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // DrivePayload |
$apiKey = apiKey_example; // String |
try {
$result = $api_instance->driveDrivePost($body, $apiKey);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->driveDrivePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;
my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::DrivePayload->new(); # DrivePayload |
my $apiKey = apiKey_example; # String |
eval {
my $result = $api_instance->driveDrivePost(body => $body, apiKey => $apiKey);
print Dumper($result);
};
if ($@) {
warn "Exception when calling DefaultApi->driveDrivePost: $@\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()
body = # DrivePayload |
apiKey = apiKey_example # String | (optional)
try:
# Drive
api_response = api_instance.drive_drive_post(body, apiKey=apiKey)
pprint(api_response)
except ApiException as e:
print("Exception when calling DefaultApi->driveDrivePost: %s\n" % e)
Parameters
Header parameters
Name | Description |
---|---|
api-key |
String
|
Body parameters
Name | Description |
---|---|
body * |