# List equipment postings for a customer

Endpoint: GET /v2/postings/equipment
Version: v2
Security: OrgTokenBearer

## Response 200 fields (application/json):

  - `token` (integer)
    Unique identifier for this posting. Use this to reference the posting in later calls (e.g. GET/DELETE by token).

  - `dateAvail` (string)
    Date/time the equipment becomes available, in UTC.

  - `srceCity` (string)
    Source city name.

  - `srceSt` (string)
    Source state/province code.

  - `srceLong` (number)
    Source city longitude.

  - `srceLat` (number)
    Source city latitude.

  - `srceRadius` (integer)
    Search radius in miles around the source city, as originally requested.

  - `destCity` (string)
    Destination city name.

  - `destSt` (string)
    Destination state/province code.

  - `destLong` (number)
    Destination city longitude.

  - `destLat` (number)
    Destination city latitude.

  - `destRadius` (integer)
    Search radius in miles around the destination city, as originally requested.

  - `vehicleSize` (string)
    Single-letter vehicle size code — see GET /v2/reference/vehicle-sizes.

  - `vehicleType` (string)
    Single-letter vehicle type code(s) — see GET /v2/reference/vehicle-types.

  - `comment` (string)
    Free-text comment on the posting, if any.

  - `postingAttrib` (string)
    Single-letter vehicle attribute code(s), if any — see GET /v2/reference/vehicle-attributes.

  - `createdOn` (string)
    Date/time the posting was created, in UTC.

  - `pStatus` (string)
    Posting status: "O" (Open) or "P" (Pending).

  - `corridor` (string)
    Corridor matching setting: "C" (corridor) or "R" (radius). Automatically "R" when source and destination were the same city at creation.

  - `initialLeadCount` (integer)
    Number of matching leads found at the moment this posting was created.

  - `length` (integer)
    Equipment length, if specified.

  - `weight` (integer)
    Equipment weight capacity, if specified.

  - `rate` (number)
    Rate amount, if specified.

  - `currency` (integer)
    Currency code: 0 = USD, 1 = CAD.
    Enum: 0, 1

  - `email` (string)
    Contact email for this posting.

  - `custCD` (string)
    Loadlink customer code that owns this posting.

  - `postMode` (string)
    Posting mode. Always "A" for postings created via this API.

