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

# Create Card



## OpenAPI

````yaml /openapi-generated.json post /cards
openapi: 3.1.0
info:
  title: anycrm-api
  version: 0.0.1
servers: []
security: []
tags:
  - name: Customer Intelligence
    description: >-
      Company research and ICP-fit scoring — create a research run, track its
      progress, and read back scored companies as leads.
  - name: Outreach
    description: >-
      The cold-email management console — domains, mailboxes, and campaigns — as
      a thin control plane over the SalesForge stack.
  - name: AnyCard
    description: >-
      Authenticated CRUD for AnyCard, the org's digital business-card /
      lead-capture product.
  - name: AnyCard Events
    description: >-
      Event-attribution analytics for AnyCard — which captured leads converted,
      broken down by source, owner, and deal.
  - name: AnyCard Share Links
    description: >-
      Unauthenticated endpoints reached by anyone who scans a QR code or opens a
      shared AnyCard link.
  - name: AI
    description: >-
      A streaming (SSE) AI chat endpoint with account-commit actions it can take
      on the caller's behalf.
  - name: Analytics Assistant
    description: >-
      The natural-language analytics assistant — a guarded text-to-SQL loop
      (SSE) that answers ad-hoc questions over the org's CRM data as a
      least-privilege, read-only database role.
  - name: Account Readiness
    description: >-
      Account Readiness Profiles — AI-scored signals on whether an account is
      ready for outreach or expansion, computed via a Temporal workflow.
  - name: Integrations
    description: >-
      Pipedream Connect — issuing connect tokens and managing the org's
      connected third-party accounts.
  - name: Feedback
    description: >-
      User-submitted platform feedback (bug reports, feature requests) — global,
      not scoped to one organization.
  - name: Public Media
    description: >-
      Unauthenticated image reads for publicly-embeddable assets (card photos,
      inline email images) — allowlisted by key shape; everything else in the
      storage bucket stays private.
  - name: Service Health
    description: Service liveness.
paths:
  /cards:
    post:
      tags:
        - AnyCard
      summary: Create Card
      operationId: create_card_route_cards_post
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CardCreateBody'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response Create Card Route Cards Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    CardCreateBody:
      properties:
        handle:
          type: string
          maxLength: 40
          minLength: 3
          pattern: ^[a-z0-9][a-z0-9-]{1,38}[a-z0-9]$
          title: Handle
        display_name:
          type: string
          maxLength: 200
          minLength: 1
          title: Display Name
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
        company:
          anyOf:
            - type: string
            - type: 'null'
          title: Company
        pronouns:
          anyOf:
            - type: string
            - type: 'null'
          title: Pronouns
        tagline:
          anyOf:
            - type: string
              maxLength: 280
            - type: 'null'
          title: Tagline
        photo_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Photo Url
        company_logo_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Company Logo Url
        banner_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Banner Url
        theme:
          $ref: '#/components/schemas/CardThemeBody'
        fields:
          items:
            $ref: '#/components/schemas/CardFieldBody'
          type: array
          title: Fields
        is_default:
          type: boolean
          title: Is Default
          default: false
        show_anyreach_branding:
          type: boolean
          title: Show Anyreach Branding
          default: true
        notify_on_share_back:
          type: boolean
          title: Notify On Share Back
          default: true
        notify_email:
          anyOf:
            - type: string
              maxLength: 320
            - type: 'null'
          title: Notify Email
      type: object
      required:
        - handle
        - display_name
      title: CardCreateBody
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CardThemeBody:
      properties:
        primary_color:
          type: string
          title: Primary Color
          default: '#0F172A'
        accent_color:
          type: string
          title: Accent Color
          default: '#3B82F6'
        layout:
          type: string
          enum:
            - classic
            - compact
          title: Layout
          default: classic
        font:
          anyOf:
            - type: string
            - type: 'null'
          title: Font
      type: object
      title: CardThemeBody
    CardFieldBody:
      properties:
        field_type:
          type: string
          enum:
            - phone
            - email
            - url
            - address
            - social
            - custom
            - social_x
            - social_linkedin
            - social_instagram
            - social_threads
            - social_facebook
            - social_youtube
            - social_tiktok
            - social_twitch
            - social_snapchat
            - social_yelp
            - social_reddit
            - social_bluesky
            - messaging_whatsapp
            - messaging_signal
            - messaging_telegram
            - messaging_discord
            - messaging_skype
            - messaging_imessage
            - business_github
            - business_calendly
            - business_company_url
            - payment_paypal
            - payment_venmo
            - payment_cashapp
          title: Field Type
        label:
          anyOf:
            - type: string
            - type: 'null'
          title: Label
        value:
          type: string
          title: Value
          default: ''
        icon:
          anyOf:
            - type: string
            - type: 'null'
          title: Icon
        position:
          type: integer
          title: Position
          default: 0
        visibility:
          type: string
          enum:
            - public
            - on_share_back
          title: Visibility
          default: public
      type: object
      required:
        - field_type
      title: CardFieldBody
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````