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

# Partner payout status outbound

> COP By POSTs this payload to the partner `webhook_url` configured in the dashboard.
Headers: `X-CopBy-Signature` (HMAC-SHA256 hex of `${timestamp}.${rawBody}`),
`X-CopBy-Timestamp`, `X-CopBy-Event-Id`, `X-CopBy-Event-Type`.
Deduplicate by `X-CopBy-Event-Id`. Poll `GET /api/integrations/breb/payouts/{payoutId}` as fallback.




## OpenAPI

````yaml /openapi.yaml webhook partnerPayoutStatus
openapi: 3.1.0
info:
  title: COP By Integrations API
  version: 0.1.0
  description: |
    Non-custodial Celo API for partners. Prepare swaps and BRE-B COP payouts;
    the user signs from their wallet. Confirm with the transaction hash.
servers:
  - url: https://api.copby.digitalcop.shop
    description: Production API
security:
  - bearerAuth: []
tags:
  - name: BRE-B
    description: Quote, KYC, and COP payouts via Bridge Bre-B
  - name: Swaps
    description: Prepare and confirm onchain COPm swaps
  - name: Webhooks
    description: >
      Bridge → COP By inbound callbacks, plus outbound partner payout webhooks
      (REQ-INT-WH-01).

      Partners configure URL + signing secret in the dashboard; deliveries are
      HMAC-signed.
paths: {}
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Integration API key. Send as `Bearer copby_live_pk_…`.

````