All URIs are relative to https://app.statflo.com
| Method | HTTP request | Description |
|---|---|---|
| userExternalId | GET /v4/api/user-external-id | |
| userExternalIdCreate | POST /v4/api/user-external-id | |
| userExternalIdDelete | DELETE /v4/api/user-external-id/{id} | |
| userExternalIdGet | GET /v4/api/user-external-id/{id} | |
| userExternalIdUpdate | PUT /v4/api/user-external-id/{id} |
UserExternalIdPaginationResponse userExternalId(filter, query, page, perPage, sort)
Search user external ids.
// Import classes:
//import com.statflo.client.ApiClient;
//import com.statflo.client.ApiException;
//import com.statflo.client.Configuration;
//import com.statflo.client.auth.*;
//import com.statflo.client.api.UserExternalIdApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
UserExternalIdApi apiInstance = new UserExternalIdApi();
java.util.HashMap filter = new java.util.HashMap(); // java.util.HashMap |
String query = "query_example"; // String |
Integer page = 56; // Integer |
Integer perPage = 56; // Integer |
String sort = "sort_example"; // String |
try {
UserExternalIdPaginationResponse result = apiInstance.userExternalId(filter, query, page, perPage, sort);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling UserExternalIdApi#userExternalId");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| filter | java.util.HashMap | [optional] | |
| query | String | [optional] | |
| page | Integer | [optional] | |
| perPage | Integer | [optional] | |
| sort | String | [optional] |
UserExternalIdPaginationResponse
- Content-Type: Not defined
- Accept: application/json
UserExternalId userExternalIdCreate(body)
Create a user external id.
// Import classes:
//import com.statflo.client.ApiClient;
//import com.statflo.client.ApiException;
//import com.statflo.client.Configuration;
//import com.statflo.client.auth.*;
//import com.statflo.client.api.UserExternalIdApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
UserExternalIdApi apiInstance = new UserExternalIdApi();
UserExternalIdCreate body = new UserExternalIdCreate(); // UserExternalIdCreate |
try {
UserExternalId result = apiInstance.userExternalIdCreate(body);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling UserExternalIdApi#userExternalIdCreate");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| body | UserExternalIdCreate | [optional] |
- Content-Type: application/json
- Accept: application/json
userExternalIdDelete(id)
Remove a user external id.
// Import classes:
//import com.statflo.client.ApiClient;
//import com.statflo.client.ApiException;
//import com.statflo.client.Configuration;
//import com.statflo.client.auth.*;
//import com.statflo.client.api.UserExternalIdApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
UserExternalIdApi apiInstance = new UserExternalIdApi();
String id = "id_example"; // String |
try {
apiInstance.userExternalIdDelete(id);
} catch (ApiException e) {
System.err.println("Exception when calling UserExternalIdApi#userExternalIdDelete");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | String |
null (empty response body)
- Content-Type: Not defined
- Accept: application/json
UserExternalId userExternalIdGet(id)
Retrieve a user external id.
// Import classes:
//import com.statflo.client.ApiClient;
//import com.statflo.client.ApiException;
//import com.statflo.client.Configuration;
//import com.statflo.client.auth.*;
//import com.statflo.client.api.UserExternalIdApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
UserExternalIdApi apiInstance = new UserExternalIdApi();
String id = "id_example"; // String |
try {
UserExternalId result = apiInstance.userExternalIdGet(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling UserExternalIdApi#userExternalIdGet");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | String |
- Content-Type: Not defined
- Accept: application/json
UserExternalId userExternalIdUpdate(id, body)
Update a user external id.
// Import classes:
//import com.statflo.client.ApiClient;
//import com.statflo.client.ApiException;
//import com.statflo.client.Configuration;
//import com.statflo.client.auth.*;
//import com.statflo.client.api.UserExternalIdApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
UserExternalIdApi apiInstance = new UserExternalIdApi();
String id = "id_example"; // String |
UserExternalIdUpdate body = new UserExternalIdUpdate(); // UserExternalIdUpdate |
try {
UserExternalId result = apiInstance.userExternalIdUpdate(id, body);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling UserExternalIdApi#userExternalIdUpdate");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | String | ||
| body | UserExternalIdUpdate | [optional] |
- Content-Type: application/json
- Accept: application/json