> ## Documentation Index
> Fetch the complete documentation index at: https://voora.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch event details and decision state



## OpenAPI

````yaml /api-reference/openapi.json get /{eventId}
openapi: 3.0.4
info:
  title: Merchant Portal SendEvent API
  description: Endpoints for sending and querying event data.
  version: v1
servers:
  - url: https://live.voora.ai/event
security:
  - ClientApiKey: []
tags:
  - name: Event
paths:
  /{eventId}:
    get:
      tags:
        - Event
      summary: Fetch event details and decision state
      parameters:
        - name: eventId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventSummaryResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Unprocessable Content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '504':
          description: Gateway Timeout
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    EventSummaryResponse:
      type: object
      properties:
        id:
          type: string
          nullable: true
        totalScore:
          type: integer
          format: int32
        state:
          type: string
          nullable: true
        eventDate:
          type: string
          description: |-
            ISO 8601 format (UTC)
            Example: 2026-03-12T14:30:55Z
          format: date-time
          nullable: true
        amount:
          type: number
          format: double
          nullable: true
        amountInBaseCurrency:
          type: number
          format: double
          nullable: true
        currency:
          type: string
          nullable: true
        baseCurrency:
          type: string
          nullable: true
        userName:
          type: string
          nullable: true
        userEmail:
          type: string
          nullable: true
        shippingCountry:
          type: string
          nullable: true
        shippingFullName:
          type: string
          nullable: true
        shippingCity:
          type: string
          nullable: true
        shippingRegion:
          type: string
          nullable: true
        shippingZip:
          type: string
          nullable: true
        shippingStreet1:
          type: string
          nullable: true
        shippingStreet2:
          type: string
          nullable: true
        shippingPhone:
          type: string
          nullable: true
        billingCountry:
          type: string
          nullable: true
        billingCity:
          type: string
          nullable: true
        billingRegion:
          type: string
          nullable: true
        billingZip:
          type: string
          nullable: true
        billingStreet1:
          type: string
          nullable: true
        billingStreet2:
          type: string
          nullable: true
        billingPhone:
          type: string
          nullable: true
        userIp:
          type: string
          nullable: true
        allowlistMatch:
          type: boolean
        denylistMatch:
          type: boolean
        userCreated:
          type: string
          format: date
          nullable: true
        userFullName:
          type: string
          nullable: true
        comments:
          type: string
          nullable: true
        items:
          type: array
          items:
            $ref: '#/components/schemas/EventItemSummaryResponse'
          nullable: true
      additionalProperties: false
    ErrorResponse:
      type: object
      properties:
        requestId:
          type: string
          nullable: true
        errorType:
          type: string
          nullable: true
        errorCodes:
          type: array
          items:
            type: string
          nullable: true
      additionalProperties: false
    EventItemSummaryResponse:
      type: object
      properties:
        itemId:
          type: string
          nullable: true
        itemName:
          type: string
          nullable: true
        itemQuantity:
          type: integer
          format: int32
        itemPrice:
          type: number
          format: double
        itemPriceInBaseCurrency:
          type: number
          format: double
        itemCategory:
          type: string
          nullable: true
        itemSeller:
          type: string
          nullable: true
        itemSellerCountry:
          type: string
          nullable: true
        itemCurrency:
          type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    ClientApiKey:
      type: apiKey
      description: 'API key required in header: X-CLIENT-API-KEY'
      name: X-CLIENT-API-KEY
      in: header

````