lookupListDateChangedPost
lookup_list_date_changed
fetch the last date that the specified lookup table(s) were changed.
/lookup_list_date_changed
Usage and SDK Samples
curl -X POST\
-H "Authorization: Basic [[basicHash]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://safis.accsp.org/safis_prod/safis_prod/api/lookup_list_date_changed"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.EDRApi;
import java.io.File;
import java.util.*;
public class EDRApiExample {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure HTTP basic authorization: Non-Confidential
HttpBasicAuth Non-Confidential = (HttpBasicAuth) defaultClient.getAuthentication("Non-Confidential");
Non-Confidential.setUsername("YOUR USERNAME");
Non-Confidential.setPassword("YOUR PASSWORD");
EDRApi apiInstance = new EDRApi();
Lookup_list_date_changed_request body = ; // Lookup_list_date_changed_request |
try {
lookup_list_date_changed_response result = apiInstance.lookupListDateChangedPost(body);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling EDRApi#lookupListDateChangedPost");
e.printStackTrace();
}
}
}
import io.swagger.client.api.EDRApi;
public class EDRApiExample {
public static void main(String[] args) {
EDRApi apiInstance = new EDRApi();
Lookup_list_date_changed_request body = ; // Lookup_list_date_changed_request |
try {
lookup_list_date_changed_response result = apiInstance.lookupListDateChangedPost(body);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling EDRApi#lookupListDateChangedPost");
e.printStackTrace();
}
}
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure HTTP basic authorization (authentication scheme: Non-Confidential)
[apiConfig setUsername:@"YOUR_USERNAME"];
[apiConfig setPassword:@"YOUR_PASSWORD"];
Lookup_list_date_changed_request *body = ; //
EDRApi *apiInstance = [[EDRApi alloc] init];
// lookup_list_date_changed
[apiInstance lookupListDateChangedPostWith:body
completionHandler: ^(lookup_list_date_changed_response output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var UnifiedSafisApiTest = require('unified_safis_api__test');
var defaultClient = UnifiedSafisApiTest.ApiClient.instance;
// Configure HTTP basic authorization: Non-Confidential
var Non-Confidential = defaultClient.authentications['Non-Confidential'];
Non-Confidential.username = 'YOUR USERNAME'
Non-Confidential.password = 'YOUR PASSWORD'
var api = new UnifiedSafisApiTest.EDRApi()
var body = ; // {{Lookup_list_date_changed_request}}
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.lookupListDateChangedPost(body, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class lookupListDateChangedPostExample
{
public void main()
{
// Configure HTTP basic authorization: Non-Confidential
Configuration.Default.Username = "YOUR_USERNAME";
Configuration.Default.Password = "YOUR_PASSWORD";
var apiInstance = new EDRApi();
var body = new Lookup_list_date_changed_request(); // Lookup_list_date_changed_request |
try
{
// lookup_list_date_changed
lookup_list_date_changed_response result = apiInstance.lookupListDateChangedPost(body);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling EDRApi.lookupListDateChangedPost: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure HTTP basic authorization: Non-Confidential
Swagger\Client\Configuration::getDefaultConfiguration()->setUsername('YOUR_USERNAME');
Swagger\Client\Configuration::getDefaultConfiguration()->setPassword('YOUR_PASSWORD');
$api_instance = new Swagger\Client\ApiEDRApi();
$body = ; // Lookup_list_date_changed_request |
try {
$result = $api_instance->lookupListDateChangedPost($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling EDRApi->lookupListDateChangedPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::EDRApi;
# Configure HTTP basic authorization: Non-Confidential
$WWW::SwaggerClient::Configuration::username = 'YOUR_USERNAME';
$WWW::SwaggerClient::Configuration::password = 'YOUR_PASSWORD';
my $api_instance = WWW::SwaggerClient::EDRApi->new();
my $body = WWW::SwaggerClient::Object::Lookup_list_date_changed_request->new(); # Lookup_list_date_changed_request |
eval {
my $result = $api_instance->lookupListDateChangedPost(body => $body);
print Dumper($result);
};
if ($@) {
warn "Exception when calling EDRApi->lookupListDateChangedPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: Non-Confidential
swagger_client.configuration.username = 'YOUR_USERNAME'
swagger_client.configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = swagger_client.EDRApi()
body = # Lookup_list_date_changed_request |
try:
# lookup_list_date_changed
api_response = api_instance.lookup_list_date_changed_post(body)
pprint(api_response)
except ApiException as e:
print("Exception when calling EDRApi->lookupListDateChangedPost: %s\n" % e)
Parameters
| Name | Description |
|---|---|
| body * |