This integration is usually chosen by those clients who want to keep the user from navigating to third-party sites. It has the best conversion rate with excellent customization of the site's UX/UI and deposit payment process, but requires more control over the payment systems.
JSON responses returned by our API may be extended over time. To ensure stable and future-proof integrations, follow the recommendations below:
Recommendations for Handling JSON Responses (Ensuring Backward Compatibility)
Client-side implementation guidelines:
Ignore unknown fields. When handling API responses, process only the fields your integration explicitly depends on. Any additional or unrecognized fields must be ignored, not treated as errors.
Avoid strict field validation. Do not implement logic that relies on the exact number or set of fields returned. Instead, access only the fields by name that are relevant to your business logic.
Configure your JSON parsers to allow extra fields.
Do not compare full JSON payloads as raw strings. Logic based on raw string comparison is fragile and may break when new fields are added, even if the response remains semantically valid.