action credas_get_web_verifications_by_reference_id { label: "Retrieves secure links to web verification 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/web-verifications/by-referenceid" encoding: json input: { type: "object" properties: { apikey: { type: "string" } referenceId: { type: "string" } returnUrls: { type: "object" properties: { returnUrl: { type: "string" } } } } required: ["apikey", "referenceId"] additionalProperties: false } output: { type: "object" properties: { results: { type: "array" items: { type: "object" properties: { journeyUrl: { type: "object" properties: { url: { type: "string" } validUntil: { type: "string" format: "date-time" } } } } } } } } }