FastCheckoutService
Click here for a complete list of operations.
CreatePaymentLink
Test
To test the operation using the HTTP POST protocol, click the 'Invoke' button.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /checkout/v7/FastCheckoutService.asmx HTTP/1.1 Host: test.mobilexpress.com.tr Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://tempuri.org/CreatePaymentLink" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <CreatePaymentLink xmlns="http://tempuri.org/"> <MerchantKey>string</MerchantKey> <APIpassword>string</APIpassword> <Email>string</Email> <CustomerID>string</CustomerID> <UseOneClickPayment>boolean</UseOneClickPayment> <TransactionId>string</TransactionId> <TotalAmount>decimal</TotalAmount> <Description>string</Description> <Use3DSecure>boolean</Use3DSecure> <RequestOTP>boolean</RequestOTP> <RequestCVV>boolean</RequestCVV> <UseInstallment>boolean</UseInstallment> <UseCustomInstallments>boolean</UseCustomInstallments> <InstallmentRateTable>string</InstallmentRateTable> <ExtraParam>string</ExtraParam> <SendVia>None or Email or SMS</SendVia> <Phone>string</Phone> <CustomerName>string</CustomerName> <POSConfiguration>string</POSConfiguration> <LinkExpireHours>int</LinkExpireHours> </CreatePaymentLink> </soap:Body> </soap:Envelope>
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <CreatePaymentLinkResponse xmlns="http://tempuri.org/"> <CreatePaymentLinkResult> <ResultCode>Success or CustomerNotFound or InvalidCustomerEmail or InvalidAmount or EmailMismatch or EmailCouldNotSent or BankAccountNotActive or CurrencyNotFound or PaymentPlanNotFound or SMSCouldNotSent or InvalidCustomerPhone or TooManyRequestSent or AuthenticationError or ServerError or InvalidTransactionId</ResultCode> <TransactionId>string</TransactionId> <MobilexpressTransId>string</MobilexpressTransId> <LinkURL>string</LinkURL> <Email>string</Email> </CreatePaymentLinkResult> </CreatePaymentLinkResponse> </soap:Body> </soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /checkout/v7/FastCheckoutService.asmx HTTP/1.1 Host: test.mobilexpress.com.tr Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <CreatePaymentLink xmlns="http://tempuri.org/"> <MerchantKey>string</MerchantKey> <APIpassword>string</APIpassword> <Email>string</Email> <CustomerID>string</CustomerID> <UseOneClickPayment>boolean</UseOneClickPayment> <TransactionId>string</TransactionId> <TotalAmount>decimal</TotalAmount> <Description>string</Description> <Use3DSecure>boolean</Use3DSecure> <RequestOTP>boolean</RequestOTP> <RequestCVV>boolean</RequestCVV> <UseInstallment>boolean</UseInstallment> <UseCustomInstallments>boolean</UseCustomInstallments> <InstallmentRateTable>string</InstallmentRateTable> <ExtraParam>string</ExtraParam> <SendVia>None or Email or SMS</SendVia> <Phone>string</Phone> <CustomerName>string</CustomerName> <POSConfiguration>string</POSConfiguration> <LinkExpireHours>int</LinkExpireHours> </CreatePaymentLink> </soap12:Body> </soap12:Envelope>
HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <CreatePaymentLinkResponse xmlns="http://tempuri.org/"> <CreatePaymentLinkResult> <ResultCode>Success or CustomerNotFound or InvalidCustomerEmail or InvalidAmount or EmailMismatch or EmailCouldNotSent or BankAccountNotActive or CurrencyNotFound or PaymentPlanNotFound or SMSCouldNotSent or InvalidCustomerPhone or TooManyRequestSent or AuthenticationError or ServerError or InvalidTransactionId</ResultCode> <TransactionId>string</TransactionId> <MobilexpressTransId>string</MobilexpressTransId> <LinkURL>string</LinkURL> <Email>string</Email> </CreatePaymentLinkResult> </CreatePaymentLinkResponse> </soap12:Body> </soap12:Envelope>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /checkout/v7/FastCheckoutService.asmx/CreatePaymentLink HTTP/1.1 Host: test.mobilexpress.com.tr Content-Type: application/x-www-form-urlencoded Content-Length: length MerchantKey=string&APIpassword=string&Email=string&CustomerID=string&UseOneClickPayment=string&TransactionId=string&TotalAmount=string&Description=string&Use3DSecure=string&RequestOTP=string&RequestCVV=string&UseInstallment=string&UseCustomInstallments=string&InstallmentRateTable=string&ExtraParam=string&SendVia=string&Phone=string&CustomerName=string&POSConfiguration=string&LinkExpireHours=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <FCCreatePaymentLinkResult xmlns="http://tempuri.org/"> <ResultCode>Success or CustomerNotFound or InvalidCustomerEmail or InvalidAmount or EmailMismatch or EmailCouldNotSent or BankAccountNotActive or CurrencyNotFound or PaymentPlanNotFound or SMSCouldNotSent or InvalidCustomerPhone or TooManyRequestSent or AuthenticationError or ServerError or InvalidTransactionId</ResultCode> <TransactionId>string</TransactionId> <MobilexpressTransId>string</MobilexpressTransId> <LinkURL>string</LinkURL> <Email>string</Email> </FCCreatePaymentLinkResult>