# Get Event

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/enkash-coins/{coinConfigId}:
    get:
      summary: Get Event
      deprecated: false
      description: Get Coin Event Details
      tags:
        - Rewards & Incentives/APIs - Reward/Point Management
      parameters:
        - name: coinConfigId
          in: path
          description: >-
            Coin Configuration Unique ID (which is received while creating coin
            configuration)
          required: true
          example: WCC12345
          schema:
            type: string
        - name: Cookie
          in: header
          description: ''
          required: false
          example: JSESSIONID=8210C467EECEA61D94E7893891C38F13
          schema:
            type: string
        - name: authorization
          in: header
          description: ''
          required: true
          example: Bearer Wc_7niS7DTxKpXbVC-sTgh2yb7g
          schema:
            type: string
      responses:
        '401':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  payload:
                    type: string
                  errorResponse:
                    type: object
                    properties:
                      timestamp:
                        type: string
                      requestId:
                        type: string
                      errorType:
                        type: string
                      errorMessage:
                        type: string
                    required:
                      - timestamp
                      - requestId
                      - errorType
                      - errorMessage
                    x-apidog-orders:
                      - timestamp
                      - requestId
                      - errorType
                      - errorMessage
                  response_code:
                    type: integer
                  response_message:
                    type: string
                required:
                  - payload
                  - errorResponse
                  - response_code
                  - response_message
                x-apidog-orders:
                  - payload
                  - errorResponse
                  - response_code
                  - response_message
              example:
                payload: >-
                  {"error":"invalid_token","error_description":"Invalid access
                  token"}
                errorResponse:
                  timestamp: '2024-07-08 10:24:31'
                  requestId: EA2714C1C8B85165A45E5A866CC51470
                  errorType: SYSTEM_ERROR
                  errorMessage: >-
                    {"error":"invalid_token","error_description":"Invalid access
                    token"}
                response_code: 1
                response_message: Failure
          headers: {}
          x-apidog-name: Success
      security:
        - bearer: []
      x-apidog-folder: Rewards & Incentives/APIs - Reward/Point Management
      x-apidog-status: developing
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-9796914-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
