ServiceRequestIdGet
Get a ServiceRequest resource based on the resource ID.
/ServiceRequest/{id}
Usage and SDK Samples
curl -X GET\
-H "Accept: application/json"\
"//ServiceRequest/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ServiceRequestApi;
import java.io.File;
import java.util.*;
public class ServiceRequestApiExample {
public static void main(String[] args) {
ServiceRequestApi apiInstance = new ServiceRequestApi();
String id = id_example; // String | The ID of the ServiceRequest resource.
try {
ServiceRequest result = apiInstance.ServiceRequestIdGet(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ServiceRequestApi#ServiceRequestIdGet");
e.printStackTrace();
}
}
}
import io.swagger.client.api.ServiceRequestApi;
public class ServiceRequestApiExample {
public static void main(String[] args) {
ServiceRequestApi apiInstance = new ServiceRequestApi();
String id = id_example; // String | The ID of the ServiceRequest resource.
try {
ServiceRequest result = apiInstance.ServiceRequestIdGet(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ServiceRequestApi#ServiceRequestIdGet");
e.printStackTrace();
}
}
}
String *id = id_example; // The ID of the ServiceRequest resource.
ServiceRequestApi *apiInstance = [[ServiceRequestApi alloc] init];
[apiInstance ServiceRequestIdGetWith:id
completionHandler: ^(ServiceRequest output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var ServiceRequest = require('ServiceRequest');
var api = new ServiceRequest.ServiceRequestApi()
var id = id_example; // {{String}} The ID of the ServiceRequest resource.
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.ServiceRequestIdGet(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class ServiceRequestIdGetExample
{
public void main()
{
var apiInstance = new ServiceRequestApi();
var id = id_example; // String | The ID of the ServiceRequest resource.
try
{
ServiceRequest result = apiInstance.ServiceRequestIdGet(id);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling ServiceRequestApi.ServiceRequestIdGet: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiServiceRequestApi();
$id = id_example; // String | The ID of the ServiceRequest resource.
try {
$result = $api_instance->ServiceRequestIdGet($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ServiceRequestApi->ServiceRequestIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ServiceRequestApi;
my $api_instance = WWW::SwaggerClient::ServiceRequestApi->new();
my $id = id_example; # String | The ID of the ServiceRequest resource.
eval {
my $result = $api_instance->ServiceRequestIdGet(id => $id);
print Dumper($result);
};
if ($@) {
warn "Exception when calling ServiceRequestApi->ServiceRequestIdGet: $@\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.ServiceRequestApi()
id = id_example # String | The ID of the ServiceRequest resource.
try:
api_response = api_instance.ServiceRequest_id_get(id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ServiceRequestApi->ServiceRequestIdGet: %s\n" % e)
Parameters
Path parameters
| Name | Description |
|---|---|
| id* |
String
The ID of the ServiceRequest resource.
Required
|