Companies
List Companies
Lists all companies the user is a member of.
GET
/
v3
/
companies
Copy
curl --request GET \
--url https://api.proposales.com/v3/companies \
--header 'Authorization: Bearer <token>'
Copy
{
"data": [
{
"id": 123,
"created_at": 123,
"name": "<string>",
"currency": "<string>",
"tax_mode": "<string>",
"registration_number": "<string>",
"website_url": "<string>"
}
]
}
Response
The ID of the company.
The UNIX timestamp when the company was created.
The name of the company.
The default currency of the company.
The tax mode of the company, can be standard
, simplified
or none
.
The registration number of the company.
The website URL of the company.
Copy
curl --request GET \
--url https://api.proposales.com/v3/companies \
--header 'Authorization: Bearer <token>'
Copy
{
"data": [
{
"id": 123,
"created_at": 123,
"name": "<string>",
"currency": "<string>",
"tax_mode": "<string>",
"registration_number": "<string>",
"website_url": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.