getApi
Top-level resources and operations in this API
Return links to the top-level resources and operations in this API. This API provides the following links in the `_links` object: * **`apiture:contacts`** -- links to the `contacts` collection * **`apiture:createContact`** -- links to a POST operation to create a new contact
/
Usage and SDK Samples
curl -X GET -H "API-Key: [[apiKey]]" "http:///contacts/"
import { APIApi } from "@apiture/contacts-client-sdk";
const aPIApi = new APIApi(configuration);
// Configure API key authorization: apiKey
var apiKey = "YOUR API KEY";
aPIApi.setApiKey(apiKey);
var api = new Contacts.APIApi.getApi()
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
aPIApi.getApi(callback);