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

# /realms/{realmId}/organizations/{organizationId}/vehicles



## OpenAPI

````yaml /api-reference/vehicle.openapi.json get /realms/{realmId}/organizations/{organizationId}/vehicles
openapi: 3.0.3
info:
  title: Vehicle
  version: 1.0.0
  description: >-
    Portão 3 vehicle API. Generated by tools/openapi from code (routes +
    security) and the hand-written spec (request/response bodies). Confidence
    tiers: generated:typed=6 copied:manual=0 unknown=2.
servers:
  - url: https://api.vehicle.v2.portao3.com.br/
    description: production
  - url: https://api.vehicle.dev.3pers.com.br/
    description: development
security:
  - bearerAuth: []
tags:
  - name: Vehicles
paths:
  /realms/{realmId}/organizations/{organizationId}/vehicles:
    get:
      tags:
        - Vehicles
      summary: /realms/{realmId}/organizations/{organizationId}/vehicles
      operationId: getRealmsByRealmIdOrganizationsByOrganizationIdVehicles
      parameters:
        - name: realmId
          in: path
          required: true
          schema:
            type: string
        - name: organizationId
          in: path
          required: true
          schema:
            type: string
        - name: name
          in: query
          required: false
          schema:
            type: string
            maxLength: 256
        - name: licensePlate
          in: query
          required: false
          schema:
            type: string
            maxLength: 16
        - name: status
          in: query
          required: false
          schema:
            type: array
            items:
              type: string
              enum:
                - ACTIVE
                - ARCHIVED
        - name: next
          in: query
          required: false
          schema:
            type: string
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            exclusiveMinimum: true
            maximum: 100
        - name: order
          in: query
          required: false
          schema:
            type: string
            enum:
              - ASC
              - DESC
        - name: orderBy
          in: query
          required: false
          schema:
            type: string
            enum:
              - createdAt
      responses:
        default:
          description: Undocumented response (no code type, no existing spec).
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````