All URIs are relative to https://api.configcat.com
Method | HTTP request | Description |
---|---|---|
createTag | POST /v1/products/{productId}/tags | Create Tag |
deleteTag | DELETE /v1/tags/{tagId} | Delete Tag |
getSettingsByTag | GET /v1/tags/{tagId}/settings | List Settings by Tag |
getTag | GET /v1/tags/{tagId} | Get Tag |
getTags | GET /v1/products/{productId}/tags | List Tags |
updateTag | PUT /v1/tags/{tagId} | Update Tag |
TagModel createTag(productId, createTagModel)
Create Tag
This endpoint creates a new Tag in a specified Product identified by the `productId` parameter, which can be obtained from the List Products endpoint.
// Import classes:
import com.configcat.publicapi.java.client.ApiClient;
import com.configcat.publicapi.java.client.ApiException;
import com.configcat.publicapi.java.client.Configuration;
import com.configcat.publicapi.java.client.auth.*;
import com.configcat.publicapi.java.client.models.*;
import com.configcat.publicapi.java.client.api.TagsApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.configcat.com");
// Configure HTTP basic authorization: Basic
HttpBasicAuth Basic = (HttpBasicAuth) defaultClient.getAuthentication("Basic");
Basic.setUsername("YOUR USERNAME");
Basic.setPassword("YOUR PASSWORD");
TagsApi apiInstance = new TagsApi(defaultClient);
UUID productId = UUID.randomUUID(); // UUID | The identifier of the Organization.
CreateTagModel createTagModel = new CreateTagModel(); // CreateTagModel |
try {
TagModel result = apiInstance.createTag(productId, createTagModel);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling TagsApi#createTag");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
productId | UUID | The identifier of the Organization. | |
createTagModel | CreateTagModel |
- Content-Type: application/json, text/json, application/*+json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
201 | When the creation was successful. | - |
400 | Bad request. | - |
404 | Not found. | - |
429 | Too many requests. In case of the request rate exceeds the rate limits. | - |
deleteTag(tagId)
Delete Tag
This endpoint deletes a Tag identified by the `tagId` parameter. To remove a Tag from a Feature Flag or Setting use the Update Flag endpoint.
// Import classes:
import com.configcat.publicapi.java.client.ApiClient;
import com.configcat.publicapi.java.client.ApiException;
import com.configcat.publicapi.java.client.Configuration;
import com.configcat.publicapi.java.client.auth.*;
import com.configcat.publicapi.java.client.models.*;
import com.configcat.publicapi.java.client.api.TagsApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.configcat.com");
// Configure HTTP basic authorization: Basic
HttpBasicAuth Basic = (HttpBasicAuth) defaultClient.getAuthentication("Basic");
Basic.setUsername("YOUR USERNAME");
Basic.setPassword("YOUR PASSWORD");
TagsApi apiInstance = new TagsApi(defaultClient);
Long tagId = 56L; // Long | The identifier of the Tag.
try {
apiInstance.deleteTag(tagId);
} catch (ApiException e) {
System.err.println("Exception when calling TagsApi#deleteTag");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
tagId | Long | The identifier of the Tag. |
null (empty response body)
- Content-Type: Not defined
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
204 | When the delete was successful. | - |
400 | Bad request. | - |
404 | Not found. | - |
429 | Too many requests. In case of the request rate exceeds the rate limits. | - |
List<SettingModel> getSettingsByTag(tagId)
List Settings by Tag
This endpoint returns the list of the Settings that has the specified Tag, identified by the `tagId` parameter.
// Import classes:
import com.configcat.publicapi.java.client.ApiClient;
import com.configcat.publicapi.java.client.ApiException;
import com.configcat.publicapi.java.client.Configuration;
import com.configcat.publicapi.java.client.auth.*;
import com.configcat.publicapi.java.client.models.*;
import com.configcat.publicapi.java.client.api.TagsApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.configcat.com");
// Configure HTTP basic authorization: Basic
HttpBasicAuth Basic = (HttpBasicAuth) defaultClient.getAuthentication("Basic");
Basic.setUsername("YOUR USERNAME");
Basic.setPassword("YOUR PASSWORD");
TagsApi apiInstance = new TagsApi(defaultClient);
Long tagId = 56L; // Long | The identifier of the Tag.
try {
List<SettingModel> result = apiInstance.getSettingsByTag(tagId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling TagsApi#getSettingsByTag");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
tagId | Long | The identifier of the Tag. |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | When everything is ok, the settings data returned. | - |
400 | Bad request. | - |
404 | Not found. | - |
429 | Too many requests. In case of the request rate exceeds the rate limits. | - |
TagModel getTag(tagId)
Get Tag
This endpoint returns the metadata of a Tag identified by the `tagId`.
// Import classes:
import com.configcat.publicapi.java.client.ApiClient;
import com.configcat.publicapi.java.client.ApiException;
import com.configcat.publicapi.java.client.Configuration;
import com.configcat.publicapi.java.client.auth.*;
import com.configcat.publicapi.java.client.models.*;
import com.configcat.publicapi.java.client.api.TagsApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.configcat.com");
// Configure HTTP basic authorization: Basic
HttpBasicAuth Basic = (HttpBasicAuth) defaultClient.getAuthentication("Basic");
Basic.setUsername("YOUR USERNAME");
Basic.setPassword("YOUR PASSWORD");
TagsApi apiInstance = new TagsApi(defaultClient);
Long tagId = 56L; // Long | The identifier of the Tag.
try {
TagModel result = apiInstance.getTag(tagId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling TagsApi#getTag");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
tagId | Long | The identifier of the Tag. |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | When everything is ok, the tag data returned. | - |
400 | Bad request. | - |
404 | Not found. | - |
429 | Too many requests. In case of the request rate exceeds the rate limits. | - |
List<TagModel> getTags(productId)
List Tags
This endpoint returns the list of the Tags in a specified Product, identified by the `productId` parameter.
// Import classes:
import com.configcat.publicapi.java.client.ApiClient;
import com.configcat.publicapi.java.client.ApiException;
import com.configcat.publicapi.java.client.Configuration;
import com.configcat.publicapi.java.client.auth.*;
import com.configcat.publicapi.java.client.models.*;
import com.configcat.publicapi.java.client.api.TagsApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.configcat.com");
// Configure HTTP basic authorization: Basic
HttpBasicAuth Basic = (HttpBasicAuth) defaultClient.getAuthentication("Basic");
Basic.setUsername("YOUR USERNAME");
Basic.setPassword("YOUR PASSWORD");
TagsApi apiInstance = new TagsApi(defaultClient);
UUID productId = UUID.randomUUID(); // UUID | The identifier of the Product.
try {
List<TagModel> result = apiInstance.getTags(productId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling TagsApi#getTags");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
productId | UUID | The identifier of the Product. |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | - | |
429 | Too many requests. In case of the request rate exceeds the rate limits. | - |
TagModel updateTag(tagId, updateTagModel)
Update Tag
This endpoint updates a Tag identified by the `tagId` parameter.
// Import classes:
import com.configcat.publicapi.java.client.ApiClient;
import com.configcat.publicapi.java.client.ApiException;
import com.configcat.publicapi.java.client.Configuration;
import com.configcat.publicapi.java.client.auth.*;
import com.configcat.publicapi.java.client.models.*;
import com.configcat.publicapi.java.client.api.TagsApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.configcat.com");
// Configure HTTP basic authorization: Basic
HttpBasicAuth Basic = (HttpBasicAuth) defaultClient.getAuthentication("Basic");
Basic.setUsername("YOUR USERNAME");
Basic.setPassword("YOUR PASSWORD");
TagsApi apiInstance = new TagsApi(defaultClient);
Long tagId = 56L; // Long | The identifier of the Tag.
UpdateTagModel updateTagModel = new UpdateTagModel(); // UpdateTagModel |
try {
TagModel result = apiInstance.updateTag(tagId, updateTagModel);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling TagsApi#updateTag");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
tagId | Long | The identifier of the Tag. | |
updateTagModel | UpdateTagModel |
- Content-Type: application/json, text/json, application/*+json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | - | |
400 | Bad request. | - |
404 | Not found. | - |
429 | Too many requests. In case of the request rate exceeds the rate limits. | - |