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

# v1/cards

> OAuth scope: `card.read`

Webhook that delivers events related to cards.

Supported events:
  - `cards.created`
  - `cards.activated`
  - `cards.unlocked`
  - `cards.locked`
  - `cards.nickname_updated`
  - `cards.options_updated`
  - `cards.limits_updated`
  - `cards.restrictions_updated`
  - `cards.discarded`
  - `cards.expired`


<RequestExample>
  ```json v1/cards theme={null}
  {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "subscription_id": "123e4567-e89b-12d3-a456-426614174000",
      "organization_id": "123e4567-e89b-12d3-a456-426614174000",
      "membership_id": "123e4567-e89b-12d3-a456-426614174000",
      "type": "v1/cards",
      "created_at": "2025-01-24T10:55:00Z",
      "data": {
          "event": "created",
          "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
          "nickname": "💳 for 🍗",
          "status": "pending",
          "masked_pan": "511768******7662",
          "exp_month": "3",
          "exp_year": "2024",
          "atm_option": true,
          "nfc_option": true,
          "online_option": true,
          "foreign_option": true,
          "atm_daily_limit": "1000.00",
          "atm_daily_limit_option": true,
          "atm_monthly_limit": "1000.00",
          "payment_monthly_limit": "1000.00",
          "payment_daily_limit": "1000.00",
          "payment_daily_limit_option": true,
          "payment_transaction_limit": "1000.00",
          "payment_transaction_limit_option": true,
          "payment_lifespan_limit": "42.00",
          "active_days": [1, 3, 5],
          "holder_id": "a2b0c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d",
          "bank_account_id": "b3c4d5e6-f7a8-9b0c-1d2e-3f4a5b6c7d8e",
          "updated_at": "2023-05-15T14:32:17Z",
          "created_at": "2023-05-15T14:30:00Z",
          "card_type": "debit",
          "card_level": "standard",
          "category_tags": ["transport", "restaurant_and_bar", "food_and_grocery"],
          "renewal": false,
          "upsell": false,
          "discarded_at": "2022-11-31"
      }
  }
  ```
</RequestExample>


## OpenAPI

````yaml webhook v1/cards
openapi: 3.1.1
info:
  version: v2
  title: Qonto
servers:
  - url: https://thirdparty.qonto.com
    description: Production URL
  - url: https://thirdparty-sandbox.staging.qonto.co
    description: Sandbox URL
security:
  - OAuth:
      - organization.read
      - membership.read
      - membership.write
      - attachment.write
      - internal_transfer.write
      - payment.write
      - supplier_invoice.write
      - supplier_invoice.read
      - client_invoices.read
      - client_invoice.write
      - client.read
      - client.write
      - product.read
      - product.write
      - request_review.write
      - request_review.read
      - team.read
      - team.write
      - request_transfers.write
      - insurance_contract.read
      - insurance_contract.write
      - card.read
      - card.write
      - bank_account.write
      - beneficiary.trust
      - webhook
      - payment_link.write
      - payment_link.read
      - sepa_direct_debit.read
      - sepa_direct_debit.write
      - terminal.read
      - terminal.write
  - SecretKey: []
paths: {}
components:
  securitySchemes:
    OAuth:
      type: oauth2
      description: >
        Bearer authorization header: `Bearer <token>`, where `<token>` is the
        access token received from the authorization server at the end of the
        [OAuth 2.0
        flow](/get-started/business-api/authentication/oauth/oauth-flow).
      flows:
        authorizationCode:
          refreshUrl: https://oauth.qonto.com/oauth2/token
          authorizationUrl: https://oauth.qonto.com/oauth2/auth
          scopes:
            attachment.read: Retrieve attachments
            attachment.write: Upload attachments and remove attachments from transactions
            bank_account.write: Create, update and close bank accounts
            beneficiary.trust: Trust SEPA beneficiaries
            card.read: Retrieve cards
            card.write: Create or update cards
            client.read: Retrieve clients
            client.write: Create clients
            client_invoice.write: Create client invoices
            client_invoices.read: Retrieve client invoices and credit notes
            einvoicing.read: Retrieve e-invoicing settings
            embed_auth_link.write: Create Embed auth links
            insurance_contract.read: Retrieve insurance contracts
            insurance_contract.write: Create and update insurance contracts
            internal_transfer.write: >-
              Create internal transfers (between 2 Qonto accounts of the same
              organization)
            international_transfer.write: Create international transfers
            membership.read: Retrieve the authentified membership
            membership.write: Invite team members
            offline_access: Retrieve a refresh token
            organization.read: >-
              Retrieve organization, bank accounts, transactions, transfers,
              beneficiaries, labels, memberships, requests & statements
            payment.write: Create external transfers and untrust beneficiaries
            payment_link.read: >-
              Retrieve payment links, their payments, and the available payment
              methods
            payment_link.write: >-
              Connect to the payment links provider, create and deactivate
              payment links
            product.read: Retrieve products
            product.write: Create products
            request_cards.write: Create card requests
            request_review.write: Approve or decline requests
            request_transfers.write: Create transfer requests
            sepa_direct_debit.read: View SEPA Direct Debit payments
            sepa_direct_debit.write: Manage SEPA Direct Debit payments
            supplier_invoice.read: Retrieve supplier invoices
            supplier_invoice.write: Create supplier invoices
            team.read: Retrieve teams
            team.write: Create teams
            terminal.read: View your payment terminals
            terminal.write: Configure your terminals and initiate payments
            webhook: >-
              Receive a notification each time a particular event occurs in
              Qonto
          tokenUrl: https://oauth.qonto.com/oauth2/token
    SecretKey:
      type: apiKey
      description: cf. [API key](/get-started/business-api/authentication/api-key)
      name: Authorization
      in: header

````