Skip to main content
POST
/
ddex
/
delivery
/
test-all-connections
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": {}
  }
}

Code Examples

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);

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Response

Success

status
string
data
object