Retrieve details of a company by ID or search for companies based on a search term.
GET
/company
curl \
-X GET http://api.example.com/company
Response examples (200)
[
{
"companyID": 42,
"status": "string",
"name": "string",
"streetAddress": "string",
"route": "string",
"city": "string",
"state": "string",
"postalCode": "string",
"contactNumber": "string",
"email": "string",
"industry": "string",
"description": "string",
"website": "string",
"size": "string",
"referral": "string",
"stripeCustomerID": 42,
"createdBy": 42,
"updatedBy": 42
}
]