---
page_source: https://juspay.io/in/docs/payment-method-integrations/express-checkout-api/simpl-pay-after-delivery-multiclaim/transaction
page_title: Transaction
---

## 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:
