curl --request POST \
--url https://api.example.com/api/personal/trips/bulk \
--header 'Content-Type: application/json' \
--data '
{
"trips": [
{
"destination": "<string>",
"best_time": "<string>",
"estimated_budget_usd": 123,
"notes": "<string>",
"region": "<string>",
"status": "someday"
}
]
}
'{
"total": 123,
"trips": [
{
"created_at": "<string>",
"destination": "<string>",
"id": "<string>",
"status": "someday",
"updated_at": "<string>",
"best_time": "<string>",
"estimated_budget_usd": 123,
"notes": "<string>",
"region": "<string>"
}
]
}curl --request POST \
--url https://api.example.com/api/personal/trips/bulk \
--header 'Content-Type: application/json' \
--data '
{
"trips": [
{
"destination": "<string>",
"best_time": "<string>",
"estimated_budget_usd": 123,
"notes": "<string>",
"region": "<string>",
"status": "someday"
}
]
}
'{
"total": 123,
"trips": [
{
"created_at": "<string>",
"destination": "<string>",
"id": "<string>",
"status": "someday",
"updated_at": "<string>",
"best_time": "<string>",
"estimated_budget_usd": 123,
"notes": "<string>",
"region": "<string>"
}
]
}