AutoretrieveApi
All URIs are relative to https://api.estuary.tech
Method | HTTP request | Description |
---|---|---|
adminAutoretrieveInitPost | POST /admin/autoretrieve/init | Register autoretrieve server |
adminAutoretrieveListGet | GET /admin/autoretrieve/list | List autoretrieve servers |
autoretrieveHeartbeatPost | POST /autoretrieve/heartbeat | Marks autoretrieve server as up |
Register autoretrieve server
This endpoint registers a new autoretrieve server
Example
// Import classes:
//import io.swagger.client.ApiClient;
//import io.swagger.client.ApiException;
//import io.swagger.client.Configuration;
//import io.swagger.client.auth.*;
//import io.swagger.client.api.AutoretrieveApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: bearerAuth
ApiKeyAuth bearerAuth = (ApiKeyAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//bearerAuth.setApiKeyPrefix("Token");
AutoretrieveApi apiInstance = new AutoretrieveApi();
String addresses = "addresses_example"; // String | Autoretrieve's comma-separated list of addresses
String pubKey = "pubKey_example"; // String | Autoretrieve's public key
try {
apiInstance.adminAutoretrieveInitPost(addresses, pubKey);
} catch (ApiException e) {
System.err.println("Exception when calling AutoretrieveApi#adminAutoretrieveInitPost");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
addresses | String | Autoretrieve's comma-separated list of addresses | |
pubKey | String | Autoretrieve's public key |
Return type
null (empty response body)
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
List autoretrieve servers
This endpoint lists all registered autoretrieve servers
Example
// Import classes:
//import io.swagger.client.ApiClient;
//import io.swagger.client.ApiException;
//import io.swagger.client.Configuration;
//import io.swagger.client.auth.*;
//import io.swagger.client.api.AutoretrieveApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: bearerAuth
ApiKeyAuth bearerAuth = (ApiKeyAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//bearerAuth.setApiKeyPrefix("Token");
AutoretrieveApi apiInstance = new AutoretrieveApi();
try {
apiInstance.adminAutoretrieveListGet();
} catch (ApiException e) {
System.err.println("Exception when calling AutoretrieveApi#adminAutoretrieveListGet");
e.printStackTrace();
}
Parameters
This endpoint does not need any parameter.
Return type
null (empty response body)
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
Marks autoretrieve server as up
This endpoint updates the lastConnection field for autoretrieve
Example
// Import classes:
//import io.swagger.client.ApiClient;
//import io.swagger.client.ApiException;
//import io.swagger.client.Configuration;
//import io.swagger.client.auth.*;
//import io.swagger.client.api.AutoretrieveApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: bearerAuth
ApiKeyAuth bearerAuth = (ApiKeyAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//bearerAuth.setApiKeyPrefix("Token");
AutoretrieveApi apiInstance = new AutoretrieveApi();
String token = "token_example"; // String | Autoretrieve's auth token
try {
apiInstance.autoretrieveHeartbeatPost(token);
} catch (ApiException e) {
System.err.println("Exception when calling AutoretrieveApi#autoretrieveHeartbeatPost");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
token | String | Autoretrieve's auth token |
Return type
null (empty response body)
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/json