Skip to main content
POST
/
v1
/
address-bundle
/
Create Address Bundle
curl --request POST \
  --url https://api.nedzo.ai/v1/address-bundle/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "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>"
}
'
{
  "status_code": 123,
  "message": "<string>",
  "data": {
    "address_bundle": {
      "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"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
company_name
string
required

The legal name of the company.

company_address_line_1
string
required

The first line of the company’s street address.

company_city
string
required

The city where the company is located.

company_country
enum<string> | null
default:United States

The country where the company is based. Defaults to United States. Address bundle country enum

Available options:
United States
company_address_line_2
string | null

The second line of the company’s address, such as suite or apartment number.

company_state
string | null

The state, province, or region where the company is located.

company_zip_code
string | null

The postal or ZIP code of the company’s address.

company_registration_id
string | null

The official company registration ID.

contact_name
string | null

The name of the primary contact person at the company.

contact_phone_number
string | null

The phone number of the contact person or company.

Response

Successful Response

status_code
integer
required
message
string
required
data
object | null