> ## 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.

# List conversations

> Returns conversations ordered by most recent message activity. Archived and blocked conversations are included unless filtered out.



## OpenAPI

````yaml /openapi/partner.yaml get /conversations
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:
  /conversations:
    get:
      tags:
        - Conversations
      summary: List conversations
      description: >-
        Returns conversations ordered by most recent message activity. Archived
        and blocked conversations are included unless filtered out.
      operationId: listPartnerConversations
      parameters:
        - $ref: '#/components/parameters/UpdatedAfter'
        - name: creatorId
          in: query
          description: Return the conversation with this creator, if one exists.
          schema:
            type: string
        - $ref: '#/components/parameters/IsUnread'
        - $ref: '#/components/parameters/IsArchived'
        - $ref: '#/components/parameters/IsBlocked'
        - $ref: '#/components/parameters/Search'
        - name: include
          in: query
          description: Set to `creator` to include creator details.
          schema:
            type: string
            enum:
              - creator
        - $ref: '#/components/parameters/Limit250'
        - $ref: '#/components/parameters/Cursor'
      responses:
        '200':
          description: A page of conversations.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PartnerConversationPage'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  parameters:
    UpdatedAfter:
      name: updatedAfter
      in: query
      description: >-
        Include conversations with message activity on or after this date or
        timestamp.
      schema:
        type: string
    IsUnread:
      name: isUnread
      in: query
      schema:
        type: boolean
    IsArchived:
      name: isArchived
      in: query
      schema:
        type: boolean
    IsBlocked:
      name: isBlocked
      in: query
      schema:
        type: boolean
    Search:
      name: q
      in: query
      description: Case-insensitive search across names and message text.
      schema:
        type: string
        minLength: 2
        maxLength: 200
    Limit250:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 250
        default: 50
    Cursor:
      name: cursor
      in: query
      description: Opaque cursor returned by the previous page.
      schema:
        type: string
  schemas:
    PartnerConversationPage:
      type: object
      required:
        - data
        - pagination
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/PartnerConversation'
        pagination:
          $ref: '#/components/schemas/Pagination'
    PartnerConversation:
      type: object
      required:
        - id
        - creatorId
        - isUnread
        - isArchived
        - isBlocked
        - lastActivityAt
        - createdAt
      properties:
        id:
          type: string
        creatorId:
          type: string
        isUnread:
          type: boolean
        isArchived:
          type: boolean
        isBlocked:
          type: boolean
        lastActivityAt:
          type: string
          format: date-time
        createdAt:
          type: string
          format: date-time
        creator:
          $ref: '#/components/schemas/Creator'
    Pagination:
      type: object
      required:
        - hasMore
      properties:
        nextCursor:
          type:
            - string
            - 'null'
        hasMore:
          type: boolean
    Error:
      type: object
      additionalProperties: false
      required:
        - error
      properties:
        error:
          type: string
    Creator:
      type: object
      required:
        - id
        - displayName
        - country
        - note
        - labels
      properties:
        id:
          type: string
        displayName:
          type: string
        country:
          type:
            - string
            - 'null'
        note:
          type:
            - string
            - 'null'
          description: Plain-text private workspace note.
        labels:
          type: array
          items:
            $ref: '#/components/schemas/Label'
        channels:
          type: array
          items:
            $ref: '#/components/schemas/Channel'
    Label:
      type: object
      required:
        - id
        - name
      properties:
        id:
          type: string
        name:
          type: string
        color:
          type: string
        position:
          type: string
    Channel:
      type: object
      required:
        - id
        - title
        - platformType
      properties:
        id:
          type: string
        title:
          type: string
        url:
          type:
            - string
            - 'null'
          format: uri
        platformType:
          type: string
        metrics:
          anyOf:
            - $ref: '#/components/schemas/Metrics'
            - type: 'null'
    Metrics:
      type: object
      properties:
        reach:
          type:
            - integer
            - 'null'
        views:
          type:
            - integer
            - 'null'
        engagement:
          type:
            - integer
            - 'null'
        engagementRate:
          type:
            - number
            - 'null'
        metricsUpdatedAt:
          type: string
          format: date-time
  responses:
    BadRequest:
      $ref: '#/components/responses/Error400'
    Unauthorized:
      $ref: '#/components/responses/Error401'
    Forbidden:
      $ref: '#/components/responses/Error403'
    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.
    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'
  headers:
    RetryAfter:
      description: Seconds to wait before retrying.
      schema:
        type: integer
        minimum: 1
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Passionfroot API key
      description: Create an API key from Settings → API in an approved Partner workspace.

````