action ndhm_post_v0_5_consents_hiu_on_notify { label: "Consent notification" description: "This API is called by HIU as acknowledgement to consent notifications, specifically for cases when consent is REVOKED or EXPIRED, notified by CM earlier via Gateway API - ***/v0.5/consents/hiu/notify***.\n" provider: ndhm method: POST path: "/v0.5/consents/hiu/on-notify" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } acknowledgement: { type: "array" items: { type: "object" required: ["status", "consentId"] properties: { consentId: { type: "string" } status: { type: "string" enum: ["OK", "UNKNOWN"] } } } } error: { type: "object" required: ["code", "message"] properties: { code: { type: "integer" enum: [1000, 10001] } message: { type: "string" } } } requestId: { type: "string" format: "uuid" description: "a nonce, unique for each HTTP request" } resp: { type: "object" required: ["requestId"] properties: { requestId: { type: "string" format: "uuid" description: "the requestId that was passed" } } } timestamp: { type: "string" format: "date-time" description: "Date time format in UTC, includes miliseconds YYYY-MM-DDThh:mm:ss.vZ" } } required: ["Authorization", "requestId", "resp", "timestamp"] additionalProperties: false } output: { type: "object" additionalProperties: true } }