action credas_get_report_view_by_reference_id { label: "Retrieves secure links to registration details pages searching by the Reference Id." description: "It may return none, one or many (up to 20) matching results. \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-referenceid" encoding: json input: { type: "object" properties: { apikey: { type: "string" } canChangeStatus: { type: "boolean" } canVerify: { type: "boolean" } referenceId: { type: "string" } user: { type: "string" } } required: ["apikey", "referenceId"] 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" } } } } } } }