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

# Creates a new event



## OpenAPI

````yaml /products/commerce/v1/openapi.yaml post /events
openapi: 3.1.0
info:
  license:
    name: Hellgate® API License
    url: https://starfish.team
  title: Commerce
  version: '0.1'
servers:
  - url: https://commerce1.on-hellgate.dev
    variables: {}
security:
  - mtls: []
  - api_key: []
tags: []
paths:
  /events:
    post:
      tags:
        - events
      summary: Creates a new event
      operationId: CommerceWeb.Eventing.EventController.create
      parameters: []
      responses:
        '202':
          description: No content
        '400':
          description: No content
      callbacks: {}
      security:
        - mtls: []
components:
  securitySchemes:
    mtls:
      description: >-
        Client certificate authentication via mTLS. Account-scoped routes
        additionally require the X-Account-ID header to identify the account.
      type: mutualTLS
    api_key:
      in: header
      name: X-API-Key
      type: apiKey

````