Skip to main content
GET
/
api
/
openapi
/
v1
/
api-keys
/
{keyId}
Obter Chave API
curl --request GET \
  --url https://app.converza.io/api/openapi/v1/api-keys/{keyId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "key_id": "cvz_key_abc123",
    "name": "Chave de Integração de Produção",
    "scope": "global",
    "is_active": true,
    "expires_at": "2023-11-07T05:31:56Z",
    "last_used": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Token JWT obtido do endpoint /api/openapi/auth/token

Path Parameters

keyId
string
required

ID da Chave API

Example:

"cvz_key_abc123"

Response

Chave API recuperada com sucesso

success
boolean
Example:

true

data
object