curl --request PUT \
--url https://api.thundercompute.com:8443/v1/billing/details \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{}'{
"address": {
"city": "<string>",
"country": "<string>",
"line1": "<string>",
"line2": "<string>",
"postal_code": "<string>",
"state": "<string>"
},
"name": "<string>",
"tax_ids": [
{
"id": "<string>",
"type": "<string>",
"value": "<string>"
}
]
}Apply a name/address/tax-ID delta to the Stripe customer and return the refreshed saved details
curl --request PUT \
--url https://api.thundercompute.com:8443/v1/billing/details \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{}'{
"address": {
"city": "<string>",
"country": "<string>",
"line1": "<string>",
"line2": "<string>",
"postal_code": "<string>",
"state": "<string>"
},
"name": "<string>",
"tax_ids": [
{
"id": "<string>",
"type": "<string>",
"value": "<string>"
}
]
}Bearer token authentication. Provide your API token prefixed with "Bearer ", e.g. "Bearer your-api-token".
Billing details delta
The body is of type object.
Was this page helpful?