action nordigen_jwt_refresh { label: "JWT Refresh" description: "Refresh access token" provider: nordigen method: POST path: "/api/v2/token/refresh/" encoding: form input: { type: "object" description: "Refresh access token." required: ["refresh"] properties: { refresh: { type: "string" } } } output: { type: "object" description: "Refresh Access token." properties: { access: { type: "string" description: "Your access token" } access_expires: { type: "integer" description: "Access token expires in seconds" } } } }