cURL
Python
JavaScript
PHP
Go
Java
curl --request POST \
--url https://api-dev.paymentoptions.com/api/v1/api/v1/server-to-server-interface/hpp/generate/link \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"return_url": {
"webhook_url": "< Webhook url >",
"success_url": "http://www.successurl.com/",
"decline_url": "http://www.declineurl.com/",
"cancel_url": "http://cancelurl.com/"
},
"amount": 1000,
"currency": "JPY",
"merchant_id": "< Merchant ID >",
"merchant_email": "merchant@testemail.com",
"merchant_txn_ref": "2003089893366DTEST",
"payment_method": {
"type": "scheme",
"store_payment_method": true
},
"billing_address": {
"country": "JP",
"email": "billing@testemail.com",
"phone_number": "8112345678",
"address1": "1-2-3 Shinjuku",
"city": "Shinjuku-ku",
"state": "Tokyo",
"postal_code": "1600022"
},
"shipping_address": {
"country": "JP",
"email": "shipping@testemail.com",
"phone_number": "8112345678",
"address1": "1-2-3 Shinjuku",
"city": "Shinjuku-ku",
"state": "Tokyo",
"postal_code": "1600022"
}
}'
{
"id" : "f49173ce-4916-445c-a831-3c1468acf14e" ,
"url" : "https://checkout-dev.paymentoptions.com/jp/HostedPaymentPage/hKJsdByR" ,
"amount" : 1000 ,
"currency" : "JPY" ,
"merchant_txn_ref" : "2003089893366DTEST" ,
"merchant_id" : "< Merchant ID >" ,
"merchant_email" : "merchant@testemail.com" ,
"return_url" : {
"webhook_url" : "< Webhook url >" ,
"success_url" : "http://www.successurl.com/" ,
"decline_url" : "http://www.declineurl.com/" ,
"cancel_url" : "http://cancelurl.com/"
} ,
"billing_address" : {
"city" : "Shinjuku-ku" ,
"email" : "billing@testemail.com" ,
"phone_number" : "8112345678" ,
"state" : "Tokyo" ,
"country" : "JP" ,
"address1" : "1-2-3 Shinjuku" ,
"postal_code" : "1600022"
} ,
"shipping_address" : {
"city" : "Shinjuku-ku" ,
"email" : "shipping@testemail.com" ,
"phone_number" : "8112345678" ,
"state" : "Tokyo" ,
"country" : "JP" ,
"address1" : "1-2-3 Shinjuku" ,
"postal_code" : "1600022"
}
}
Key Points
If the payload is pre-filled with data (e.g., amount, currency, customer details, return_url, payment method), these details will be reflected on the HPP, providing a streamlined user experience.
If the payload lacks certain data, the customer will need to manually enter the missing information on the HPP.
Ensure that the necessary headers and authentication details are included to successfully generate the HPP link.
Flow diagram
Notes
store_payment_method
: Must be set to true
in the payload to store the card token for future use.
Setting store_payment_method
to true
ensures that the card token is stored for future transactions without needing to re-enter card details.
The stored_payment_method_id
can be used in the Use of Card Token API for future transactions without needing to re-enter card details.
Api Parameters API Key for Authorization. Format: 'Basic YOUR_API_KEY_HERE'
API Key specific to x-api-key.
The request payload to generate an HPP link.
A JSON object containing the Return URLs.
The webhook URL for asynchronous notifications.
Maximum length: 255
The URL to redirect the user to after a successful payment.
Maximum length: 255
Example: "http://www.successurl.com/"
The URL to redirect the user to after a failed payment.
Maximum length: 255
Example: "http://www.declineurl.com/"
The URL to redirect the user to if the payment is canceled.
Maximum length: 255
The processing currency (e.g., JPY).
Maximum length: 3
The merchant ID (DASMID).
Maximum length: 128
The email address of the Merchant.
Maximum length: 45
A JSON object containing Payment Method.
The payment method type (e.g., 'scheme').
Maximum length: 128
payment_method. store_payment_method
True to generate a token, or False not to generate one.
A JSON object containing the billing address of the cardholder.
The cardholder’s billing country code.
Maximum length: 2
The cardholder’s billing email address.
Maximum length: 45
billing_address. phone_number
The cardholder’s billing phone number.
Maximum length: 15
The cardholder’s billing address line.
Maximum length: 199
The cardholder’s billing city.
Maximum length: 65
The cardholder’s billing state.
Maximum length: 65
billing_address. postal_code
The cardholder’s billing postal code.
Maximum length: 45
The amount of the transaction.
The merchant transaction reference ID.
Maximum length: 45
A JSON object containing the shipping address of the cardholder.
The cardholder’s shipping country code.
Maximum length: 2
The cardholder’s shipping email address.
Maximum length: 45
shipping_address. phone_number
The cardholder’s shipping phone number.
Maximum length: 20
shipping_address. address1
The cardholder’s shipping address line.
Maximum length: 199
The cardholder’s shipping city.
Maximum length: 65
The cardholder’s shipping state.
Maximum length: 65
shipping_address. postal_code
The cardholder’s shipping postal code.
Maximum length: 45
HPP link generated successfully
The transaction reference ID.
Example: "f49173ce-4916-445c-a831-3c1468acf14e"
The URL Link of the hosted payment page link generated.
Example: "https://checkout-dev.paymentoptions.com/jp/HostedPaymentPage/hKJsdByR"
The amount of the transaction.
The processing currency of the transaction.
The merchant transaction reference ID.
The DAS merchant ID of the transaction performed.
The email address of the Merchant.
A JSON object containing the Return URL.
The webhook URL for asynchronous notifications.
The URL to redirect the user to after a successful payment.
Example: "http://www.successurl.com/"
The URL to redirect the user to after a failed payment.
Example: "http://www.declineurl.com/"
The URL to redirect the user to if the payment is canceled.
A JSON object containing the billing address of the cardholder.
The cardholder’s billing city.
The cardholder’s billing email address.
billing_address. phone_number
The cardholder’s billing phone number.
The cardholder’s billing state.
The cardholder’s billing country code.
The cardholder’s billing address line.
billing_address. postal_code
The cardholder’s billing postal code.
A JSON object containing the shipping address of the cardholder.
The cardholder’s shipping city.
The cardholder’s shipping email address.
shipping_address. phone_number
The cardholder’s shipping phone number.
The cardholder’s shipping state.
The cardholder’s shipping country code.
shipping_address. address1
The cardholder’s shipping address line.
shipping_address. postal_code
The cardholder’s shipping postal code.