action nordigen_jwt_obtain { label: "JWT Obtain" description: "Obtain JWT pair" provider: nordigen method: POST path: "/api/v2/token/new/" encoding: form input: { type: "object" description: "Obtain JWT pair." required: ["secret_id", "secret_key"] properties: { secret_id: { type: "string" description: "Secret id from /user-secrets/" } secret_key: { type: "string" description: "Secret key from /user-secrets/" } } } output: { type: "object" description: "Obtain new JWT pair." properties: { access: { type: "string" description: "Your access token" } access_expires: { type: "integer" description: "Access token expires in seconds" } refresh: { type: "string" description: "Your refresh token" } refresh_expires: { type: "integer" description: "Refresh token expires in seconds" } } } }