Update signal
curl --request PUT \
--url https://api.interchange.io/api/v2/storefront/signals/{signalId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"signalId": "<string>"
}
'import requests
url = "https://api.interchange.io/api/v2/storefront/signals/{signalId}"
payload = { "signalId": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({signalId: '<string>'})
};
fetch('https://api.interchange.io/api/v2/storefront/signals/{signalId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"signal": {
"id": 0,
"signalId": "<string>",
"adcpAgentId": 0,
"name": "<string>",
"description": "<string>",
"keyType": [],
"regions": [],
"metadata": {},
"isLive": true,
"archivedAt": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"updatedBy": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"access": [
{
"id": 0,
"signalId": 0,
"advertiserId": 123,
"price": {
"pricing_option_id": "<string>",
"pricing_model": "cpm",
"currency": "<string>",
"fixed_price": 1,
"floor_price": 1,
"max_bid": true,
"price_guidance": {
"p25": 1,
"p50": 1,
"p75": 1,
"p90": 1
},
"min_spend_per_package": 1,
"price_breakdown": {
"list_price": 123,
"adjustments": [
{}
]
},
"eligible_adjustments": [
"fee"
]
},
"archivedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}{
"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": {}
}
}Signals
Update signal
Update signal metadata and manage access records. Cannot change signalId, keyType, or regions after creation.
PUT
/
signals
/
{signalId}
Update signal
curl --request PUT \
--url https://api.interchange.io/api/v2/storefront/signals/{signalId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"signalId": "<string>"
}
'import requests
url = "https://api.interchange.io/api/v2/storefront/signals/{signalId}"
payload = { "signalId": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({signalId: '<string>'})
};
fetch('https://api.interchange.io/api/v2/storefront/signals/{signalId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"signal": {
"id": 0,
"signalId": "<string>",
"adcpAgentId": 0,
"name": "<string>",
"description": "<string>",
"keyType": [],
"regions": [],
"metadata": {},
"isLive": true,
"archivedAt": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"updatedBy": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"access": [
{
"id": 0,
"signalId": 0,
"advertiserId": 123,
"price": {
"pricing_option_id": "<string>",
"pricing_model": "cpm",
"currency": "<string>",
"fixed_price": 1,
"floor_price": 1,
"max_bid": true,
"price_guidance": {
"p25": 1,
"p50": 1,
"p75": 1,
"p90": 1
},
"min_spend_per_package": 1,
"price_breakdown": {
"list_price": 123,
"adjustments": [
{}
]
},
"eligible_adjustments": [
"fee"
]
},
"archivedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}{
"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": {}
}
}Authorizations
API key or access token
Path Parameters
Signal identifier
Minimum string length:
1Body
application/json
Required string length:
1 - 255Pattern:
^[\w\-:.]+$Required string length:
1 - 255Maximum string length:
5000Show child attributes
Show child attributes
Show child attributes
Show child attributes
Required range:
1 <= x <= 9007199254740991⌘I