Skip to main content
POST
/
v1
/
public
/
trips
Create a trip (public)
curl --request POST \
  --url https://{operatorDomain}/v1/public/trips \
  --header 'Content-Type: application/json' \
  --data '
{
  "currency": "EUR",
  "name": "Honeymoon 2026"
}
'
{
  "data": {
    "envelopeId": "trip_01J9",
    "status": "draft",
    "currency": "EUR"
  }
}

Body

application/json
currency
string
Example:

"EUR"

name
string
Example:

"Honeymoon 2026"

Response

200 - application/json

Created trip

data
object