Amounts in this command’s output are already in major units — plain
decimals with no
decimal_places field. Display them as-is, do not
divide. See Money & prices.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Fetch the full lifecycle state of a trip, items, travelers, quote, fulfillment, and any booking references
decimal_places field. Display them as-is, do not
divide. See Money & prices.jinko trip-status [options]
| Flag | Required | Description | Default |
|---|---|---|---|
--trip-id <id> | Yes | trip ID |
# Full trip state: items, travelers, quote, fulfillment, bookings
jinko trip-status --trip-id 42
# Poll until fulfillment is terminal
while true; do
status=$(jinko trip-status --trip-id 42 --format json | jq -r '.fulfillment.status')
echo "Status: $status"
[[ "$status" == "completed" || "$status" == "failed" ]] && break
sleep 5
done
