Companies
List Companies
Companies
List Companies
Lists all companies the user is a member of.
GET
/
v3
/
companies
curl --request GET \
--url https://api.proposales.com/v3/companies \
--header 'Authorization: Bearer <token>'
{
"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.
curl --request GET \
--url https://api.proposales.com/v3/companies \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": 123,
"created_at": 123,
"name": "<string>",
"currency": "<string>",
"tax_mode": "<string>",
"registration_number": "<string>",
"website_url": "<string>"
}
]
}