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

# List Contact Properties

> Returns contact property definitions configured for the authenticated team.



## OpenAPI

````yaml /openapi.json get /contact-properties
openapi: 3.1.0
info:
  title: Dugble API
  description: >-
    Programmatic access to Dugble email, SMS, sending infrastructure, contacts,
    audiences, suppressions, and broadcasts. Authenticate with a team token sent
    as a Bearer token.
  version: 1.0.0
  contact:
    name: Dugble Support
    email: support@dugble.com
servers:
  - url: https://api.dugble.com
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Email
    description: Send and manage transactional emails.
  - name: SMS
    description: Send and manage SMS messages.
  - name: Domains
    description: Manage and verify sending domains.
  - name: Templates
    description: Create, version, publish, preview, and test reusable email templates.
  - name: Sender IDs
    description: Manage SMS sender IDs.
  - name: Contacts
    description: Manage contacts and their audience memberships.
  - name: Contact Properties
    description: Manage typed custom property definitions used by contacts.
  - name: Topics
    description: Manage contact subscription topics.
  - name: Segments
    description: Manage audience segments.
  - name: Suppressions
    description: Manage suppressed email recipients.
  - name: Broadcasts
    description: Create, schedule, and analyze email broadcasts.
paths:
  /contact-properties:
    get:
      tags:
        - Contact Properties
      summary: List Contact Properties
      description: >-
        Returns contact property definitions configured for the authenticated
        team.
      operationId: listContactProperties
      parameters:
        - $ref: '#/components/parameters/CursorLimit'
        - $ref: '#/components/parameters/After'
        - $ref: '#/components/parameters/Before'
      responses:
        '200':
          description: Contact properties retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContactPropertyListEnvelope'
        default:
          $ref: '#/components/responses/Error'
components:
  parameters:
    CursorLimit:
      name: limit
      in: query
      required: false
      description: >-
        Maximum number of records to return. Defaults to 20 and must be between
        1 and 100.
      schema:
        type: integer
        format: int32
        minimum: 1
        maximum: 100
        default: 20
    After:
      name: after
      in: query
      required: false
      description: Return records after this UUID cursor. Cannot be combined with before.
      schema:
        type: string
        format: uuid
    Before:
      name: before
      in: query
      required: false
      description: Return records before this UUID cursor. Cannot be combined with after.
      schema:
        type: string
        format: uuid
  schemas:
    ContactPropertyListEnvelope:
      type: object
      required:
        - success
        - data
      properties:
        success:
          type: boolean
          enum:
            - true
        data:
          $ref: '#/components/schemas/ContactPropertyList'
    ContactPropertyList:
      type: object
      required:
        - object
        - has_more
        - data
      properties:
        object:
          type: string
          enum:
            - list
        has_more:
          type: boolean
        data:
          type: array
          items:
            $ref: '#/components/schemas/ContactPropertyResource'
    ErrorEnvelope:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              enum:
                - BAD_REQUEST
                - UNAUTHORIZED
                - FORBIDDEN
                - STEP_UP_REQUIRED
                - NOT_FOUND
                - CONFLICT
                - PAYMENT_REQUIRED
                - PAYLOAD_TOO_LARGE
                - UNPROCESSABLE_ENTITY
                - TOO_MANY_REQUESTS
                - INTERNAL_ERROR
                - SERVICE_UNAVAILABLE
            message:
              type: string
    ContactPropertyResource:
      type: object
      required:
        - object
        - id
        - key
        - type
        - created_at
      properties:
        object:
          type: string
          enum:
            - contact_property
        id:
          type: string
          format: uuid
        key:
          type: string
        type:
          type: string
          enum:
            - string
            - number
        fallback_value:
          oneOf:
            - type: string
            - type: number
          description: Configured fallback value. Omitted when no fallback is set.
        created_at:
          type: string
          format: date-time
  responses:
    Error:
      description: >-
        The request failed. See the HTTP status and structured error code for
        the category.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Team token
      description: >-
        Pass a Dugble team token in the Authorization header as Bearer <token>.
        Team token secrets use the dgb_team_ prefix.

````