Merchant Portal Guide
Follow the current Portal workflow for business onboarding, treasury accounts, team invitations, shared cards, stored-value cards, top-up approvals, and system settings.
Open the Portal guideFrom creating cardholders and submitting card applications to top-ups, shared-card withdrawals, transaction queries, and Webhook reconciliation. Follow the real business sequence and look up every VCC endpoint in the API Reference.
curl --request POST \
--url https://sandbox.easycards.io/payment/vcc/card-applications \
--header 'Authorization: Bearer $API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"request_id": "req_20260806_001",
"customer_id": "cus_example",
"product_code": "1103"
}'
# Response: asynchronous request accepted
{
"code": "SUCCESS",
"data": {
"application_id": "app_example",
"status": "PENDING"
}
}
Read the complete workflow, look up an endpoint directly, or download the contract for your existing tools.
Follow the current Portal workflow for business onboarding, treasury accounts, team invitations, shared cards, stored-value cards, top-up approvals, and system settings.
Open the Portal guideFor invited cardholders: activate an account, use TOTP, complete personal KYC, view cards, request top-ups, review transactions, and manage profile settings.
Open the H5 guideCovers authentication, products, cardholders, KYC, card issuance, sensitive card data, top-ups, shared-card withdrawals, transactions, and Webhooks.
Integrate step by stepAn OpenAPI-generated reference for VCC and supporting account endpoints, with search, field documentation, and Sandbox request examples.
View all endpointsUse sequence diagrams to understand VCC product discovery, cardholders, card issuance, KYC, Webhooks, and query-based reconciliation.
View flow diagramsStart in the Sandbox to validate authentication, permissions, and account scope before implementing the complete VCC flow.
Create a least-privilege Payment API Key and store it securely.
Call GET /payment/account to confirm authentication, allowlisting, and account scope.
Call GET /payment/vcc/products; never hard-code products or fees.
Store resource IDs and use Webhooks plus query endpoints for idempotent processing and reconciliation.
Every file is built from the same API contract, reducing drift between the guide, testing tools, and the live API.
OpenAPI 3.0 JSON for VCC and supporting account queries, suitable for code generation, testing, and documentation tools.
Download specificationVCC and supporting account-query collection with authentication, parameters, and request body examples.
Download collectionSandbox Base URL and secure Token variable template.
Download environmentProduction environment variable template; verify permissions and allowlisting before launch.
Download environment