---
title: Transaction Wise Settlement Report
description: Transaction Wise Settlement Report
---

This API retrieves Transaction Wise Settlement Report

#### POST
```
https://kraken.airpay.co.in/airpay/pay/v4/api/report/settlement
```

## Header

| Parameter | Type Value | Description | Value Like |
| --- | --- | --- | --- |
| Content-Type  required | String | The Content-Type header indicates the media type of the request or response body so the receiver knows how to process the data | `application/x-www-form-urlencodeds` |

## Request Body

| Parameter | Type Value | Description | Value Like |
| --- | --- | --- | --- |
| api_type  required | String | API type identifier | `TRANSACTION_SETTLEMENT_API` |
| version  required | Numeric | Version number | `1` |
| settlement_date  required | String | Settlement date | `YYYY-MM-DD` |
| merchant_id  required | Numeric | Merchant ID | `18999` |
| page_no  required | Numeric | Call next page until get error code of no record| `1` |

## Success 200

| Parameter | Type Value | Description | Value Like |
| --- | --- | --- | --- |
| status_code  required | String | HTTP status code | `200` |
| response_code  required | String | Response code | `00` |
| status  required | String | Status of the request | `success` |
| message  required | String | Response message | `success` |
| data  required | Object | Contains transaction details | `{}` |
| transaction  required | Array | Array of transaction records | `[]` |
| merchant_txn_date_time  required | String | Merchant transaction date time | `28-04-2026 20:42:21` |
| transaction_id  required | String | Transaction ID | `1885079358` |
| merchant_txn_id  required | String | Merchant transaction ID | `100006542084312` |
| split_config_id  required | String | Split configuration ID | `` |
| utr_number  required | String | Unique Transaction Reference | `TESTUTR22026050122576739` |
| id-1 to id-10  required | String | Split settlement amounts with different ids | `1115.40` |
| txn_amount  required | String | Transaction amount | `1127.20` |
| platform_fees  required | String | Platform fees | `10.00` |
| gst  required | String | GST amount | `1.80` |
| net_payable  required | String | Net payable amount | `1115.4` |
| profile_id  required | String | Profile ID | `18999` |
| payout_date  required | String | Payout date | `2026-05-01` |
| rrn_number  required | String | RRN number | `` |

### Success Response (JSON)

```json
{
  "status_code": "200",
  "response_code": "00",
  "status": "success",
  "message": "success",
  "data": {
    "transaction": [
      {
        "merchant_txn_date_time": "28-04-2026 20:42:21",
        "transaction_id": "1885079358",
        "merchant_txn_id": "100006542084312",
        "split_config_id": "",
        "utr_number": "TESTUTR22026050122576739",
        "id-1": "1,115.40",
        "id-2": "0",
        "id-3": "0",
        "id-4": "0",
        "id-5": "0",
        "id-6": "0",
        "id-7": "0",
        "id-8": "0",
        "id-9": "0",
        "id-10": "0",
        "txn_amount": "1127.20",
        "platform_fees": "10.00",
        "gst": "1.80",
        "net_payable": "1115.4",
        "profile_id": "18999",
        "payout_date": "2026-05-01",
        "rrn_number": ""
      },
      {
        "merchant_txn_date_time": "28-04-2026 21:01:34",
        "transaction_id": "1885089507",
        "merchant_txn_id": "100006542084502",
        "split_config_id": "",
        "utr_number": "TESTUTR22026050122576739",
        "id-1": "472.70",
        "id-2": "0",
        "id-3": "0",
        "id-4": "0",
        "id-5": "0",
        "id-6": "0",
        "id-7": "0",
        "id-8": "0",
        "id-9": "0",
        "id-10": "0",
        "txn_amount": "484.50",
        "platform_fees": "10.00",
        "gst": "1.80",
        "net_payable": "472.7",
        "profile_id": "18999",
        "payout_date": "2026-05-01",
        "rrn_number": ""
      }
    ]
  }
}
```