xMoney API Reference (1.0)

This documentation provides a comprehensive guide to xMoney's REST API, enabling you to seamlessly authenticate, make requests, and retrieve data. Our API accepts form-encoded request bodies and returns responses in JSON format for easy integration with your applications.

Languages
Servers
Development
https://docs.xmoney.com/_mock/api/reference/
Staging
https://api-stage.twispay.com/

Order

This API resource manages orders, enabling creation, retrieval, and cancellation. This facilitates payment processing within the order management flow. It also supports management of recurring orders, including cancellation and rebilling.

Operations

Create an order

Request

This endpoint creates new orders, supporting both one-time purchases and recurring subscriptions.

Bodyapplication/x-www-form-urlencodedrequired
amountnumber(float)required

A string containing an exact monetary amount in the given currency. If you would want to charge €100.00 then you should provide 100.00.

currencystringrequired

A three-character ISO 4217 currency code.

Example: "EUR"
orderTypestringrequired

Type of the order. Possible values are:

  • purchase: One-off payment.
  • recurring: A recurring order that will be billed automatically based on a defined interval. When using this type, the intervalType and intervalValue parameters are required.
  • managed: Merchant-managed order; rebilling is initiated by the merchant on request.
  • credit: Used for credit transactions or Original Credit Transactions (OCTs) / Card Funding Transactions (CFTs).
Enum"purchase""recurring""managed""credit"
customerIdintegerrequired

The unique identifier for the customer.

siteIdinteger

Unique identifier of your site profile. Mandatory if more than one site is configured.

descriptionstring

Description of the goods or services included in the order.

externalOrderIdstring<= 32 characters^[A-Za-z0-9_\-\.]{0,32}$

An external order identifier. This can be used to link the order with an external system.

intervalTypestring

The type of recurring interval.

Enum"day""month"
intervalValueinteger

The value of the recurring interval. For example, if intervalType is month and intervalValue is 3, the order will recur every 3 months.

retryPaymentstring

A comma-separated list of ISO 8601 Durations representing retry intervals for failed payments. For example, PT1H,PT2H would retry once after 1 hour, and again after 2 hours. See ISO 8601 Durations for more information.

trialAmountnumber(float)

The amount to be charged for the initial (trial) payment. This value is also used to validate and store the payment method.

firstBillDatestring

Use firstBillDate to specify the initial billing date when it differs from the regular recurring interval (defined by intervalValue). This is often used for trials. If firstBillDate is used, trialAmount must be greater than 0. Use ISO 8601 date, time and timezone offset.

backUrlstring(uri)

URL to which the cardholder will be redirected after completing a 3D Secure or digital wallet payment.

Example: "https://myserver.com/callback/success-payment"
transactionMethodstring

Specifies the payment method for the transaction. Possible values include:

  • Card Payments (card): For card payments, provide one of the following:

    • Existing Card: The cardId of the stored card.
    • New Card: The following details for the new card: cardHolderName, cardHolderCountry, cardHolderState (required if the country is US or CA), cardNumber, cardExpiryDate, and cardCvv.
  • Wallet Payments (wallet): For digital wallet transactions, use wallet and set the walletTransactionMode parameter to either transfer or credit.

Enum"card""wallet"
cardTransactionModestring

Specifies how the card transaction is processed.

  • auth: Authorizes the card but does not capture the funds immediately. This is useful for verifying card details and holding funds before completing the purchase. A subsequent capture operation is required to settle the payment.
  • authAndCapture: Authorizes and immediately captures the funds. This is the standard mode for most transactions where payment is collected at the time of purchase.
  • credit: Processes a credit transaction (e.g., a refund or reversal). This mode is used to credit funds back to the cardholder.
Enum"auth""authAndCapture""credit"
cardIdinteger

The ID of a stored card belonging to the current customer.

Example: 123
cardNumberstring

The card number (numbers only, no spaces).

cardExpiryDatestring

The card expiry date (MM/YY). For example: 12/28 or 05/26.

cardCvvstring

The card verification value (CVV). Three digits for Visa, Mastercard, Maestro; four digits for American Express.

cardHolderNamestring

The cardholder's name.

cardHolderCountrystring
cardHolderStatestring
saveCardboolean

Indicates whether to save the card information for future use.

invoiceEmailstring(email)

The email address to which the invoice will be sent.

ipstring(ipv4)

Customer's IP address (ipv4 or ipv6)

threeDSecureDatastring

Base64 encoded JSON object containing 3D Secure version 2 data, such as browser information and billing/shipping addresses. For details, see the 3-D Secure – Protocol and Core Functions Specification on the EMVCo website.

externalCustomDatastring

Custom data that will be passed back in the IPN callback. This field is not validated and can be used to send additional information. For complex data, use a JSON-encoded string.

level3Datastring

Detailed information (JSON format) about items, tickets, etc. Refer to the API documentation for details

transactionOptionstring

JSON-encoded parameters used to pass optional flags. Validate against the schema: https://api-stage.twispay.com/schema/transactionOption.schema.json.

curl -i -X POST \
  https://docs.xmoney.com/_mock/api/reference/order \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d amount=10 \
  -d currency=USD \
  -d orderType=purchase \
  -d customerId=123

Responses

Created

Bodyapplication/json
codeintegerrequired
messagestringrequired
dataobject
Response
application/json
{ "code": 0, "message": "string", "data": { "orderId": 0, "transactionId": 0, "cardId": 0, "is3d": 0, "isRedirect": true, "redirect": {} } }

