Skip to main content
PUT
https://api.tensormesh.ai
/
v1
/
billing
/
address
Update Billing Address
curl --request PUT \
  --url https://api.tensormesh.ai/v1/billing/address \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "userId": "<string>",
  "address": {
    "line1": "<string>",
    "line2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "postalCode": "<string>",
    "country": "<string>",
    "company": "<string>",
    "phone": "<string>",
    "name": "<string>"
  }
}
'
{
  "empty": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication using an access token. Format: Bearer <access_token>

Body

application/json

UpdateBillingAddressRequest is the request to update a billing address.

userId
string

The unique ID of the user.

address
object

BillingAddress represents a billing address.

Response

A successful response.

UpdateBillingAddressResponse is the response after updating a billing address.

empty
object

Empty response.