get https://yourorgsite.com/api/metadata/AdvertiserAgencyMap
Returns metadata information that describes an AdvertiserAgencyMap object.
Log in to see full request history
Response
200The request was successful.
Returns metadata information that describes an AdvertiserAgencyMap object.
200The request was successful.
xxxxxxxxxx
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://yourorgsite.com/api/metadata/AdvertiserAgencyMap', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
Try It!
to start a request and see the response here!