Skip to main content
PUT
/
billing
/
details
Update billing 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>",
  "partial_errors": [
    {
      "id": "<string>",
      "index": 123,
      "message": "<string>",
      "op": "<string>",
      "type": "<string>",
      "value": "<string>"
    }
  ],
  "tax_ids": [
    {
      "id": "<string>",
      "type": "<string>",
      "value": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://www.thundercompute.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token authentication. Provide your API token prefixed with "Bearer ", e.g. "Bearer your-api-token".

Body

application/json

Billing details delta

The body is of type object.

Response

OK

address
object
name
string
partial_errors
object[]
tax_ids
object[]