GET
/
organizations
/
{id}
/
billing-addresses
Get Organization Billing Addresses
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": []
}

Authorizations

__session
string
cookie
required

Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.

Path Parameters

id
string
required

Organization ID

Response

200
application/json

Billing addresses retrieved successfully

The response is of type object.