Update a specific order's cart item and process the order again.
Request
Add parameter in header API-key
Example:API-key: ********************
Body Params application/jsonRequired
{
"cart_id": 1234,
"domain": {
"profile": {
"owner": 100000,
"admin": 100000,
"tech": 100000,
"billing": 100000,
"reseller": 100000
},
"nameserver": "default-mijnhost",
"dns_template_id": 12345,
"transfer_code": "123-456-789"
},
"hosting": {
"domain": "domain.com"
}
}
Request Code Samples
curl --location --request PUT 'https://mijn.host/api/v2/orders/' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"cart_id": 1234,
"domain": {
"profile": {
"owner": 100000,
"admin": 100000,
"tech": 100000,
"billing": 100000,
"reseller": 100000
},
"nameserver": "default-mijnhost",
"dns_template_id": 12345,
"transfer_code": "123-456-789"
},
"hosting": {
"domain": "domain.com"
}
}'
Responses
application/json {
"status": "string",
"status_description": "string"
}
Modified at 2026-01-27 13:31:48