# Get vehicle sizes by posting type

Endpoint: GET /v2/reference/vehicle-sizes
Version: v2
Security: OrgTokenBearer

## Query parameters:

  - `PostingType` (string, required)
    "E" for Equipment or "L" for Load. Load postings exclude the "Both" (TL/LTL) size.

## Response 200 fields (application/json):

  - `id` (integer)
    Unique row identifier for this vehicle size.

  - `detail` (string)
    Human-readable name ("TL", "LTL", or "Both").

  - `code` (string)
    Single-letter code ("T" for TL, "L" for LTL, "B" for Both).

  - `postingType` (string)
    Echoes the requested postingType query parameter back ("E" or "L").

  - `value` (integer)
    Same value as Id, included for convenience.

## Response 400 fields (application/json):

  - `type` (string)

  - `title` (string)

  - `status` (integer)

  - `instance` (string)

  - `traceId` (string)

  - `detail` (string)
    the details of the error

  - `errors` (array)

  - `errors.name` (string)
    the name of the error or property of the dto that caused the error

  - `errors.reason` (string)
    the reason for the error

  - `errors.code` (string)
    the code of the error

  - `errors.severity` (string)
    the severity of the error

