retrieveAuthorityIdentifierTypes
/authority-identifier-types
Usage and SDK Samples
curl -X GET \
-H "Accept: application/json" \
"https://localhost:8081/authority-identifier-types?offset=56&limit=56&query=query_example"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.AuthorityIdentifierTypeApi;
import java.io.File;
import java.util.*;
public class AuthorityIdentifierTypeApiExample {
public static void main(String[] args) {
// Create an instance of the API class
AuthorityIdentifierTypeApi apiInstance = new AuthorityIdentifierTypeApi();
Integer offset = 56; // Integer | Skip over a number of elements by specifying an offset value for the query.
Integer limit = 56; // Integer | Limit the number of elements returned in the response.
String query = query_example; // String | A query expressed as a CQL string (see [dev.folio.org/reference/glossary#cql](https://dev.folio.org/reference/glossary#cql)) using valid searchable fields. The first example below shows the general form of a full CQL query, but those fields might not be relevant in this context.
try {
authorityIdentifierTypeDtoCollection result = apiInstance.retrieveAuthorityIdentifierTypes(offset, limit, query);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AuthorityIdentifierTypeApi#retrieveAuthorityIdentifierTypes");
e.printStackTrace();
}
}
}
import 'package:openapi/api.dart';
final api_instance = DefaultApi();
final Integer offset = new Integer(); // Integer | Skip over a number of elements by specifying an offset value for the query.
final Integer limit = new Integer(); // Integer | Limit the number of elements returned in the response.
final String query = new String(); // String | A query expressed as a CQL string (see [dev.folio.org/reference/glossary#cql](https://dev.folio.org/reference/glossary#cql)) using valid searchable fields. The first example below shows the general form of a full CQL query, but those fields might not be relevant in this context.
try {
final result = await api_instance.retrieveAuthorityIdentifierTypes(offset, limit, query);
print(result);
} catch (e) {
print('Exception when calling DefaultApi->retrieveAuthorityIdentifierTypes: $e\n');
}
import org.openapitools.client.api.AuthorityIdentifierTypeApi;
public class AuthorityIdentifierTypeApiExample {
public static void main(String[] args) {
AuthorityIdentifierTypeApi apiInstance = new AuthorityIdentifierTypeApi();
Integer offset = 56; // Integer | Skip over a number of elements by specifying an offset value for the query.
Integer limit = 56; // Integer | Limit the number of elements returned in the response.
String query = query_example; // String | A query expressed as a CQL string (see [dev.folio.org/reference/glossary#cql](https://dev.folio.org/reference/glossary#cql)) using valid searchable fields. The first example below shows the general form of a full CQL query, but those fields might not be relevant in this context.
try {
authorityIdentifierTypeDtoCollection result = apiInstance.retrieveAuthorityIdentifierTypes(offset, limit, query);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AuthorityIdentifierTypeApi#retrieveAuthorityIdentifierTypes");
e.printStackTrace();
}
}
}
// Create an instance of the API class
AuthorityIdentifierTypeApi *apiInstance = [[AuthorityIdentifierTypeApi alloc] init];
Integer *offset = 56; // Skip over a number of elements by specifying an offset value for the query. (optional) (default to 0)
Integer *limit = 56; // Limit the number of elements returned in the response. (optional) (default to 100)
String *query = query_example; // A query expressed as a CQL string (see [dev.folio.org/reference/glossary#cql](https://dev.folio.org/reference/glossary#cql)) using valid searchable fields. The first example below shows the general form of a full CQL query, but those fields might not be relevant in this context. (optional) (default to cql.allRecords=1)
[apiInstance retrieveAuthorityIdentifierTypesWith:offset
limit:limit
query:query
completionHandler: ^(authorityIdentifierTypeDtoCollection output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var EntitiesLinksApi = require('entities_links_api');
// Create an instance of the API class
var api = new EntitiesLinksApi.AuthorityIdentifierTypeApi()
var opts = {
'offset': 56, // {Integer} Skip over a number of elements by specifying an offset value for the query.
'limit': 56, // {Integer} Limit the number of elements returned in the response.
'query': query_example // {String} A query expressed as a CQL string (see [dev.folio.org/reference/glossary#cql](https://dev.folio.org/reference/glossary#cql)) using valid searchable fields. The first example below shows the general form of a full CQL query, but those fields might not be relevant in this context.
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.retrieveAuthorityIdentifierTypes(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;
namespace Example
{
public class retrieveAuthorityIdentifierTypesExample
{
public void main()
{
// Create an instance of the API class
var apiInstance = new AuthorityIdentifierTypeApi();
var offset = 56; // Integer | Skip over a number of elements by specifying an offset value for the query. (optional) (default to 0)
var limit = 56; // Integer | Limit the number of elements returned in the response. (optional) (default to 100)
var query = query_example; // String | A query expressed as a CQL string (see [dev.folio.org/reference/glossary#cql](https://dev.folio.org/reference/glossary#cql)) using valid searchable fields. The first example below shows the general form of a full CQL query, but those fields might not be relevant in this context. (optional) (default to cql.allRecords=1)
try {
authorityIdentifierTypeDtoCollection result = apiInstance.retrieveAuthorityIdentifierTypes(offset, limit, query);
Debug.WriteLine(result);
} catch (Exception e) {
Debug.Print("Exception when calling AuthorityIdentifierTypeApi.retrieveAuthorityIdentifierTypes: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\AuthorityIdentifierTypeApi();
$offset = 56; // Integer | Skip over a number of elements by specifying an offset value for the query.
$limit = 56; // Integer | Limit the number of elements returned in the response.
$query = query_example; // String | A query expressed as a CQL string (see [dev.folio.org/reference/glossary#cql](https://dev.folio.org/reference/glossary#cql)) using valid searchable fields. The first example below shows the general form of a full CQL query, but those fields might not be relevant in this context.
try {
$result = $api_instance->retrieveAuthorityIdentifierTypes($offset, $limit, $query);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AuthorityIdentifierTypeApi->retrieveAuthorityIdentifierTypes: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::AuthorityIdentifierTypeApi;
# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::AuthorityIdentifierTypeApi->new();
my $offset = 56; # Integer | Skip over a number of elements by specifying an offset value for the query.
my $limit = 56; # Integer | Limit the number of elements returned in the response.
my $query = query_example; # String | A query expressed as a CQL string (see [dev.folio.org/reference/glossary#cql](https://dev.folio.org/reference/glossary#cql)) using valid searchable fields. The first example below shows the general form of a full CQL query, but those fields might not be relevant in this context.
eval {
my $result = $api_instance->retrieveAuthorityIdentifierTypes(offset => $offset, limit => $limit, query => $query);
print Dumper($result);
};
if ($@) {
warn "Exception when calling AuthorityIdentifierTypeApi->retrieveAuthorityIdentifierTypes: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint
# Create an instance of the API class
api_instance = openapi_client.AuthorityIdentifierTypeApi()
offset = 56 # Integer | Skip over a number of elements by specifying an offset value for the query. (optional) (default to 0)
limit = 56 # Integer | Limit the number of elements returned in the response. (optional) (default to 100)
query = query_example # String | A query expressed as a CQL string (see [dev.folio.org/reference/glossary#cql](https://dev.folio.org/reference/glossary#cql)) using valid searchable fields. The first example below shows the general form of a full CQL query, but those fields might not be relevant in this context. (optional) (default to cql.allRecords=1)
try:
api_response = api_instance.retrieve_authority_identifier_types(offset=offset, limit=limit, query=query)
pprint(api_response)
except ApiException as e:
print("Exception when calling AuthorityIdentifierTypeApi->retrieveAuthorityIdentifierTypes: %s\n" % e)
extern crate AuthorityIdentifierTypeApi;
pub fn main() {
let offset = 56; // Integer
let limit = 56; // Integer
let query = query_example; // String
let mut context = AuthorityIdentifierTypeApi::Context::default();
let result = client.retrieveAuthorityIdentifierTypes(offset, limit, query, &context).wait();
println!("{:?}", result);
}
Scopes
Parameters
| Name | Description |
|---|---|
| offset |
Integer
Skip over a number of elements by specifying an offset value for the query.
|
| limit |
Integer
Limit the number of elements returned in the response.
|
| query |
String
A query expressed as a CQL string (see [dev.folio.org/reference/glossary#cql](https://dev.folio.org/reference/glossary#cql)) using valid searchable fields. The first example below shows the general form of a full CQL query, but those fields might not be relevant in this context.
|