cURL
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": {} }
Updates the billing address for a user.
Bearer authentication using an access token. Format: Bearer <access_token>
UpdateBillingAddressRequest is the request to update a billing address.
The unique ID of the user.
BillingAddress represents a billing address.
Show child attributes
A successful response.
UpdateBillingAddressResponse is the response after updating a billing address.
Empty response.