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

# Send an inquiry

> Sends initial outreach to a creator and creates a conversation and inquiry collaboration when needed.



## OpenAPI

````yaml /openapi/partner.yaml post /inquiries
openapi: 3.1.0
info:
  title: Passionfroot Partner API
  version: 1.0.0-alpha
  description: >
    Access a brand workspace's creators, collaborations, placements, proposals,
    and conversations.

    The API is in alpha. Every operation is restricted to the organization that
    owns the API key.
servers:
  - url: https://workspace.passionfroot.me/api/v1
security:
  - bearerAuth: []
tags:
  - name: Placements
  - name: Creators
  - name: Collaborations
  - name: Conversations
  - name: Proposals
paths:
  /inquiries:
    post:
      tags:
        - Conversations
      summary: Send an inquiry
      description: >-
        Sends initial outreach to a creator and creates a conversation and
        inquiry collaboration when needed.
      operationId: sendPartnerInquiry
      parameters:
        - $ref: '#/components/parameters/IdempotencyKey'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: false
              required:
                - creatorId
                - text
              properties:
                creatorId:
                  type: string
                  format: uuid
                  description: Creator receiving the inquiry.
                text:
                  type: string
                  minLength: 1
                  maxLength: 10000
                campaignId:
                  type: string
                  format: uuid
                  description: Optional organization campaign.
            example:
              creatorId: 418f65a3-8981-4b31-aadf-9b399ab64475
              text: We would love to work together on our fall launch.
      responses:
        '201':
          description: Inquiry sent.
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    type: object
                    required:
                      - conversationId
                      - messageId
                      - collaborationId
                    properties:
                      conversationId:
                        type: string
                      messageId:
                        type: string
                      collaborationId:
                        type: string
              example:
                data:
                  conversationId: conv_abc
                  messageId: msg_abc
                  collaborationId: collab_abc
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '422':
          $ref: '#/components/responses/UnprocessableEntity'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/ServerError'
components:
  parameters:
    IdempotencyKey:
      name: Idempotency-Key
      in: header
      description: >-
        Unique key for one logical write. Reuse the key and identical body for
        retries.
      schema:
        type: string
        minLength: 1
        maxLength: 255
  responses:
    BadRequest:
      $ref: '#/components/responses/Error400'
    Unauthorized:
      $ref: '#/components/responses/Error401'
    Forbidden:
      $ref: '#/components/responses/Error403'
    NotFound:
      $ref: '#/components/responses/Error404'
    Conflict:
      $ref: '#/components/responses/Error409'
    UnprocessableEntity:
      $ref: '#/components/responses/Error422'
    TooManyRequests:
      description: Rate limit exceeded.
      headers:
        Retry-After:
          $ref: '#/components/headers/RetryAfter'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Too many requests, please try again later.
    ServerError:
      $ref: '#/components/responses/Error500'
    Error400:
      description: Invalid parameters or body.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Error401:
      description: Missing, invalid, expired, or revoked API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Error403:
      description: The key lacks access or the required scope.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Error404:
      description: Resource not found or not accessible to this organization.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Error409:
      description: >-
        The operation conflicts with current state or an identical write is in
        progress.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Error422:
      description: The request is well formed but cannot be processed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Error500:
      description: Unexpected server failure. Re-read state before retrying a write.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  headers:
    RetryAfter:
      description: Seconds to wait before retrying.
      schema:
        type: integer
        minimum: 1
  schemas:
    Error:
      type: object
      additionalProperties: false
      required:
        - error
      properties:
        error:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Passionfroot API key
      description: Create an API key from Settings → API in an approved Partner workspace.

````