Get all companies
Endpoint for retrieving a list of advertising companies that belong to the current user.
GET
/advertising/v1.0/companies/
curl \
-X GET http://apis.public-staging.reas.cz/advertising/v1.0/companies/ \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"success": true,
"data": [
{
"id": "string",
"thirdPartyId": "1000025",
"name": "string",
"tags": [
"string"
],
"email": "string",
"websiteUrl": "string",
"phoneNumbers": [
"string"
],
"profileImageUrl": "string",
"ico": "string",
"dic": "string",
"location": "string",
"locationAccuracy": "exact"
}
],
"paginationInfo": {
"page": 42.0,
"pages": 42.0
}
}