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

# Get company conversations

> List conversations stamped with this company at creation time, newest activity first. Paginated via
`skip` (default 0) and `limit` (default 25, maximum 100). Conversations a contact had before being linked
to the company are not included unless they were migrated.



## OpenAPI

````yaml https://api.gleap.io/api-docs.json get /companies/{companyId}/tickets
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /companies/{companyId}/tickets:
    get:
      tags:
        - Company
      summary: Get company conversations
      description: >-
        List conversations stamped with this company at creation time, newest
        activity first. Paginated via

        `skip` (default 0) and `limit` (default 25, maximum 100). Conversations
        a contact had before being linked

        to the company are not included unless they were migrated.
      operationId: Tickets
      parameters:
        - in: path
          name: companyId
          required: true
          schema:
            type: string
        - in: header
          name: project
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                items: {}
                type: array
      security:
        - jwt: []
components:
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````