# Get Incentive Transaction details

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/partner/enKashCard/transaction/all:
    post:
      summary: Get Incentive Transaction details
      deprecated: false
      description: >-

        :::highlight orange 📌

        This API allows you to retrieve the details of an incentive transaction
        using a unique reference number. It is useful for auditing, user-facing
        summaries, reporting, and tracking incentive disbursements

        :::
      tags:
        - Rewards & Incentives/APIs - Reward/Incentive Allocation
      parameters:
        - name: partnerId
          in: header
          description: ''
          required: true
          example: CRMXWB3ZM
          schema:
            type: string
        - name: Authorization
          in: header
          description: ''
          required: true
          example: Bearer M3_0-aF0Tuvl1t9vSWnPf9ReqVw
          schema:
            type: string
        - name: Content-Type
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
        - name: Cookie
          in: header
          description: ''
          required: true
          example: JSESSIONID=B01764303CD3DEFC3C0699B3EF351505
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                cardAccountId:
                  type: string
                pgReferenceNumber:
                  type: string
              required:
                - cardAccountId
                - pgReferenceNumber
              x-apidog-orders:
                - cardAccountId
                - pgReferenceNumber
            example:
              cardAccountId: CAQL8YCV3
              pgReferenceNumber: TEST234236
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apidog-orders: []
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: Rewards & Incentives/APIs - Reward/Incentive Allocation
      x-apidog-status: developing
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-9796912-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
