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

# 🧪 Fleet 360

> Retrieve the operating authorities (common/contract/broker) held by the fleet linked to the given identifier. Identify the fleet using exactly one of `fleet_id`, `fleet_ref`, `connection_id`, `vehicle_id`, or `vin`. Returns an empty list if the fleet is accessible but not yet linked to a SAFER record.

<Callout icon="vial" color="#FFC107" iconType="solid"><strong>Provisional endpoint</strong><br />This endpoint is available for early access. The core schema is stable, but minor details — such as field names or added fields — may change before it becomes generally available. Backward compatibility is not guaranteed.<br /><br /><em>See <a href="/api-reference/stability-versioning">API Stability & Versioning</a> for details on provisional endpoints.</em></Callout>


## OpenAPI

````yaml https://api.catenatelematics.com/v2/intelligence/openapi.json get /v2/intelligence/fleet-360/authorities
openapi: 3.1.0
info:
  title: Telematics Intelligence Service - REST API
  description: Telematics Intelligence Service REST API.
  version: 0.1.0
servers:
  - url: https://api.catenatelematics.com
    description: Catena Intelligence API
security: []
tags:
  - name: Analytics
    description: >-
      Endpoints providing analytical insights and aggregated data for vehicles,
      fleets, drivers, and trailers.
  - name: Benchmarks
    description: >-
      Endpoints providing cross-fleet benchmark data. A vehicle's metrics are
      ranked against a cohort of peer vehicles drawn from the full Catena fleet
      population. Cohort statistics are k-anonymised: percentile and cohort
      counts are suppressed when the cohort covers too few distinct fleets to
      protect individual fleet privacy.
paths:
  /v2/intelligence/fleet-360/authorities:
    get:
      tags:
        - Fleet 360
      summary: List a fleet's SAFER operating authorities
      description: >-
        Retrieve the operating authorities (common/contract/broker) held by the
        fleet linked to the given identifier. Identify the fleet using exactly
        one of `fleet_id`, `fleet_ref`, `connection_id`, `vehicle_id`, or `vin`.
        Returns an empty list if the fleet is accessible but not yet linked to a
        SAFER record.
      operationId: list_fleet_360_authorities
      parameters:
        - name: fleet_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            description: >-
              Look up the fleet using Catena's fleet ID. *For your own fleet
              identifiers, use `fleet_ref` instead*
            title: Fleet Id
          description: >-
            Look up the fleet using Catena's fleet ID. *For your own fleet
            identifiers, use `fleet_ref` instead*
        - name: fleet_ref
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Look up the fleet using your organization's fleet reference
              identifier.
            title: Fleet Ref
          description: >-
            Look up the fleet using your organization's fleet reference
            identifier.
        - name: connection_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            description: >-
              Look up the fleet using a specific provider connection. This is
              the UUID assigned by Catena when your fleet connects to a TSP.
            title: Connection Id
          description: >-
            Look up the fleet using a specific provider connection. This is the
            UUID assigned by Catena when your fleet connects to a TSP.
        - name: vehicle_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            description: >-
              Look up the fleet that operates this vehicle, using Catena's
              vehicle ID.
            title: Vehicle Id
          description: >-
            Look up the fleet that operates this vehicle, using Catena's vehicle
            ID.
        - name: vin
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Look up the fleet that operates the vehicle with this VIN.
            title: Vin
          description: Look up the fleet that operates the vehicle with this VIN.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SaferFleetAuthorityRead'
                title: Response List Fleet 360 Authorities
        '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
        '501':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotImplementedResponse'
          description: Not Implemented
      security:
        - Bearer:
            - telematics:read
components:
  schemas:
    SaferFleetAuthorityRead:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        registry:
          $ref: '#/components/schemas/SaferFleetRegistryEnum'
        authority_number:
          type: string
          title: Authority Number
        fleet_registry_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Fleet Registry Id
        legal_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Legal Name
        dba_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Dba Name
        common_status:
          anyOf:
            - $ref: '#/components/schemas/AuthorityStatusEnum'
            - type: 'null'
        contract_status:
          anyOf:
            - $ref: '#/components/schemas/AuthorityStatusEnum'
            - type: 'null'
        broker_status:
          anyOf:
            - $ref: '#/components/schemas/AuthorityStatusEnum'
            - type: 'null'
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - registry
        - authority_number
        - created_at
        - updated_at
      title: SaferFleetAuthorityRead
      description: API read model for an operating authority record.
    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
    NotImplementedResponse:
      properties:
        code:
          type: integer
          title: Code
          default: 501
        message:
          type: string
          title: Message
          default: Not Implemented
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: NotImplementedResponse
    SaferFleetRegistryEnum:
      type: string
      enum:
        - fmcsa
      title: SaferFleetRegistryEnum
      description: Registry/authority that maintains the carrier record
    AuthorityStatusEnum:
      type: string
      enum:
        - active
        - inactive
        - not_held
      title: AuthorityStatusEnum
      description: >-
        Operating authority status for a specific authority type
        (common/contract/broker)
    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
  securitySchemes:
    Bearer:
      type: oauth2
      flows:
        clientCredentials:
          refreshUrl: >-
            https://auth.catenatelematics.com/realms/catena/protocol/openid-connect/token
          scopes: {}
          tokenUrl: >-
            https://auth.catenatelematics.com/realms/catena/protocol/openid-connect/token
        authorizationCode:
          refreshUrl: >-
            https://auth.catenatelematics.com/realms/catena/protocol/openid-connect/token
          scopes: {}
          authorizationUrl: >-
            https://auth.catenatelematics.com/realms/catena/protocol/openid-connect/auth
          tokenUrl: >-
            https://auth.catenatelematics.com/realms/catena/protocol/openid-connect/token

````