Media Types are a list of standard OOH formats.
id: integer source: direct | rtb name: string subtype: array[string]
List Media Types
GET /media_types Returns: paginated array of media type objects inside a "records" key
Last updated 6 months ago
successful
const response = await fetch('https://www.example.com/v1/media_types', { method: 'GET', headers: {}, }); const data = await response.json();
{ "records": [ { "name": "text" } ], "pagination": {} }