This endpoint is for merchant to make charge an API payment via SCB (Only customer who’s register with merchant and status success).
Sandbox URL: https://api-sandbox.partners.scb/partners/sandbox/v1/payment/direct/ddpay
Note: This API merchant need to encrypt and decrypt a transaction data by public key.
Name | Type | Required | Description |
---|---|---|---|
content-type | String | Required | Content type of request payload Value: - application/json |
authorization | String | Required | OAuth token obtained after the user has provided consent and the authorized partner calls the /v1/oauth/token endpoint to retrieve this token |
resourceOwnerId | String | Required | The system identifier, use the value of apikey |
requestUId | String | Required | A unique identifier the client can generate to track the current request call |
accept-language | String | Optional | The language of the content in the request payload Values: - EN (Default) - TH |
Name | Type | Required | Description |
---|---|---|---|
merchantId | String (10) | Required | Merchant ID Ex. 20200412000001 |
subAccountId | String (12) | Required | Merchant Sub-account Ex. 8943289551 |
encryptedValue | String | Required | Payment info encrypted please see more detail below. Example Code for Encryption and Decryption |
Payment Information (Format: Json) encrypted please refer to this following properties:
Name | Type | Required | Description |
---|---|---|---|
refNumber | String (20) | Required | Merchant reference |
refDateTime | String (14) | Required | Merchant reference date and time per transaction Format: yyyyMMddHHmmss |
amount | Number (12,2) | Required | Transaction amount Ex. 100.00 |
currency | String (3) | Required | Transaction Currency Ex. THB |
accountNumber | String (10) | Required | Customer account number |
customerRef | String (20) | Optional | Customer reference |
curl -X POST \
https://api-sandbox.partners.scb/partners/sandbox/v1/payment/direct/ddpay \
-H 'authorization: Bearer <Your Access Token>' \
-H 'requestUID: 85230887-e643-4fa4-84b2-4e56709c4ac4' \
-H 'resourceOwnerID: <Your API Key>' \
-H 'content-type: application/json' \
-H 'accept-language: EN' \
-d '{
"merchantId": "2020000001",
"subAccountId": "1293340504",
"encryptedValue": "<Encrypt Data>"
}'
Name | Parameter | Type | Description |
---|---|---|---|
status | |||
code | Integer | Partner API response code | |
description | String | Partner API response description | |
data | |||
merchantId | String | Merchant ID | |
subAccountId | String | Merchant Sub-account | |
encryptedValue | String | Payment info encrypted please see more detail below. Example Code for Encryption and Decryption |
|
validationMessages | Array[Object] | Validation Messages please see more detail below. |
Name | Type | Description |
---|---|---|
refNumber | String | Merchant reference number |
refDateTime | String | Merchant reference date and time per transaction Format: yyyyMMddHHmmss |
amount | Number | Transaction amount Ex. 100.00 |
currency | String | Transaction currency Ex. THB |
customerRef | String | Customer reference |
txnNumber | String | Unique transaction number from SCB |
txnDateTime | String | Transaction date and time from SCB |
statusCode | String | Transaction status code see link for payment status |
statusDesc | String | Transaction status description |
responseCode | String | Transaction rejected respond code (transaction rejected only) |
Name | Type | Description |
---|---|---|
message | String | Error message |
description | String | Description of message |
{
"status":{
"code":1000,
"description":"Success"
},
"data":{
"merchantId":"2020000001",
"subAccountId":"1293340504",
"encryptedValue":"<Encrypt Data>",
"validationMessages":[]
}
}
See list of Generic Response Codes