Suggest requested supply
curl --request GET \
--url https://api.interchange.io/api/v2/supply-requests/suggestions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/supply-requests/suggestions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.interchange.io/api/v2/supply-requests/suggestions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"domain": "<string>",
"name": "<string>",
"kind": "brand",
"source": "<string>"
}
]
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}Supply Requests
Suggest requested supply
Search the AAO registry for seller/operator/publisher domains to use when filing customer-requested supply.
GET
/
supply-requests
/
suggestions
Suggest requested supply
curl --request GET \
--url https://api.interchange.io/api/v2/supply-requests/suggestions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/supply-requests/suggestions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.interchange.io/api/v2/supply-requests/suggestions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"domain": "<string>",
"name": "<string>",
"kind": "brand",
"source": "<string>"
}
]
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}