action lumminary_post_jwt_auth { label: "General-purpose authentication" description: "## Note:\n* The JWT tokens returned should be passed to any resource that requires authentication, in the Authentication header, in the format `Bearer: your-token-here`\n* Only JWT authentication tokens are provided (no refresh tokens). These tokens are valid for 30 seconds from the moment they were issued" provider: lumminary method: POST path: "/auth/jwt" encoding: json input: { type: "object" properties: { "X-Fields": { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }