Ingestion Keys
List Ingestion Keys
Name of the ingestion key to filter by
RemoteConfig indicates if the key is for remote config
Type of the ingestion key to filter by
ErrorResponse defines a common error response structure.
ErrorResponse defines a common error response structure.
POST /api/rbac/ingestion-keys/list HTTP/1.1
Host: api.groundcover.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 49
{
"name": "text",
"remoteConfig": true,
"type": "text"
}
No content
Create Ingestion Key
The desired name for the ingestion key.
Indicates whether the key is explicitly for remote configuration or not.
A list of tags to associate with the key.
The type of the ingestion key.
ErrorResponse defines a common error response structure.
ErrorResponse defines a common error response structure.
ErrorResponse defines a common error response structure.
POST /api/rbac/ingestion-keys/create HTTP/1.1
Host: api.groundcover.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 67
{
"name": "text",
"remoteConfig": true,
"tags": [
"text"
],
"type": "sensor"
}
No content
Delete Ingestion Key
Name of the ingestion key to delete
NoContentResponse indicates success but that no response body is expected or included.
ErrorResponse defines a common error response structure.
ErrorResponse defines a common error response structure.
ErrorResponse defines a common error response structure.
DELETE /api/rbac/ingestion-keys/delete HTTP/1.1
Host: api.groundcover.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}
No content
Last updated