Companies

This endpoint provides information about companies.


The company object

A company object contains unique details about a company. This includes its unique identifier, DBA ("doing-business-as") name, and legal entity name.

Properties

  • Name
    id
    Type
    string

    Unique identifier for the company.

  • Name
    legalName
    Type
    string

    Official legal name of the company.

  • Name
    dbaName
    Type
    string (optional)

    "Doing business as" name, if different from legal name.

Example: company object

{
  "id": "cmb9gajwt00060djycynhgbiv",
  "legalName": "Zamp Technologies, Inc.",
  "dbaName": "Zamp Tax"
}

GET/companies

List companies

This endpoint allows you to retrieve a list of companies associated with your API key.

Query params

  • Name
    companyId
    partner-only
    Type
    string (optional)

    The unique Zamp identifier for a given company. This parameter is reserved for Zamp partners. If you are not a Zamp partner, you can omit this parameter to request your company's information.

Request

GET
/companies
curl -G https://api.zamp.com/companies \
  -H "Authorization: Bearer {token}"

Response

[
  {
    "id": "cmb9gajwt00060djycynhgbiv",
    "legalName": "Zamp Technologies, Inc.",
    "dbaName": "Zamp Tax"
  }
]

Was this page helpful?