Code Examples
Authorizations
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
curl --request POST \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/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://server26-dot-royalti-project.uc.r.appspot.com/ddex/delivery/test-all-connections \
  --header 'Authorization: Bearer <token>'{
  "status": "<string>",
  "data": {
    "results": [
      {}
    ],
    "summary": {}
  }
}const response = await fetch('https://server26-dot-royalti-project.uc.r.appspot.com/ddex/delivery/test-all-connections', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({})
});
const data = await response.json();
console.log(data);
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"