A company can be either a buyer or a supplier. A buyer refers to a company or organization that purchases goods or services from a supplier or seller. A supplier refers to a company or business that sells goods or services and generates invoices for their customers. The supplier can sell their outstanding invoices to Stenn for a fee in exchange for immediate cash.

The company object

AttributeTypeDescription
idstringUnique identifier for the object
namestringName of the company
addresshashCompany address
websitestringCompany website address
buyer_limithashLatest approved / denied buyer limit requested for this company. See Buyer Limits
contactsarray of hashesList of contacts and signatories that will be signing documents on-behalf of the company

Example JSON object

{ "id": "company_ZYfeeV3qxdmYoG", "object": "company", "name": "Acme Inc.", "address": { "city": "Auburn", "country_code": "US", "state": "AL", "street": "47 W 13th St." }, "website": "https://acme.com", "buyer_limit": null, "contacts": { "object": "list", "data": [ { "id": "contact_CYfeeV3qxdmYoZ", "object": "contact", "first_name": "John", "last_name": "Doe", "email": "john.doe@example.com", "phone": null, "is_signatory": false, "is_request_recipient": false } ] }, "created": "2023-08-22T15:31:40Z" }