get
Query a specified voucher number to get the current status of the voucher
/api/v2/voucher/{vouchernumber}
Usage and SDK Samples
curl -X GET\
-H "Accept: application/json,text/json,application/xml,text/xml"\
"http://api.prepaid-wizard.com//api/v2/voucher/{vouchernumber}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.VoucherVendApi;
import java.io.File;
import java.util.*;
public class VoucherVendApiExample {
public static void main(String[] args) {
VoucherVendApi apiInstance = new VoucherVendApi();
String vouchernumber = vouchernumber_example; // String |
try {
APIResponseStatus result = apiInstance.get(vouchernumber);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling VoucherVendApi#get");
e.printStackTrace();
}
}
}
import io.swagger.client.api.VoucherVendApi;
public class VoucherVendApiExample {
public static void main(String[] args) {
VoucherVendApi apiInstance = new VoucherVendApi();
String vouchernumber = vouchernumber_example; // String |
try {
APIResponseStatus result = apiInstance.get(vouchernumber);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling VoucherVendApi#get");
e.printStackTrace();
}
}
}
String *vouchernumber = vouchernumber_example; //
VoucherVendApi *apiInstance = [[VoucherVendApi alloc] init];
// Query a specified voucher number to get the current status of the voucher
[apiInstance getWith:vouchernumber
completionHandler: ^(APIResponseStatus output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var PrePaidWizardVoucherApi = require('pre_paid_wizard_voucher_api');
var api = new PrePaidWizardVoucherApi.VoucherVendApi()
var vouchernumber = vouchernumber_example; // {{String}}
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.get(vouchernumber, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class getExample
{
public void main()
{
var apiInstance = new VoucherVendApi();
var vouchernumber = vouchernumber_example; // String |
try
{
// Query a specified voucher number to get the current status of the voucher
APIResponseStatus result = apiInstance.get(vouchernumber);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling VoucherVendApi.get: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiVoucherVendApi();
$vouchernumber = vouchernumber_example; // String |
try {
$result = $api_instance->get($vouchernumber);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling VoucherVendApi->get: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::VoucherVendApi;
my $api_instance = WWW::SwaggerClient::VoucherVendApi->new();
my $vouchernumber = vouchernumber_example; # String |
eval {
my $result = $api_instance->get(vouchernumber => $vouchernumber);
print Dumper($result);
};
if ($@) {
warn "Exception when calling VoucherVendApi->get: $@\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.VoucherVendApi()
vouchernumber = vouchernumber_example # String |
try:
# Query a specified voucher number to get the current status of the voucher
api_response = api_instance.get(vouchernumber)
pprint(api_response)
except ApiException as e:
print("Exception when calling VoucherVendApi->get: %s\n" % e)
Parameters
Path parameters
| Name | Description |
|---|---|
| vouchernumber* |
String
Required
|