Code Examples
Authorizations
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Path Parameters
Query Parameters
Available options: 
7d, 30d, 90d curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/ddex/providers/{providerId}/stats \
  --header 'Authorization: Bearer <token>'{
  "status": "<string>",
  "data": {
    "provider": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "code": "<string>",
      "dpid": "<string>",
      "category": "streaming",
      "defaultDeliveryMethod": "SFTP",
      "deliveryMethods": [
        "SFTP"
      ],
      "territories": [
        "<string>"
      ],
      "supportedFormats": [
        "<string>"
      ],
      "technicalSpecs": {},
      "rateLimits": {},
      "acknowledgementSettings": {},
      "description": "<string>",
      "isActive": true,
      "website": "<string>",
      "documentation": "<string>"
    },
    "period": "<string>",
    "statistics": {}
  }
}Get provider statistics for tenant
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/ddex/providers/{providerId}/stats \
  --header 'Authorization: Bearer <token>'{
  "status": "<string>",
  "data": {
    "provider": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "code": "<string>",
      "dpid": "<string>",
      "category": "streaming",
      "defaultDeliveryMethod": "SFTP",
      "deliveryMethods": [
        "SFTP"
      ],
      "territories": [
        "<string>"
      ],
      "supportedFormats": [
        "<string>"
      ],
      "technicalSpecs": {},
      "rateLimits": {},
      "acknowledgementSettings": {},
      "description": "<string>",
      "isActive": true,
      "website": "<string>",
      "documentation": "<string>"
    },
    "period": "<string>",
    "statistics": {}
  }
}const response = await fetch('https://server26-dot-royalti-project.uc.r.appspot.com/ddex/providers/example-id/stats', {
  method: 'GET',
});
const data = await response.json();
console.log(data);
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
7d, 30d, 90d