action credas_get_report_view_by_registration_id { label: "Retrieves secure link to registration details page searching by the Registration Id." description: "It may return none or one matching result. \nEach result contains a secure url; UTC date/time of when the link expires; name details of a person associated with the registration." provider: credas method: POST path: "/api/report-view/by-registrationid" encoding: json input: { type: "object" properties: { apikey: { type: "string" } canChangeStatus: { type: "boolean" } canVerify: { type: "boolean" } registrationId: { type: "string" format: "uuid" } user: { type: "string" } } required: ["apikey", "registrationId"] additionalProperties: false } output: { type: "object" properties: { results: { type: "array" items: { type: "object" properties: { forename: { type: "string" } surname: { type: "string" } url: { type: "string" } validUntil: { type: "string" format: "date-time" } } } } } } }