action id4i_get_send_info { label: "Show transfer preparation information" provider: id4i method: GET path: "/api/v1/transfers/{id4n}/sendInfo" encoding: json input: { type: "object" properties: { id4n: { type: "string" } } required: ["id4n"] additionalProperties: false } output: { type: "object" required: ["keepOwnership", "openForClaims", "recipientOrganizationIds"] properties: { holderOrganizationId: { type: "string" description: "The current holder of the object" } keepOwnership: { type: "boolean" description: "Keep the public ownership while transferring the object" } openForClaims: { type: "boolean" description: "Allow anyone who knows (or can scan) the ID4N to claim ownership of this object" } ownerOrganizationId: { type: "string" description: "The current publicly visible owner of the object" } recipientOrganizationIds: { type: "array" description: "Allow only these organizations to obtain this object" items: { type: "string" } } } } }