Skip to main content
GET
/
regulatory
/
addresses
List Addresses
curl --request GET \
  --url https://api.kallabot.com/regulatory/addresses \
  --header 'Authorization: Bearer <token>'
{
  "addresses": [
    {
      "sid": "<string>",
      "friendly_name": "<string>",
      "customer_name": "<string>",
      "street": "<string>",
      "street_secondary": "<string>",
      "city": "<string>",
      "region": "<string>",
      "postal_code": "<string>",
      "iso_country": "<string>",
      "emergency_enabled": true,
      "validated": true,
      "verified": true,
      "date_created": "2023-11-07T05:31:56Z",
      "date_updated": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

customer_name
string

Filter by customer name

friendly_name
string

Filter by friendly name

iso_country
string

Filter by country

Response

List of addresses

addresses
object[]
required