List 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>",
"logo_url": {},
"inbox_token": {}
}
]
}Companies
List Companies
Lists all companies the user is a member of.
GET
/
v3
/
companies
List 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>",
"logo_url": {},
"inbox_token": {}
}
]
}Response
Show properties
Show properties
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.
The URL of the company logo, if set.
The token of the company’s inbox,
usable for inbox-scoped integrations.
⌘I