curl --request GET \
--url https://api.tensormesh.ai/v1/billing/address \
--header 'Authorization: Bearer <token>'{
"address": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"state": "<string>",
"postalCode": "<string>",
"country": "<string>",
"company": "<string>",
"phone": "<string>",
"name": "<string>"
}
}Retrieves the billing address for a user.
curl --request GET \
--url https://api.tensormesh.ai/v1/billing/address \
--header 'Authorization: Bearer <token>'{
"address": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"state": "<string>",
"postalCode": "<string>",
"country": "<string>",
"company": "<string>",
"phone": "<string>",
"name": "<string>"
}
}Bearer authentication using an access token. Format: Bearer <access_token>
The unique ID of the user.
A successful response.
GetBillingAddressResponse is the response containing a billing address.
BillingAddress represents a billing address.
Show child attributes