curl --request POST \
--url https://api.royalti.io/ddex/delivery/test-all-connections \
--header 'Authorization: Bearer <token>'{
"status": "<string>",
"data": {
"results": [
{}
],
"summary": {}
}
}Test connection to all configured DDEX providers
curl --request POST \
--url https://api.royalti.io/ddex/delivery/test-all-connections \
--header 'Authorization: Bearer <token>'{
"status": "<string>",
"data": {
"results": [
{}
],
"summary": {}
}
}const response = await fetch('https://api.royalti.io/ddex/delivery/test-all-connections', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({})
});
const data = await response.json();
console.log(data);