CreateApiKeyRequest
Request to create a new API key
Properties
| Property | Type | Required | Description |
|---|---|---|---|
expires_in_days |
integer,null | No | |
name |
string | Yes |
View JSON Schema
{
"type": "object",
"description": "Request to create a new API key",
"required": [
"name"
],
"properties": {
"expires_in_days": {
"type": [
"integer",
"null"
],
"format": "int64"
},
"name": {
"type": "string"
}
}
}