Mint a launch URL into the managed source admin UI
curl --request POST \
--url https://api.interchange.io/api/v2/storefront/inventory-sources/{sourceId}/launch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"path": "<string>"
}
'import requests
url = "https://api.interchange.io/api/v2/storefront/inventory-sources/{sourceId}/launch"
payload = { "path": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({path: '<string>'})
};
fetch('https://api.interchange.io/api/v2/storefront/inventory-sources/{sourceId}/launch', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"url": "<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": {}
}
}Storefront
Mint a launch URL into the managed source admin UI
Sign a one-time URL that drops the caller into the upstream managed-source admin UI. Pass an optional deep-link path to land on a specific page.
POST
/
inventory-sources
/
{sourceId}
/
launch
Mint a launch URL into the managed source admin UI
curl --request POST \
--url https://api.interchange.io/api/v2/storefront/inventory-sources/{sourceId}/launch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"path": "<string>"
}
'import requests
url = "https://api.interchange.io/api/v2/storefront/inventory-sources/{sourceId}/launch"
payload = { "path": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({path: '<string>'})
};
fetch('https://api.interchange.io/api/v2/storefront/inventory-sources/{sourceId}/launch', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"url": "<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": {}
}
}Authorizations
API key or access token
Path Parameters
Inventory source ID
Minimum string length:
1Body
application/json
Optional deep-link target for a managed ad-server source launch URL.
Managed-source-relative deep-link path (e.g. /products). The service layer enforces structural constraints (no schemes, no ..). Omit to land on the source home.
Maximum string length:
2048Response
Mint a launch URL into the managed source admin UI
Minted launch URL for the managed ad-server source admin UI.
Single-use signed URL that drops the caller into the upstream managed-source admin UI. The signature is short-lived; clients should redirect immediately.