Tamara Payment Gateway
Installation Method
npx @akinon/projectzero@latest --pluginsUsage
src/app/[commerce]/[locale]/[currency]/payment-gateway/tamara/page.tsximport { TamaraPaymentGateway } from '@akinon/pz-tamara-extension';
const TamaraGateway = async ({
searchParams: { sessionId },
params: { currency, locale }
}: {
searchParams: Record<string, string>;
params: { currency: string; locale: string };
}) => {
return (
<TamaraPaymentGateway
sessionId={sessionId}
currency={currency}
locale={locale}
extensionUrl={process.env.TAMARA_EXTENSION_URL}
hashKey={process.env.TAMARA_HASH_KEY}
/>
);
};
export default TamaraGateway;Props
Prop
Type
Required
Description
Customizing the Tamara Component
Renderer API
API Routes
Check Availability API
Availability Check (Redux Hook)
Response Fields
Configuration
Last updated
Was this helpful?

