Swissbilling
Payment Process | Integration | ||
---|---|---|---|
Authorization | ✔️ | Payment Page | ✔️ |
Deferred Settlement | ✔️ | Split Mode | ❌ |
Refund | ✔️ | Mobile SDK | ✔️ |
Cancel | ✔️ | ||
Alias | ❌ |
Description
SWISSBILLING enables you to offer your clients payment of their online purchases on invoice in one or several installments. SWISSBILLING guarantees the payment for the order within the period agreed.
Request and response parameter reference
For a more detailed description of the request and response parameters for Swissbilling
please check the API Reference
Payment Method provider website 🔗
Web payment flow
Server to Server API calls
After a transactionId or alias was received by completing the payment flow on the web, the following server to server API calls can be used to do other actions.
Authorization
Request
curl -v -X POST https://api.sandbox.datatrans.com/upp/jsp/XML_authorize.jsp \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d @- << EOF
<?xml version="1.0" encoding="UTF-8" ?>
<authorizationService version="6">
<body merchantId="1000011011">
<transaction refno="749532">
<request>
<testOnly>yes</testOnly>
<amount>20200</amount>
<pmethod>SWB</pmethod>
<language>DE</language>
<currency>CHF</currency>
<taxAmount>1460</taxAmount>
<sign>30916165706580013</sign>
<uppCustomerDetails>
<uppCustomerEmail>[email protected]</uppCustomerEmail>
<uppShippingDetails>no</uppShippingDetails>
<uppCustomerFirstName>Good</uppCustomerFirstName>
<uppCustomerCountry>CH</uppCustomerCountry>
<uppCustomerCity>Zurich</uppCustomerCity>
<uppCustomerZipCode>8001</uppCustomerZipCode>
<uppCustomerStreet>Limmatquai 55</uppCustomerStreet>
<uppCustomerPhone>+41584333034</uppCustomerPhone>
<uppCustomerLastName>Customer</uppCustomerLastName>
<uppCustomerBirthDate>1969-09-19</uppCustomerBirthDate>
<uppCustomerSubscription>test</uppCustomerSubscription>
</uppCustomerDetails>
<order>
<shippingAmount>250</shippingAmount>
<discountAmount>250</discountAmount>
<article>
<quantity>1</quantity>
<taxPercent>6.94</taxPercent>
<type>goods</type>
<id>PK123423</id>
<price>7200</price>
<description>XBox Live Gold Card 12+1 Monate im FiFA 14 Design</description>
<name>XBox Live+Gold Card</name>
<tax>500</tax>
</article>
<article>
<id>PK43563456</id>
<quantity>1</quantity>
<price>13000</price>
<type>goods</type>
<taxPercent>7.38</taxPercent>
<name>Kinect Sensor</name>
<tax>960</tax>
<description>Kinect Adventures</description>
</article>
</order>
</request>
</transaction>
</body>
</authorizationService>
EOF
Response
<?xml version='1.0' encoding='UTF-8'?>
<authorizationService version='6'>
<body merchantId='1000011011' status='accepted'>
<transaction refno='749532' trxStatus='response'>
<request>
<testOnly>yes</testOnly>
<amount>20200</amount>
<pmethod>SWB</pmethod>
<language>DE</language>
<currency>CHF</currency>
<taxAmount>1460</taxAmount>
<sign>30916165706580013</sign>
<uppCustomerDetails>
<uppCustomerEmail>[email protected]</uppCustomerEmail>
<uppShippingDetails>no</uppShippingDetails>
<uppCustomerFirstName>Good</uppCustomerFirstName>
<uppCustomerCountry>CH</uppCustomerCountry>
<uppCustomerCity>Zurich</uppCustomerCity>
<uppCustomerZipCode>8001</uppCustomerZipCode>
<uppCustomerStreet>Limmatquai 55</uppCustomerStreet>
<uppCustomerPhone>+41584333034</uppCustomerPhone>
<uppCustomerLastName>Customer</uppCustomerLastName>
<uppCustomerBirthDate>1969-09-19</uppCustomerBirthDate>
<uppCustomerSubscription>test</uppCustomerSubscription>
</uppCustomerDetails>
<order>
<shippingAmount>250</shippingAmount>
<discountAmount>250</discountAmount>
<article>
<quantity>1</quantity>
<taxPercent>6.94</taxPercent>
<type>goods</type>
<id>PK123423</id>
<price>7200</price>
<description>XBox Live Gold Card 12+1 Monate im FiFA 14 Design</description>
<name>XBox Live+Gold Card</name>
<tax>500</tax>
</article>
<article>
<id>PK43563456</id>
<quantity>1</quantity>
<price>13000</price>
<type>goods</type>
<taxPercent>7.38</taxPercent>
<name>Kinect Sensor</name>
<tax>960</tax>
<description>Kinect Adventures</description>
</article>
</order>
<reqtype>NOA</reqtype>
</request>
<response>
<responseCode>01</responseCode>
<responseMessage>Acknowledged</responseMessage>
<uppTransactionId>190109124758131982</uppTransactionId>
<authorizationCode>758161983</authorizationCode>
<acqAuthorizationCode>1547034478187</acqAuthorizationCode>
</response>
</transaction>
</body>
Settlement
Request
curl -v -X POST https://api.sandbox.datatrans.com/upp/jsp/XML_processor.jsp \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d @- << EOF
<?xml version="1.0" encoding="UTF-8" ?>
<paymentService version="2">
<body merchantId="1000011011">
<transaction refno="705824">
<request>
<amount>50</amount>
<currency>CHF</currency>
<uppTransactionId>171002152752145299</uppTransactionId>
</request>
</transaction>
</body>
</paymentService>
EOF
Response
<?xml version='1.0' encoding='UTF-8'?>
<paymentService version='2'>
<body merchantId='1000011011' status='accepted'>
<transaction refno='705824' trxStatus='response'>
<request>
<amount>50</amount>
<currency>CHF</currency>
<uppTransactionId>171002152752145299</uppTransactionId>
<reqtype>COA</reqtype>
<transtype>05</transtype>
</request>
<response>
<responseCode>01</responseCode>
<responseMessage>settlement succeeded</responseMessage>
</response>
</transaction>
</body>
</paymentService>
Credit
Request
curl -v -X POST https://api.sandbox.datatrans.com/upp/jsp/XML_processor.jsp \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d @- << EOF
<?xml version="1.0" encoding="UTF-8" ?>
<paymentService version="2">
<body merchantId="1000011011">
<transaction refno="999273">
<request>
<amount>100</amount>
<currency>CHF</currency>
<uppTransactionId>171002153232242915</uppTransactionId>
</request>
</transaction>
</body>
</paymentService>
EOF
Response
<?xml version='1.0' encoding='UTF-8'?>
<paymentService version='2'>
<body merchantId='1000011011' status='accepted'>
<transaction refno='999273' trxStatus='response'>
<request>
<amount>100</amount>
<currency>CHF</currency>
<uppTransactionId>171002153232242915</uppTransactionId>
<reqtype>COA</reqtype>
<transtype>05</transtype>
</request>
<response>
<responseCode>01</responseCode>
<responseMessage>settlement succeeded</responseMessage>
</response>
</transaction>
</body>
</paymentService>
Cancel
Request
curl -v -X POST https://api.sandbox.datatrans.com/upp/jsp/XML_processor.jsp \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d @- << EOF
<?xml version="1.0" encoding="UTF-8" ?>
<paymentService version="2">
<body merchantId="1000011011">
<transaction refno="29023">
<request>
<amount>100</amount>
<currency>CHF</currency>
<uppTransactionId>171002153232242915</uppTransactionId>
<reqtype>DOA</reqtype>
</request>
</transaction>
</body>
</paymentService>
EOF
Response
<?xml version='1.0' encoding='UTF-8'?>
<paymentService version='2'>
<body merchantId='1000011011' status='accepted'>
<transaction refno='29023' trxStatus='response'>
<request>
<amount>100</amount>
<currency>CHF</currency>
<uppTransactionId>171002153232242915</uppTransactionId>
<reqtype>DOA</reqtype>
<transtype>05</transtype>
</request>
<response>
<responseCode>01</responseCode>
<responseMessage>cancellation succeeded</responseMessage>
</response>
</transaction>
</body>
</paymentService>
Status
Request
curl -v -X POST https://api.sandbox.datatrans.com/upp/jsp/XML_status.jsp \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d @- << EOF
<?xml version="1.0" encoding="UTF-8" ?>
<statusService version="5">
<body merchantId="1000011011">
<transaction>
<request>
<uppTransactionId>171002153232242915</uppTransactionId>
<reqtype>STX</reqtype>
</request>
</transaction>
</body>
</statusService>
EOF
Response
<?xml version='1.0' encoding='UTF-8'?>
<statusService version='5'>
<body merchantId='1000011011' status='accepted'>
<transaction trxStatus='response'>
<request>
<uppTransactionId>171002153232242915</uppTransactionId>
<reqtype>STX</reqtype>
</request>
<response itemNr='1'>
<responseCode>6</responseCode>
<responseMessage>DOA Cancel</responseMessage>
<refno>999273</refno>
<amount>100</amount>
<currency>CHF</currency>
<authorizationCode>232262916</authorizationCode>
<pmethod>SWB</pmethod>
<uppTransactionId>171002153232242915</uppTransactionId>
<expm>06</expm>
<expy>21</expy>
<trxDate>20171002</trxDate>
<trxTime>153232</trxTime>
<trtype>05</trtype>
<settledAmount>100</settledAmount>
</response>
</transaction>
</body>
</statusService>
Updated over 2 years ago