TravelyfeHelp
DevelopersAPI ReferenceDays

Get A Day

GET
/v1/itinerary/{id}/day/{dayId}

One day with its stops.

AuthorizationBearer <token>

A Travelyfe access token.

In: header

Path Parameters

id*string

The itinerary id (UUID).

Formatuuid
dayId*string

The day id.

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/itinerary/497f6eca-6276-4993-bfeb-53cbbbba6f08/day/string"
{  "id": "string",  "title": "string",  "summary": "string",  "imageURL": "http://example.com",  "stops": [    {      "id": "string",      "name": "string",      "address": "string",      "category": "string",      "coordinate": {        "latitude": 0,        "longitude": 0      },      "startTime": "string",      "durationMinutes": 0,      "note": "string",      "phone": "string",      "bookingURL": "http://example.com"    }  ]}