action ndhm_post_v0_5_consents_fetch { label: "Get consent artefact" description: "This API is called when a HIU makes a request to get a consent artefact. For response please refer to the Gateway ***/v0.5/consents/on-fetch***" provider: ndhm method: POST path: "/v0.5/consents/fetch" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } consentId: { type: "string" } requestId: { type: "string" format: "uuid" description: "a nonce, unique for each HTTP request" } timestamp: { type: "string" format: "date-time" description: "Date time format in UTC, includes miliseconds YYYY-MM-DDThh:mm:ss.vZ" } } required: ["Authorization", "consentId", "requestId", "timestamp"] additionalProperties: false } output: { type: "object" additionalProperties: true } }