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

# Receive integration partner webhook

> Receives JSON data from integration partners (e.g. Repediu, Saipos). Authenticates via per-company API key (X-API-Key header), persists to WebhookEvent, and dispatches async processing. Idempotent — duplicate payloads return 200 with status 'duplicate'.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v2/webhooks/integrations/{partner}/
openapi: 3.0.3
info:
  title: Zupy API v2
  version: 2.0.0
  description: >-
    Zupy API v2 — versioned, gateway-aware API with envelope responses, RFC 7807
    errors, and multi-auth support (JWT, API Key, Device Key).
servers:
  - url: https://api.zupy.com
    description: Production
security: []
tags:
  - name: Authentication
    description: OTP request and verification endpoints
  - name: Customers
    description: Customer management, points, history, and data operations
  - name: Loyalty Programs
    description: Loyalty program configuration and details
  - name: Rewards
    description: Loyalty reward catalog (definitions redeemed with points)
  - name: Companies
    description: Company information and loyalty configuration
  - name: Coupons
    description: >-
      Issued coupons (RewardRedemption) — both loyalty-reward redemptions and
      marketing claims
  - name: Wallet
    description: Apple Wallet pass generation and notifications
  - name: Webhooks
    description: Partner integration webhook endpoints
  - name: Webhook Management
    description: Configure and test outbound webhook delivery
paths:
  /api/v2/webhooks/integrations/{partner}/:
    post:
      tags:
        - Webhooks
      summary: Receive integration partner webhook
      description: >-
        Receives JSON data from integration partners (e.g. Repediu, Saipos).
        Authenticates via per-company API key (X-API-Key header), persists to
        WebhookEvent, and dispatches async processing. Idempotent — duplicate
        payloads return 200 with status 'duplicate'.
      operationId: webhooks_integration_receive
      parameters:
        - in: header
          name: X-API-Key
          schema:
            type: string
          description: Per-company API key for this integration partner
          required: true
        - in: path
          name: partner
          schema:
            type: string
          description: Integration partner slug (e.g. 'repediu', 'saipos')
          required: true
      requestBody:
        content:
          application/json:
            schema:
              type: object
              description: Partner-specific JSON payload
              additionalProperties: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookReceivedResponse'
              examples:
                WebhookReceived:
                  value:
                    status: received
                    id: 2awTHloSJX7kGGprFerOOsvABcd
                  summary: Webhook Received
                WebhookDuplicate:
                  value:
                    status: duplicate
                    id: 2awTHloSJX7kGGprFerOOsvABcd
                  summary: Webhook Duplicate
          description: ''
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: ''
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: ''
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: ''
      security:
        - apiKeyAuth: []
components:
  schemas:
    WebhookReceivedResponse:
      type: object
      properties:
        status:
          type: string
          description: '''received'' or ''duplicate'''
        id:
          type: integer
          nullable: true
          description: WebhookEvent ID
      required:
        - id
        - status
    Error:
      type: object
      description: RFC 7807 Problem Details error response.
      properties:
        type:
          type: string
          format: uri
        title:
          type: string
        status:
          type: integer
        detail:
          type: string
        instance:
          type: string
      required:
        - detail
        - instance
        - status
        - title
        - type
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Per-company partner API key (zupy_pk_…). Validated by Zupy against the
        company integration key hash (Story 14.x); send it on every request as
        the X-API-Key header. Scoped read-write to the owning company's data.

````