List all orders

Request

Retrieve a list of orders, optionally filtered by various criteria.

Query
externalOrderIdstring

Filter by external order ID.

Example: externalOrderId=92fe5b00-e284-4fca-b5d7-845348a009cc
customerIdinteger

Filter by customer ID.

Example: customerId=123
orderTypestring

Filter by order type.

Enum"purchase""recurring""managed""credit"
Example: orderType=purchase
orderStatusstring

Filter by order status.

Enum"start""in-progress""retrying""expiring""complete-ok""complete-failed"
Example: orderStatus=complete-ok
reasonstring

Filter by cancellation reason.

Enum"customer-demand""duplicated-transaction""fraud-confirm""highly-suspicious""test-transaction""card-expired"
createdAtFromstring(date-time)

Filter by creation date bigger than this. Use ISO 8601 date, time and timezone offset.

Example: createdAtFrom=2000-01-31T14:05:40+00:00
createdAtTostring(date-time)

Filter by creation date smaller than this. Use ISO 8601 date, time and timezone offset.

Example: createdAtTo=2000-01-31T14:05:40+00:00
pageinteger

Page number.

Default 1
perPageinteger

Number of items per page.

Default 100
reverseSortinginteger

Sort order: 0 (oldest to newest), 1 (newest to oldest).

Default 1
Enum01
curl -i -X GET \
  'https://docs.xmoney.com/_mock/api/reference/order?createdAtFrom=2000-01-31T14%3A05%3A40%2B00%3A00&createdAtTo=2000-01-31T14%3A05%3A40%2B00%3A00&customerId=123&externalOrderId=92fe5b00-e284-4fca-b5d7-845348a009cc&orderStatus=complete-ok&orderType=purchase&page=1&perPage=100&reason=customer-demand&reverseSorting=0' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Success

Bodyapplication/json
codeintegerrequired
messagestringrequired
paginationobject
dataArray of objects
Response
application/json
{ "code": 0, "message": "string", "pagination": { "currentPageNumber": 1, "totalItemCount": 0, "itemCountPerPage": 100, "currentItemCount": 0, "pageCount": 0 }, "data": [ {} ] }

Retrieve an order

Request

Retrieve a specific order by its ID.

Path
idintegerrequired

Provide the ID of the order to operate on.

Example: 123
curl -i -X GET \
  https://docs.xmoney.com/_mock/api/reference/order/123 \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Success

Bodyapplication/json
codeinteger

HTTP status code of the response.

Example: 200
messagestring

HTTP message of the response.

Example: "Success"
dataobject
Response
application/json
{ "code": 200, "message": "Success", "data": { "id": 0, "siteId": 0, "customerId": 0, "externalOrderId": "string", "orderType": "string", "orderStatus": "string", "amount": 0.1, "currency": "string", "description": "string", "invoiceEmail": "string", "createdAt": "2019-08-24T14:15:22Z", "intervalType": "day", "intervalValue": 0, "retryPayment": "string", "nextDueDate": "2019-08-24T14:15:22Z", "transactionMethod": "string" } }

Cancel a recurring order

Request

An open order may be canceled if it does not have any payments yet.

Path
idintegerrequired

Provide the ID of the order to operate on.

Example: 123
Bodyapplication/x-www-form-urlencoded
reasonstring

Reason for cancellation

Enum"fraud-confirm""highly-suspicious""duplicated-transaction""customer-demand""test-transaction"
messagestring

Additional details

terminateOrderstring

Immediately cancel the order. Normally, canceled orders enter an expiring status, allowing the customer time to reconsider. Setting this to yes bypasses the expiring status and immediately terminates the order. Important: This action does not issue any refunds.

Value"yes"
curl -i -X DELETE \
  https://docs.xmoney.com/_mock/api/reference/order/123 \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d reason=fraud-confirm \
  -d message=string \
  -d terminateOrder=yes

Responses

Success

Bodyapplication/json
codeinteger

HTTP status code of the response.

Example: 200
messagestring

HTTP message of the response.

Example: "Success"
Response
application/json
{ "code": 200, "message": "Success" }

Initiate recurring order transaction

Request

Manually bills a customer for their recurring order. This endpoint allows merchants to control when recurring order payments are processed.

Path
idstringrequired

The ID of the order

Bodyapplication/x-www-form-urlencodedrequired
customerIdintegerrequired

The ID of the customer.

amountnumber(float)required

Amount

transactionOptionstring

Json encoded param used to pass optional flags. Validate against https://api-stage.twispay.com/schema/transactionOption.schema.json

curl -i -X PATCH \
  'https://docs.xmoney.com/_mock/api/reference/order-rebill/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d customerId=0 \
  -d amount=0.1 \
  -d transactionOption=string

Responses

Success

Bodyapplication/json
codeintegerrequired
messagestringrequired
dataobjectrequired
data.​idintegerrequired
data.​transactionIdinteger
data.​cardIdinteger
Response
application/json
{ "code": 0, "message": "string", "data": { "id": 0, "transactionId": 0, "cardId": 0 } }

Transaction

This API resource allows you to manage transactions processed through xMoney. Key functionalities include retrieving lists and details of transactions, capturing funds for authorized payments, and issuing refunds.

Operations

Customer

Use this API resource to manage your customers. You can create customers for payments, retrieve and update their information, and delete them (which cancels all mandates and subscriptions).

Operations

Card

This endpoint allows you to manage customer cards, including retrieving lists and details of cards, and deleting cards.

Operations