@adyen/kyc-components
Version:
This guide assumes that you have already an account with Adyen. A legalEntity needs to be created, and you need to have a `legalEntityId` to instatiate a Component.
7 lines (6 loc) • 358 B
TypeScript
import type { PciQuestionnaireResponse } from './pci.types';
/**
* Returns the details of a questionnaire, notably the content that
* is used to generate the pdf in the frontend (to base64 blob, appending .pdf)
*/
export declare const getPciQuestionnaire: (legalEntityId: string, baseUrl: string, documentId: string) => Promise<PciQuestionnaireResponse>;