Getting Started
API Endpoints
- Server To Server
- Tokenization
- Subscriptions
- Wallet
- Hosted Payment Page
Error and Response
Webhook
Create Subscription API
The Create Subscription API allows merchants to set up recurring billing for customers, offering flexible plans with various billing intervals, trials, and discounts.
curl --request POST \
--url https://api-dev.paymentoptions.com/api/v1/api/v1/server-to-server-interface/subscription/payment \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"amount": "1000",
"currency": "JPY",
"card": {
"cvc": "112",
"expiry_month": "12",
"expiry_year": "24",
"name": "John Doe",
"number": "4000000000001091"
},
"payment_method": {
"type": "scheme",
"store_payment_method": false
},
"merchant_txn_ref": "qwe",
"customer_ip": "127.0.0.1",
"merchant_id": "< Merchant ID >",
"return_url": {
"webhook_url": "< Webhook url >",
"success_url": "http://www.successurl.com/",
"decline_url": "http://www.declineurl.com/"
},
"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": "billing@testemail.com",
"phone_number": "8112345678",
"address1": "1-2-3 Shinjuku",
"city": "Shinjuku-ku",
"state": "Tokyo",
"postal_code": "1600022"
},
"time_zone": "Asia/Kuala_Lumpur",
"subscription": {
"plan_name": "Three weeks plan",
"plan_desc": "Billed every two days",
"cycle_type": "DAYS",
"subscription_end_type": "CYCLE",
"cycle_interval": 2,
"max_cycle_count": 10,
"has_trial_period": false,
"trial_period_duration_type": "DAYS",
"trial_period_duration": 14,
"has_discount": true,
"discount_percentage": 10,
"discount_duration": 2
}
}'
{
"success": true,
"status_code": 201,
"is_live": false,
"transaction_type": "CAPTURE",
"gateway_response": {
"version": "1",
"type": "INFO",
"message": "Payment Successful.",
"code": "INFO0000"
},
"merchant_details": {
"legal_name": "Beck's Coffee Shop Pvt. Ltd.",
"mid": "JP00000472",
"merchant_txn_ref": "qwe",
"billing_details": {
"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": "billing@testemail.com",
"phone_number": "8112345678",
"address1": "1-2-3 Shinjuku",
"city": "Shinjuku-ku",
"state": "Tokyo",
"postal_code": "1600022"
}
},
"device_details": {
"visited_ip": "127.0.0.1",
"customer_ip": "127.0.0.1"
}
},
"payment_details": {
"amount": 900,
"response_code": 0,
"auth_code": "175438",
"currency": "JPY",
"payment_method": "VISA_DEBIT-SSL",
"scheme": "VISA",
"card": {
"name": "John Doe",
"number": "4000000000001091",
"exp_month": "12",
"exp_year": "24"
},
"additional_data": {
"payment_data_source": {
"type": "card"
}
}
},
"transaction_details": {
"id": "359f39bd-673a-47b3-b9ec-cbd6cd313b8e",
"ref": 74860,
"timestamp": "2024-11-26T01:31:29.000Z",
"merchant_txn_ref": "qwe",
"stored_payment_method_id": null
},
"risk-details": {
"risk_score": null
},
"subscription_details": {
"id": "664dc930-88bd-4696-8807-5e0f1fedba0b",
"type": "CYCLE",
"max_cycle_count": 10,
"status": "ACTIVE",
"completed_payment_cycle": 1,
"next_payment_date": "2024-11-28T01:31:29.154Z",
"next_payment_cycle": 2,
"subscription_plan_details": {
"name": "Three weeks plan",
"desc": "Billed every two days",
"billing_cycle_type": "DAYS",
"billing_cycle_interval": 2,
"amount": 1000,
"ccy": "JPY",
"trial_period_duration": "",
"trial_period_duration_type": "NONE",
"plan_discount_percentage": 10,
"plan_discount_duration": 2
}
}
}
Request Example of Subscription Creation
"subscription": {
"plan_name": "<string>",
"plan_desc": "<string>",
"cycle_type": "<DAYS/MONTHS>",
"subscription_end_type": "CYCLE",
"cycle_interval": <int>,
"max_cycle_count": <int>,
"has_trial_period": <boolean>,
"trial_period_duration_type": "DAYS",
"trial_period_duration": <int>,
"has_discount": <boolean>,
"discount_percentage": <int>,
"discount_duration": <int>
}
Key Points
Subscription Creation
- This API enables the setup of subscription plans, allowing for automatic recurring payments. It supports various billing cycles and flexible configurations such as discounts and trial periods.
Subscription Configuration
-
Merchants can define custom plans, including: Plan Name and Description.
-
Cycle Type: Billing can be based on days, weeks, months, etc.
-
Cycle Interval: Defines the frequency of billing (e.g., every 2 days, every month).
-
Max Cycle Count: Sets the maximum number of billing cycles.
-
Trial Period: Option to offer a trial period before the subscription starts.
-
Discounts: Ability to apply discounts for a set number of billing cycles.
Flow diagram
Api Parameters
Authorizations
API Key for Authorization. Format: 'Basic YOUR_API_KEY_HERE'
API Key specific to x-api-key.
Body
The transaction amount.
15
"1000"
ISO currency code for the transaction (e.g., JPY).
3
"JPY"
Details of the card used for the payment.
Card security code.
4
"112"
Card expiry month.
2
"12"
Card expiry year.
2
"24"
Name of the cardholder.
255
"John Doe"
Card number.
16
"4000000000001091"
Unique identifier of the merchant.
128
"< Merchant ID >"
Details of the cardholder's billing address.
Billing country code (ISO 3166-1 alpha-2).
2
"JP"
Billing email address.
45
"billing@testemail.com"
Billing phone number.
20
"8112345678"
Billing address line.
199
"1-2-3 Shinjuku"
Billing city.
65
"Shinjuku-ku"
Billing postal code.
45
"1600022"
Billing state (optional).
65
"Tokyo"
Details of the subscription being processed.
Subscription plan name.
100
"Three weeks plan"
Subscription plan description.
200
"Billed every two days"
Type of subscription cycle (e.g., DAYS, MONTHS).
"DAYS"
Subscription end type (e.g., CYCLE).
"CYCLE"
Interval between billing cycles.
2
Maximum number of billing cycles.
10
Indicates if the subscription includes a trial period.
false
Indicates if the subscription includes a discount.
true
Discount percentage applied to the subscription.
10
Duration of the discount in billing cycles.
2
Type of trial period duration (e.g., DAYS, MONTHS).
"DAYS"
Duration of the trial period.
14
Unique merchant transaction reference ID.
45
"qwe"
IP address of the customer initiating the transaction.
45
"127.0.0.1"
A JSON object containing the return URLs. (This field is mandatory for 3DS transactions.)
URL for webhook notifications.
255
"< Webhook url >"
URL to redirect the user after a successful transaction.
255
"http://www.successurl.com/"
URL to redirect the user after a declined transaction.
255
"http://www.declineurl.com/"
Details of the cardholder's shipping address.
Shipping country code (ISO 3166-1 alpha-2).
2
"JP"
Shipping email address.
45
"billing@testemail.com"
Shipping phone number.
20
"8112345678"
Shipping address line.
199
"1-2-3 Shinjuku"
Shipping city.
65
"Shinjuku-ku"
Shipping state (optional).
65
"Tokyo"
Shipping postal code.
45
"1600022"
Time zone of the transaction.
128
"Asia/Kuala_Lumpur"
Response
Indicates whether the transaction was successful.
true
HTTP status code of the transaction.
201
Indicates whether the transaction was live or a test.
false
Type of transaction performed (e.g., CAPTURE).
"CAPTURE"
Response from the payment gateway.
Version of the gateway response.
"1"
Type of the gateway response.
"INFO"
Message from the gateway response.
"Payment Successful."
Response code from the gateway.
"INFO0000"
Details about the merchant.
Legal name of the merchant.
"Beck's Coffee Shop Pvt. Ltd."
Merchant ID.
"JP00000472"
Merchant's transaction reference ID.
"qwe"
Details of the billing and shipping addresses.
Billing address of the merchant.
Country code.
"JP"
Billing email address.
"billing@testemail.com"
Billing phone number.
"8112345678"
Billing address line.
"1-2-3 Shinjuku"
Billing city.
"Shinjuku-ku"
Billing state.
"Tokyo"
Billing postal code.
"1600022"
Shipping address of the merchant.
Country code.
"JP"
Shipping email address.
"billing@testemail.com"
Shipping phone number.
"8112345678"
Shipping address line.
"1-2-3 Shinjuku"
Shipping city.
"Shinjuku-ku"
Shipping state.
"Tokyo"
Shipping postal code.
"1600022"
Details of the payment transaction.
Amount of the transaction.
900
Response code from the acquirer.
0
Authorization code from the acquirer.
"175438"
Currency of the transaction.
"JPY"
Payment method used.
"VISA_DEBIT-SSL"
Card scheme used.
"VISA"
Details of the card used.
Details of the transaction.
Transaction ID.
"359f39bd-673a-47b3-b9ec-cbd6cd313b8e"
Transaction reference number.
74860
Timestamp of the transaction.
"2024-11-26T01:31:29.000Z"
Merchant's transaction reference ID.
"qwe"
Stored payment method ID (if applicable).
null
Risk assessment details.
Risk score for the transaction.
null
Details of the subscription.
Subscription ID.
"664dc930-88bd-4696-8807-5e0f1fedba0b"
Type of subscription (e.g., CYCLE).
"CYCLE"
Maximum number of billing cycles.
10
Status of the subscription.
"ACTIVE"
Number of completed payment cycles.
1
Date of the next payment.
"2024-11-28T01:31:29.154Z"
The next payment cycle number.
2
Details of the subscription plan.
Name of the subscription plan.
"Three weeks plan"
Description of the subscription plan.
"Billed every two days"
Type of billing cycle (e.g., DAYS, MONTHS).
"DAYS"
Interval between billing cycles.
2
Amount for each billing cycle.
1000
Currency code for the subscription.
"JPY"
Duration of the trial period.
""
Type of the trial period duration.
"NONE"
Discount percentage applied to the subscription plan.
10
Duration of the discount in billing cycles.
2
curl --request POST \
--url https://api-dev.paymentoptions.com/api/v1/api/v1/server-to-server-interface/subscription/payment \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"amount": "1000",
"currency": "JPY",
"card": {
"cvc": "112",
"expiry_month": "12",
"expiry_year": "24",
"name": "John Doe",
"number": "4000000000001091"
},
"payment_method": {
"type": "scheme",
"store_payment_method": false
},
"merchant_txn_ref": "qwe",
"customer_ip": "127.0.0.1",
"merchant_id": "< Merchant ID >",
"return_url": {
"webhook_url": "< Webhook url >",
"success_url": "http://www.successurl.com/",
"decline_url": "http://www.declineurl.com/"
},
"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": "billing@testemail.com",
"phone_number": "8112345678",
"address1": "1-2-3 Shinjuku",
"city": "Shinjuku-ku",
"state": "Tokyo",
"postal_code": "1600022"
},
"time_zone": "Asia/Kuala_Lumpur",
"subscription": {
"plan_name": "Three weeks plan",
"plan_desc": "Billed every two days",
"cycle_type": "DAYS",
"subscription_end_type": "CYCLE",
"cycle_interval": 2,
"max_cycle_count": 10,
"has_trial_period": false,
"trial_period_duration_type": "DAYS",
"trial_period_duration": 14,
"has_discount": true,
"discount_percentage": 10,
"discount_duration": 2
}
}'
{
"success": true,
"status_code": 201,
"is_live": false,
"transaction_type": "CAPTURE",
"gateway_response": {
"version": "1",
"type": "INFO",
"message": "Payment Successful.",
"code": "INFO0000"
},
"merchant_details": {
"legal_name": "Beck's Coffee Shop Pvt. Ltd.",
"mid": "JP00000472",
"merchant_txn_ref": "qwe",
"billing_details": {
"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": "billing@testemail.com",
"phone_number": "8112345678",
"address1": "1-2-3 Shinjuku",
"city": "Shinjuku-ku",
"state": "Tokyo",
"postal_code": "1600022"
}
},
"device_details": {
"visited_ip": "127.0.0.1",
"customer_ip": "127.0.0.1"
}
},
"payment_details": {
"amount": 900,
"response_code": 0,
"auth_code": "175438",
"currency": "JPY",
"payment_method": "VISA_DEBIT-SSL",
"scheme": "VISA",
"card": {
"name": "John Doe",
"number": "4000000000001091",
"exp_month": "12",
"exp_year": "24"
},
"additional_data": {
"payment_data_source": {
"type": "card"
}
}
},
"transaction_details": {
"id": "359f39bd-673a-47b3-b9ec-cbd6cd313b8e",
"ref": 74860,
"timestamp": "2024-11-26T01:31:29.000Z",
"merchant_txn_ref": "qwe",
"stored_payment_method_id": null
},
"risk-details": {
"risk_score": null
},
"subscription_details": {
"id": "664dc930-88bd-4696-8807-5e0f1fedba0b",
"type": "CYCLE",
"max_cycle_count": 10,
"status": "ACTIVE",
"completed_payment_cycle": 1,
"next_payment_date": "2024-11-28T01:31:29.154Z",
"next_payment_cycle": 2,
"subscription_plan_details": {
"name": "Three weeks plan",
"desc": "Billed every two days",
"billing_cycle_type": "DAYS",
"billing_cycle_interval": 2,
"amount": 1000,
"ccy": "JPY",
"trial_period_duration": "",
"trial_period_duration_type": "NONE",
"plan_discount_percentage": 10,
"plan_discount_duration": 2
}
}
}