Authorization: Bearer ********************{
"data": {
"attributes": {
"boltName": "My New Bolt",
"location": "oslo-1",
"paymentIntent": {
},
"domain": "example.com",
"installWordpress": true,
"period": "month",
"currency": "EUR",
"trial": false,
"items": [
],
"coupon": "SUMMER2026"
}
}
}curl --location --request POST 'https://api.servebolt.iov1/order-checkout' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"attributes": {
"boltName": "My New Bolt",
"location": "oslo-1",
"paymentIntent": {
},
"domain": "example.com",
"installWordpress": true,
"period": "month",
"currency": "EUR",
"trial": false,
"items": [
],
"coupon": "SUMMER2026"
}
}
}'