Pular para o conteúdo principal
GET
/
v2
/
enterprise
/
api-keys
Endpoint GET de chaves de API Enterprise
curl --request GET \
  --url https://api.devin.ai/v2/enterprise/api-keys \
  --header 'Authorization: Bearer <token>'
{
  "has_more": true,
  "items": [
    {
      "created_at": "<string>",
      "id": "<string>",
      "is_service_key": true,
      "org_id": "<string>",
      "org_name": "<string>",
      "user_email": "<string>",
      "user_id": "<string>",
      "api_key_value": "<string>"
    }
  ],
  "limit": 123,
  "skip": 123,
  "total": 123,
  "next_cursor": 123
}
Requer uma chave de API pessoal de administrador da Enterprise. Retorna uma lista paginada de chaves de API de todas as organizações da Enterprise.

Autorizações

Authorization
string
header
obrigatório

Chave de API pessoal (apk_user_*) somente para administradores do Enterprise

Parâmetros de consulta

page
integer
padrão:1
Intervalo obrigatório: x >= 1
per_page
integer
padrão:25
Intervalo obrigatório: 1 <= x <= 100
org_id
string | null

Resposta

Resposta bem-sucedida

has_more
boolean
obrigatório
items
ApiKeyResponse · object[]
obrigatório
limit
integer
obrigatório
skip
integer
obrigatório
total
integer
obrigatório
next_cursor
integer | null