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

# [DEMO] Stripe webhook endpoint



## OpenAPI

````yaml /openapi/payment-service.json post /v1/webhooks/stripe
openapi: 3.0.0
info:
  title: Asiko Payment Service
  description: Stripe, PayPal, Paystack, trade invoicing
  version: '1.0'
  contact: {}
servers:
  - url: https://asikodevapi.candourit.io
    description: Production (via api-gateway)
  - url: http://localhost:3000
    description: Local development (via api-gateway)
security: []
tags:
  - name: payments
    description: ''
  - name: webhooks
    description: ''
paths:
  /v1/webhooks/stripe:
    post:
      tags:
        - webhooks
      summary: '[DEMO] Stripe webhook endpoint'
      operationId: WebhooksController_stripeWebhook
      parameters: []
      responses:
        '201':
          description: ''

````