Skip to main content
Version: v1

Operating Companies

The WPP organization consists of many operating companies. Via The Fount API you can get a basic list with names and logos for each.

List all operating companies

GET /api/v1/operating_companies

Schema

KeyTypeDescription
idintegerThe system ID for the operating company.
namestringThe primary name of the operating company.
logo_urlstringA URL to the SVG version of the company logo.
created_atstringA datetime string when this brand was first created.
updated_atstringA datetime string when this brand was last updated.

{
"data": [
{
"id": 13,
"name": "Burson Cohn & Wolfe",
"logo_url": "https:\/\/wpp-fount-dev.s3.eu-west-2.amazonaws.com\/logos\/svg\/burson-cohn-wolfe-logo-9-july-2020.svg",
"created_at": "2021-02-23T16:27:32.000000Z",
"updated_at": "2021-02-23T16:27:32.000000Z"
}
// ...
]
// Pagination data is added here.
}

Get an operating company

GET /api/v1/operating_companies/123

Schema

KeyTypeDescription
idintegerThe system ID for the operating company.
namestringThe primary name of the operating company.
logo_urlstringA URL to the SVG version of the company logo.
created_atstringA datetime string when this brand was first created.
updated_atstringA datetime string when this brand was last updated.

{
"data": {
"id": 13,
"name": "Burson Cohn & Wolfe",
"logo_url": "https:\/\/wpp-fount-dev.s3.eu-west-2.amazonaws.com\/logos\/svg\/burson-cohn-wolfe-logo-9-july-2020.svg",
"created_at": "2021-02-23T16:27:32.000000Z",
"updated_at": "2021-02-23T16:27:32.000000Z"
}
}

Expansions

To create a leaner response data related to brands are not included in the response by default. See the Expansions section for more information on how this works. The following relationships can be expanded for the operating companies resource:

  • brand - A slimmer brand object to get information about the brand for the operating company.

Filters

Sorting

The following fields are sortable:

  • id
  • name
  • created_at
  • updated_at