Skip to main content
POST
/
v1
/
admin
/
trips
Create a trip
curl --request POST \
  --url https://{operatorDomain}/v1/admin/trips \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "currency": "EUR",
  "name": "Honeymoon 2026"
}
'
{
  "data": {
    "envelopeId": "trip_01J9",
    "status": "draft",
    "currency": "EUR",
    "components": [
      {}
    ]
  }
}

Authorizations

Authorization
string
header
required

Staff session or API token issued by your Voyant app.

Body

application/json
currency
string
Example:

"EUR"

name
string
Example:

"Honeymoon 2026"

Response

200 - application/json

Created trip

data
object