---
title: "Mark a stop as \"arrived\""
method: POST
path: "/stops/transition"
tags: ["Stops", "Shipper"]
---

# Mark a stop as "arrived"

`POST /stops/transition`

Marks a stop as "arrived". `status`, `stopId`, and `shipmentReference` are required. The only acceptable value for `status` is `arrived` (see example request body). If `date` is not provided, the current time will be used as the arrival time.
Admins, shippers, carriers, and drivers are authorized to use this API endpoint.

## Request body

- ArriveAtStopRequest
  - `shipmentReference` string, required
  - `stopId` string, required
  - `status` string, required
  - `meta` object
    - `date` string

## Response `200`

Status Code 200:  Successful Response - the request was successful!

- ArriveAtStopResponse
  - `success` boolean
  - `data` object
    - `shipmentReference` string
    - `status` string
    - `stopId` string
    - `meta` object
      - `date` string

## Other responses

- `400` — Status Code 400: Bad Request Response - the request header and/or body is invalid
- `500` — Status Code 500: Internal Server Error Response - there's a problem with the Public API service

---

[API](https://skmtc.net/cargomatic/apis/cargomatic-public-api.md) · [All operations](https://skmtc.net/cargomatic/apis/cargomatic-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cargomatic/cargomatic-public-api/revisions/4aa7f4326443/schema)
