Retrieve all billing addresses for the organization. Requires organization admin or manage permissions.
curl --request GET \
--url https://{deploymentHost}/organizations/{id}/billing-addresses
{
"status": 200,
"message": "",
"data": [
{
"id": "billing_123456789",
"name": "Acme Corp Headquarters",
"company": "Acme Corporation",
"address_line_1": "123 Main Street",
"address_line_2": "Suite 500",
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country": "US",
"is_default": true,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
},
{
"id": "billing_987654321",
"name": "Acme Corp Billing Department",
"company": "Acme Corporation",
"address_line_1": "456 Business Ave",
"address_line_2": null,
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country": "US",
"is_default": false,
"created_at": "2024-01-10T15:30:00Z",
"updated_at": "2024-01-10T15:30:00Z"
}
],
"session": {
"signin_attempts": [],
"signins": [
{
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
],
"signup_attempts": [],
"active_signin": {
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
},
"errors": []
}
Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.
Organization ID
Billing addresses retrieved successfully
The response is of type object
.
curl --request GET \
--url https://{deploymentHost}/organizations/{id}/billing-addresses
{
"status": 200,
"message": "",
"data": [
{
"id": "billing_123456789",
"name": "Acme Corp Headquarters",
"company": "Acme Corporation",
"address_line_1": "123 Main Street",
"address_line_2": "Suite 500",
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country": "US",
"is_default": true,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
},
{
"id": "billing_987654321",
"name": "Acme Corp Billing Department",
"company": "Acme Corporation",
"address_line_1": "456 Business Ave",
"address_line_2": null,
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country": "US",
"is_default": false,
"created_at": "2024-01-10T15:30:00Z",
"updated_at": "2024-01-10T15:30:00Z"
}
],
"session": {
"signin_attempts": [],
"signins": [
{
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
],
"signup_attempts": [],
"active_signin": {
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
},
"errors": []
}