Payment Processing

Central to Krepling Pay, this section describes the API responsible for initiating and processing payments. It's designed to handle transactions securely, leveraging user and card details for payment completion.

APIs Included:

  • Process Payment: Executes the payment process using stored payment methods, handling transactions securely and efficiently.

1. Process Payment

Good to know: Krepling Pay employs sophisticated fraud detection algorithms to secure transactions, ensuring both merchants and customers are protected against fraudulent activities.

  • POST /api/Authorizations/PostECommerce

  • Purpose: Executes a payment transaction using the user's chosen payment method.

  • Request Body:

{
  "amount": {
    "currency": "USD",
    "value": "11.10"
  },
  "transactionDate": "2024-02-01T11:32:31.5620082Z",
  "UserId": 7906
}

Response:

{
  "status": 1,
  "message": "Payment processed successfully"
}

Good to know: With support for multiple currencies and payment methods, Krepling Pay provides a versatile platform that caters to a global audience, enabling you to expand your reach internationally.

Last updated