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

# Create Contact

> Creates a new contact record in FieldIU.



## OpenAPI

````yaml POST /api/v1/contacts
openapi: 3.0.1
info:
  title: Fieldiu Integration API
  description: Internal integration endpoints for Fieldiu.
  version: v1
  contact:
    name: Fieldiu Support
  license:
    name: Proprietary
servers:
  - url: https://integration.fieldiu.online
security:
  - ApiKeyAuth: []
    OrgIdAuth: []
paths:
  /api/v1/contacts:
    post:
      tags:
        - Contacts
      summary: Create Contact
      description: Creates a new contact record in FieldIU.
      operationId: createContact
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ContactRequest'
      responses:
        '200':
          description: Contact created successfully
components:
  schemas:
    ContactRequest:
      type: object
      properties:
        firstName:
          type: string
          nullable: true
          description: First name
        lastName:
          type: string
          nullable: true
          description: Last name
        email:
          type: string
          nullable: true
          description: Email address
        mobilePhone:
          type: string
          nullable: true
          description: Mobile phone number
        businessPhone:
          type: string
          nullable: true
          description: Business phone number
        accountId:
          type: string
          nullable: true
          description: ID of the linked account
        buildingLocation:
          type: string
          nullable: true
          description: Building or location name
        street1:
          type: string
          nullable: true
          description: Street address line 1
        street2:
          type: string
          nullable: true
          description: Street address line 2
        city:
          type: string
          nullable: true
          description: City
        postalCode:
          type: string
          nullable: true
          description: Postal / ZIP code
        state:
          type: string
          nullable: true
          description: State or province
        country:
          type: string
          nullable: true
          description: Country
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Your organization's API key
    OrgIdAuth:
      type: apiKey
      in: header
      name: X-ORG-ID
      description: Your organization's identifier

````