AT&T API_COMMON_CATALOG_POC

Catalog of offers

One Source of Truth used across applications

Centralize the management of a product catalog
Get Started

Endpoints

Request

const url = 'https://catalog-capability.dev.att.com/direct/product-offerings?categoryName=&channelName=';
const options = {method: 'GET', headers: {accept: '*/*'}};

fetch(url, options)
  .then(res => res.json())
  .then(json => console.log(json))
  .catch(err => console.error(err));

Response

response code