Revalidate data delivery credential
curl --request POST \
--url https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/data-delivery-credentials/{name}/validate \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/data-delivery-credentials/{name}/validate"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/data-delivery-credentials/{name}/validate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"credential": {
"credentialId": "<string>",
"name": "<string>",
"destinationType": "GCS",
"config": {
"type": "GCS",
"bucket": "<string>"
},
"status": "PENDING",
"createdAt": "<string>",
"updatedAt": "<string>",
"statusError": "<string>",
"validatedAt": "<string>",
"expiresAt": "<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": {}
}
}Advertisers
Revalidate data delivery credential
Re-runs the destination Probe for a supported object-storage credential and returns the updated record with a fresh status (VALIDATED or FAILED). Use after fixing a buyer-side destination access issue (e.g., re-granting GCS bucket IAM) without otherwise editing the credential.
POST
/
advertisers
/
{advertiserId}
/
data-delivery-credentials
/
{name}
/
validate
Revalidate data delivery credential
curl --request POST \
--url https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/data-delivery-credentials/{name}/validate \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/data-delivery-credentials/{name}/validate"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/data-delivery-credentials/{name}/validate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"credential": {
"credentialId": "<string>",
"name": "<string>",
"destinationType": "GCS",
"config": {
"type": "GCS",
"bucket": "<string>"
},
"status": "PENDING",
"createdAt": "<string>",
"updatedAt": "<string>",
"statusError": "<string>",
"validatedAt": "<string>",
"expiresAt": "<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
Advertiser ID (numeric, as a string).
Minimum string length:
1Credential name (unique per advertiser).
Minimum string length:
1Response
Revalidate data delivery credential
Updated credential after re-running the destination Probe.
Resolved Data Delivery Credential as returned by the API.
Show child attributes
Show child attributes