Connecting the Payment Form Without Using the API
You can connect the payment form without API integration by following these simple steps.
You can also see an example of integration in this repository
1. Enable Your Store's Payment Link
Log in to your project account and navigate to Projects, Edit, Advanced settings.
Find the "Form without API" switch at the very bottom.

There you will find the link to the payment form without API, which contains your store's UUID (Unique Identifier).
2. Modify the Payment Link
Use the following format to generate the payment link:
http(s)://{your-domain-or-subdomain}/pay/store/{store-uuid}/{client-id}
Where:
{your-domain-or-subdomain}— your registered domain or subdomain.{store-uuid}— your store's UUID (specified in the store link).{client-id}— a unique client identifier that you assign when generating the link. It is needed to track the payment and link it to the correct client wallet.
⚠️ Important:
client-idmust be unique for each client session to ensure correct tracking and identification.
Example:
https://demo.dv.net/pay/store/0cbffe2b-d2a5-433d-94f5-77ce93a7c0eb/<your client ID>
After generating the link, you can either redirect the client to it or embed it into a button on your website.