Skip to main content
GET
/
ddex
/
messages
/
{messageId}
/
download
Get a signed download URL for a message
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/ddex/messages/{messageId}/download \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "data": {
    "messageId": "<string>",
    "downloadUrl": "<string>",
    "expiresAt": "2023-11-07T05:31:56Z",
    "format": "<string>",
    "fileSize": 123
  }
}

Code Examples

const response = await fetch('https://server26-dot-royalti-project.uc.r.appspot.com/ddex/messages/example-id/download', {
  method: 'GET',
});

const data = await response.json();
console.log(data);

Authorizations

Authorization
string
header
required

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

Path Parameters

messageId
string
required

Query Parameters

format
string
default:xml

Response

Success

status
string
data
object