create_api_key
Generate an API key for data ingestion into the Coroot observability platform. Specify project ID and name to create a key for sending metrics and data securely. The key secret is provided only upon creation.
Instructions
Create a new API key for data ingestion.
Creates an API key that can be used for sending metrics and data. The key secret is only returned once during creation.
Args: project_id: Project ID name: API key name description: Optional description
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
name | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"name": {
"title": "Name",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"name"
],
"type": "object"
}