---
page_title: Transaction
product: Payment Method Integrations
platform: Express Checkout API
page_source: https://juspay.io/br/docs/payment-method-integrations/express-checkout-api/simpl-pay-after-delivery-multiclaim/transaction
openapi: https://juspay.io/br/docs/api/swagger?document=https%3A%2F%2Fjuspay.io%2Fbr%2Fdocs%2Fpayment-method-integrations%2Fexpress-checkout-api%2Fsimpl-pay-after-delivery-multiclaim%2Ftransaction
llms_txt: https://juspay.io/br/docs/llms.txt
product_llms_txt: https://juspay.io/br/docs/payment-method-integrations/llms.txt
---

## API Version: default


# Transaction API



Initiate transaction API with payment_method_type as Wallet and payment_method as SIMPL_SOD.

Post successful Transaction, the transaction moves to AUTHORIZED state.## Endpoints:
- Sandbox: https://sandbox.juspay.in

- Production: https://api.juspay.in

## Request Type: 
GET

## Content-Type: 
application/json

## Authorization:

#### Basic Auth:
Auth example
- Value: MUQ2QUZEQzhFQTY0OUU5QTIxQzNFNTQwNkFDMEZCOg==
- Tags: required
## Sample Code Snippets:
### Code Snippets:

#### Shell Code Snippet:

```shell
curl --location 'https://sandbox.juspay.in/txns' \
   --header 'Content-Type: application/x-www-form-urlencoded' \
   --header 'Authorization: Basic N0JBRDA4OUExxxxxxxxxxxxxNDlCNjY3QTVCMUQzM0Q6' \
   --data-urlencode 'order_id=o1704808129' \
   --data-urlencode 'merchant_id=azharamin' \
   --data-urlencode 'payment_method_type=WALLET' \
   --data-urlencode 'payment_method=SIMPL_SOD' \
   --data-urlencode 'redirect_after_payment=true' \
   --data-urlencode 'format=json' \
   --data-urlencode 'pre_auth_enabled=true'
```

### Sample Request and Response:

#### Response:
```json
{
    "order_id": "o1704808129",
    "status": "PENDING_VBV",
    "payment": {
        "authentication": {
            "url": "http://localhost:8080/v2/pay/start/azharamin/mozicWi4sesPKYPnPTD",
            "method": "GET"
        }
    },
    "txn_uuid": "mozicWi4sesPKYPnPTD",
    "offer_details": {
        "offers": []
    },
    "txn_id": "azharamin-o1704808129-1"
}
```

## Body Parameters:
### Basic Parameters:

#### order_id:
- Value: value
- Tags: String, Mandatory

#### merchant_id:
- Tags: String, Mandatory

#### payment_method_type:
- Tags: String, Mandatory

#### payment_method:
- Tags: String, Mandatory

#### pre_auth_enabled:
- Description: To be sent for performing pre auth transaction
- Tags: String
## API Responses:


---

## See Also

- [Create Order](https://juspay.io/br/docs/payment-method-integrations/express-checkout-api/simpl-pay-after-delivery-multiclaim/create-order)
- [Order Status & Webhooks](https://juspay.io/br/docs/payment-method-integrations/express-checkout-api/simpl-pay-after-delivery-multiclaim/order-status--webhooks)
