Authentication methods for Kubiya agent servers
curl -H "Authorization: Bearer YOUR_API_KEY" \ https://your-server.com/api/endpoint
curl -H "Authorization: Bearer YOUR_JWT_TOKEN" \ https://your-server.com/api/endpoint
KUBIYA_API_KEY=your_api_key_here KUBIYA_JWT_SECRET=your_jwt_secret_here KUBIYA_AUTH_REQUIRED=true
server: auth: required: true methods: - api_key - jwt api_key_header: "Authorization" jwt_secret: "${KUBIYA_JWT_SECRET}"
Was this page helpful?