Requires an enterprise admin external API key.
Creates a service API key for a specified Organization within the Enterprise.
Request Body
Organization ID to create a service key for.
Response
Newly created service API key.
Organization ID associated with the created key.
curl -X POST "https://api.devin.ai/v2/enterprise/api-keys" \
-H "Authorization: Bearer YOUR_ENTERPRISE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"org_id":"org_123"}'
{ "api_key": "devin_enterprise_service_key_value", "org_id": "org_123" }