Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.nedzo.ai/v1/address-bundles/ \
--header 'Authorization: Bearer <token>'{
"status_code": 123,
"message": "<string>",
"data": {
"address_bundles": [
{
"company_name": "<string>",
"company_address_line_1": "<string>",
"company_city": "<string>",
"company_country": "United States",
"company_address_line_2": "<string>",
"company_state": "<string>",
"company_zip_code": "<string>",
"company_registration_id": "<string>",
"contact_name": "<string>",
"contact_phone_number": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subaccount_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"skip": 123,
"limit": 123,
"totalCount": 123
}
}curl --request GET \
--url https://api.nedzo.ai/v1/address-bundles/ \
--header 'Authorization: Bearer <token>'{
"status_code": 123,
"message": "<string>",
"data": {
"address_bundles": [
{
"company_name": "<string>",
"company_address_line_1": "<string>",
"company_city": "<string>",
"company_country": "United States",
"company_address_line_2": "<string>",
"company_state": "<string>",
"company_zip_code": "<string>",
"company_registration_id": "<string>",
"contact_name": "<string>",
"contact_phone_number": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subaccount_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"skip": 123,
"limit": 123,
"totalCount": 123
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?