Skip to main content
POST
/
movements
/
{movementId}
/
scheduleStop
cURL
curl --request POST \
  --url https://api.vooma.ai/v0/movements/{movementId}/scheduleStop \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "stopIndex": 123
}
'
{
  "success": true,
  "error": "<string>"
}
Beta Feature: This functionality is currently in beta. You may experience changes or limited support as we continue to improve it.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
stopIndex
number<double>
required

This is a 0-based index of the stop to schedule. We count stops regardless of whether a stop is a pickup or delivery.

Response

200 - application/json

Ok

success
boolean
required
error
string