create-key
Generate API keys with specific permissions and expiration for managing Meilisearch indexes, ensuring controlled access and security.
Instructions
Create a new API key
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| actions | Yes | ||
| description | No | ||
| expiresAt | No | ||
| indexes | Yes | 
Input Schema (JSON Schema)
{
  "additionalProperties": false,
  "properties": {
    "actions": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "description": {
      "type": "string"
    },
    "expiresAt": {
      "type": "string"
    },
    "indexes": {
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "actions",
    "indexes"
  ],
  "type": "object"
}