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

# Get TMS

> Get detailed information about a specific TMS.



## OpenAPI

````yaml https://api.catenatelematics.com/v2/orgs/openapi.json get /v2/orgs/tms/{tms_id}
openapi: 3.1.0
info:
  title: Telematics Organizations Service - REST API
  description: Organizations Service REST API
  version: 0.1.0
servers:
  - url: https://api.catenatelematics.com
    description: Catena Telematics API
security: []
tags:
  - name: Invitations
    description: >-
      Send invitations to onboard fleets. Create magic links, track invitation
      status, and manage the fleet onboarding workflow.
  - name: Share Agreements
    description: >-
      Manage data sharing agreements with fleets. Monitor agreement status,
      update terms, and control access to fleet telematics data.
  - name: Fleets
    description: >-
      View and manage fleet profiles. Access fleet information for fleets you've
      successfully onboarded through invitations.
  - name: Partners
    description: >-
      Manage your partner organization profile. Update company information,
      websites, and service categories visible to fleets.
  - name: TSPs
    description: >-
      Browse available Telematics Service Providers (TSPs). View supported
      integrations that fleets can connect to share their telematics data.
  - name: TMS
    description: >-
      Browse available Transportation Management Systems (TMS). View supported
      integrations that fleets can connect to share their transportation
      management data.
  - name: TMS Accounts
    description: >-
      Manage TMS accounts (tenants). Register and administer accounts that
      connect to Transportation Management Systems.
  - name: Usage
    description: >-
      Review partner data consumption. Fetch monthly usage rollups and
      per-entity usage rows for billing and reporting.
paths:
  /v2/orgs/tms/{tms_id}:
    get:
      tags:
        - TMS
      summary: Get TMS
      description: Get detailed information about a specific TMS.
      operationId: get_tms
      parameters:
        - name: tms_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Tms Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TmsRead'
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequest'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Unauthorized'
          description: Unauthorized
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Forbidden'
          description: Forbidden
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFound'
          description: Not Found
        '405':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MethodNotAllowed'
          description: Method Not Allowed
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Conflict'
          description: Conflict
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnprocessableEntity'
          description: Unprocessable Entity
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TooManyRequests'
          description: Too Many Requests
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerError'
          description: Internal Server Error
components:
  schemas:
    TmsRead:
      properties:
        name:
          type: string
          title: Name
        source_name:
          $ref: '#/components/schemas/TmsEnum'
          description: TMS enum identifier for API references
        conn_type:
          $ref: '#/components/schemas/ConnectionTypeEnum'
          title: Connection Type
          description: The type of connection used to authenticate with the TMS
        is_sandbox:
          type: boolean
          title: Is Sandbox
          description: >-
            Indicates whether the TMS is a sandbox integration for testing
            purposes.
          default: false
        id:
          type: string
          format: uuid
          title: Id
          description: Unique Catena TMS identifier
        slug:
          type: string
          title: Slug
          description: URL-friendly TMS identifier
        created_at:
          type: string
          format: date-time
          title: Created At
          description: When the TMS was added to Catena
        updated_at:
          type: string
          format: date-time
          title: Updated At
          description: Last modification timestamp
      type: object
      required:
        - name
        - source_name
        - conn_type
        - id
        - slug
        - created_at
        - updated_at
      title: TmsRead
      description: |-
        API model for reading a TMS

        Contains TMS details visible to fleets and partners.
    BadRequest:
      properties:
        code:
          type: integer
          title: Code
          default: 400
        message:
          type: string
          title: Message
          default: Bad Request
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: BadRequest
    Unauthorized:
      properties:
        code:
          type: integer
          title: Code
          default: 401
        message:
          type: string
          title: Message
          default: Unauthorized
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: Unauthorized
    Forbidden:
      properties:
        code:
          type: integer
          title: Code
          default: 403
        message:
          type: string
          title: Message
          default: Forbidden
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: Forbidden
    NotFound:
      properties:
        code:
          type: integer
          title: Code
          default: 404
        message:
          type: string
          title: Message
          default: Not Found
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: NotFound
    MethodNotAllowed:
      properties:
        code:
          type: integer
          title: Code
          default: 405
        message:
          type: string
          title: Message
          default: Method Not Allowed
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: MethodNotAllowed
    Conflict:
      properties:
        code:
          type: integer
          title: Code
          default: 409
        message:
          type: string
          title: Message
          default: Conflict
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: Conflict
    UnprocessableEntity:
      properties:
        code:
          type: integer
          title: Code
          default: 422
        message:
          type: string
          title: Message
          default: Invalid Request Body
        detail:
          anyOf:
            - items:
                $ref: '#/components/schemas/ValidationErrorDetail'
              type: array
            - type: 'null'
          title: Detail
      type: object
      title: UnprocessableEntity
    TooManyRequests:
      properties:
        code:
          type: integer
          title: Code
          default: 429
        message:
          type: string
          title: Message
          default: Too Many Requests
        detail:
          anyOf:
            - $ref: '#/components/schemas/RetryAfterDetail'
            - type: 'null'
      type: object
      title: TooManyRequests
    InternalServerError:
      properties:
        message:
          type: string
          title: Message
          default: Internal Server Error
      type: object
      title: InternalServerError
    TmsEnum:
      type: string
      enum:
        - tms_simulator
      title: TmsEnum
      description: >-
        Enum for TMS (Transportation Management System) providers.


        Kept separate from TspEnum: TMS providers are not TSPs, and conflating

        them would corrupt registry/validation paths that assume TspEnum
        membership.
    ConnectionTypeEnum:
      type: string
      enum:
        - access_token
        - api_auth
        - api_basic
        - api_key
        - azuga_slc
        - bouncie
        - client_id_secret
        - company_access
        - company_id
        - database
        - driver_tech
        - ez_lynk
        - ez_lynk_access
        - ezlogz
        - factor_eld
        - fleetup
        - fleetup_slc
        - geotab
        - isaac
        - motive
        - oauth1
        - oauth2
        - oauth2_initiate
        - oauth2_private_key
        - ontime
        - optimus_tracker
        - private_key
        - route_one_eld
        - s3
        - samsara
        - switchboard
        - spireon_slc
        - sftp
        - token
        - tt_creds
        - truckx_creds
        - truckx_slc
        - txt_eld_slc
        - verizon_connect
        - verizon_connect_slc
      title: ConnectionTypeEnum
      description: Connection Types
    ValidationErrorDetail:
      properties:
        path:
          type: string
          title: Path
        input:
          type: string
          title: Input
        message:
          type: string
          title: Message
        error_type:
          type: string
          title: Error Type
      type: object
      required:
        - path
        - input
        - message
        - error_type
      title: ValidationErrorDetail
    RetryAfterDetail:
      properties:
        retry_after_seconds:
          type: integer
          title: Retry After Seconds
        message:
          type: string
          title: Message
      type: object
      required:
        - retry_after_seconds
        - message
      title: RetryAfterDetail

````