Pular para o conteúdo principal
GET
/
v2
/
enterprise
/
api-keys
Get Enterprise Api Keys Endpoint
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.

Authorizations

Authorization
string
header
required

Personal API Key (apk_user_*) for Enterprise Admins only

Query Parameters

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

Response

Successful Response

has_more
boolean
required
items
ApiKeyResponse · object[]
required
limit
integer
required
skip
integer
required
total
integer
required
next_cursor
integer | null