Merchant Account API Documentation – Cybersource (Barclays PLC)
This API allows merchants to process transactions using Cybersource via Barclays PLC.
Base URL:
🔗 Test Environment: https://ebctest.cybersource.com/
📌 Authentication:
- API authentication is handled via HTTP Signature or JWT (JSON Web Token).
- You must obtain an API Key & Shared Secret from Cybersource.
- Send credentials in the request header.
1. Authentication
1.1 HTTP Signature Authentication
To authenticate API requests, include the following headers:
Headers:
Content-Type: application/json
v-c-merchant-id: {YOUR_MERCHANT_ID}
Date: {CURRENT_DATE}
Host: ebctest.cybersource.com
Digest: SHA-256={GENERATED_DIGEST}
Signature: keyid="{YOUR_KEY_ID}", algorithm="rsa-sha256", headers="host date digest", signature="{GENERATED_SIGNATURE}"
2. API Endpoints
2.1 Create Payment Request
🔹 Endpoint:
POST /pts/v2/payments
🔹 Request Example:
{
"clientReferenceInformation": {
"code": "ORDER12345"
},
"processingInformation": {
"capture": true
},
"paymentInformation": {
"card": {
"number": "4111111111111111",
"expirationMonth": "12",
"expirationYear": "2026",
"securityCode": "123"
}
},
"orderInformation": {
"amountDetails": {
"totalAmount": "100.00",
"currency": "GBP"
},
"billTo": {
"firstName": "John",
"lastName": "Doe",
"address1": "123 Street",
"locality": "London",
"administrativeArea": "ENG",
"postalCode": "WC1X 9AA",
"country": "GB",
"email": "[email protected]",
"phoneNumber": "447911123456"
}
}
}
🔹 Response Example:
{
"id": "6165986539356812304004",
"status": "AUTHORIZED",
"clientReferenceInformation": {
"code": "ORDER12345"
},
"orderInformation": {
"amountDetails": {
"totalAmount": "100.00",
"currency": "GBP"
}
},
"paymentInformation": {
"card": {
"last4": "1111",
"expirationMonth": "12",
"expirationYear": "2026"
}
}
}
2.2 Capture Payment
🔹 Endpoint:
POST /pts/v2/payments/{payment_id}/captures
🔹 Request Example:
{
"clientReferenceInformation": {
"code": "CAPTURE_12345"
},
"orderInformation": {
"amountDetails": {
"totalAmount": "100.00",
"currency": "GBP"
}
}
}
🔹 Response Example:
{
"id": "6165986539356812304005",
"status": "PENDING_SETTLEMENT"
}
2.3 Refund Payment
🔹 Endpoint:
POST /pts/v2/payments/{payment_id}/refunds
🔹 Request Example:
{
"clientReferenceInformation": {
"code": "REFUND_12345"
},
"orderInformation": {
"amountDetails": {
"totalAmount": "100.00",
"currency": "GBP"
}
}
}
🔹 Response Example:
{
"id": "6165986539356812304006",
"status": "PENDING_CREDIT"
}
3. Error Handling
Cybersource returns standard HTTP status codes along with an error response in JSON format.
HTTP Status | Meaning | Description |
---|---|---|
200 | Success | Request processed successfully |
201 | Created | Resource successfully created |
400 | Bad Request | Invalid input parameters |
401 | Unauthorized | Invalid authentication credentials |
403 | Forbidden | Merchant account not allowed to perform this operation |
404 | Not Found | Resource does not exist |
500 | Internal Server Error | Cybersource system error |
🔹 Error Response Example:
{
"responseStatus": {
"status": "DECLINED",
"reasonCode": "203",
"message": "General decline by issuer"
}
}
4. Testing & Sandbox Environment
Use the following test card numbers to simulate transactions:
Card Type | Number | Expiry Date | CVV |
---|---|---|---|
Visa | 4111111111111111 | 12/26 | 123 |
MasterCard | 5555555555554444 | 12/26 | 123 |
Amex | 371449635398431 | 12/26 | 1234 |
Test Environment Base URL: https://ebctest.cybersource.com/
5. Webhooks
Merchants can receive real-time notifications on payment events. Configure webhook URLs in your Cybersource merchant dashboard.
🔹 Webhook Event Types:
- payment.authorized – Payment successfully authorized
- payment.refunded – Refund processed
- payment.failed – Payment failed
🔹 Webhook Payload Example:
{
"eventType": "payment.authorized",
"paymentId": "6165986539356812304004",
"orderReference": "ORDER12345",
"status": "AUTHORIZED"
}
6. Support & Contact
For technical support, contact:
📧 Email: [email protected]
📌 Notes:
- This API is designed for Barclays merchants using Cybersource.
- Ensure API keys are securely stored and rotated periodically.
- Use the test environment before deploying to production.