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

# Add a customer or lead manually

> Create a new lead or customer record. Resellers use this to track contacts from off-platform sources before they place an order.



## OpenAPI

````yaml https://api.offergrid.io/openapi-reseller post /reseller/customers
openapi: 3.0.0
info:
  title: OfferGrid API
  description: >-
    **Reseller API** - Browse service catalog and place orders on behalf of
    customers.


    As a reseller, you can:

    - Browse available service offerings from providers

    - Filter offers by category, price, location, and search terms

    - View detailed offer information including pricing and features

    - Place orders for customers (single or multi-provider orders)

    - Track order status and fulfillment progress

    - Cancel pending orders
  version: '1.0'
  contact: {}
servers:
  - url: https://api.offergrid.io
    description: Production
  - url: http://localhost:3000
    description: Local development
security: []
tags:
  - name: reseller-catalog
    description: 'Reseller: Browse available service offerings'
  - name: reseller-availability
    description: 'Reseller: Find offers available at a service address'
  - name: reseller-orders
    description: 'Reseller: Place and manage orders'
  - name: reseller-customers
    description: 'Reseller: Manage customers and leads'
  - name: reseller-links
    description: 'Reseller: Manage shareable customer links'
paths:
  /reseller/customers:
    post:
      tags:
        - reseller-customers
      summary: Add a customer or lead manually
      description: >-
        Create a new lead or customer record. Resellers use this to track
        contacts from off-platform sources before they place an order.
      operationId: ResellerCustomersController_create
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCustomerDto'
      responses:
        '201':
          description: Customer created
        '409':
          description: A record for this person already exists in your list
      security:
        - api-key: []
components:
  schemas:
    CreateCustomerDto:
      type: object
      properties:
        fullName:
          type: string
          example: Jane Doe
        email:
          type: string
          example: jane@example.com
        phone:
          type: string
          example: +1-555-123-4567
        addressLine1:
          type: string
          example: 123 Main St
        addressLine2:
          type: string
          example: Apt 4B
        city:
          type: string
          example: San Francisco
        state:
          type: string
          example: CA
        postalCode:
          type: string
          example: '94102'
        country:
          type: string
          example: US
        kind:
          type: string
          description: Whether to track as a lead (pre-order) or as a customer.
          enum:
            - lead
            - customer
          default: lead
        source:
          type: string
          description: Where this contact came from.
          enum:
            - order
            - link
            - api_import
            - manual
            - event
          default: manual
        notes:
          type: string
        tags:
          type: array
          items:
            type: string
        customFields:
          type: object
          description: Open-ended attributes (source URL, external IDs, etc.)
          example:
            sourceUrl: https://example.com/listing/42
      required:
        - fullName
      title: Create Customer
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Team API key for authentication. Your team role
        (provider/reseller/hybrid) determines which endpoints you can access.

````