action rebilly_post_kyc_document_rejection { label: "Reject a KYC document" description: "Marks that status of the document as `rejected`. Updates the review time and reviewer information. Intended to be used for manual overrides.\n" provider: rebilly method: POST path: "/kyc-documents/{id}/rejection" encoding: json input: { type: "object" properties: { message: { type: "string" description: "The rejection message." } type: { type: "string" enum: ["document-unreadable", "document-expired", "document-not-matching", "underage-person", "other"] } } } output: { type: "object" } }