all of
-
keystring -
Full API key - only returned on creation
Must match all schemas
Schema 1
object
-
created_atstring · date-time required -
expires_atstring · date-time -
idstring required -
key_prefixstring required -
namestring required -
owner_emailstring -
owner_namestring -
revokedboolean required -
role_idstring required -
workspace_idstring
OpenAPI schema definition
{
"allOf": [
{
"properties": {
"created_at": {
"format": "date-time",
"type": "string"
},
"expires_at": {
"format": "date-time",
"type": "string"
},
"id": {
"type": "string"
},
"key_prefix": {
"type": "string"
},
"name": {
"type": "string"
},
"owner_email": {
"type": "string"
},
"owner_name": {
"type": "string"
},
"revoked": {
"type": "boolean"
},
"role_id": {
"type": "string"
},
"workspace_id": {
"type": "string"
}
},
"required": [
"id",
"key_prefix",
"role_id",
"name",
"revoked",
"created_at"
],
"type": "object"
}
],
"properties": {
"key": {
"description": "Full API key - only returned on creation",
"type": "string"
}
},
"type": "object"
}