Vai al contenuto principale
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
}
Richiede l’API key personale di un amministratore Enterprise. Restituisce un elenco paginato di API key per le organizzazioni all’interno dell’Enterprise.

Authorizations

Authorization
string
header
required

Personal API Key (apk_user_*) for Enterprise Admins only

Query Parameters

page
integer
default:1
Intervallo richiesto: x >= 1
per_page
integer
default:25
Intervallo richiesto: 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