API Access
Authentication
{
"X-Api-Key": "0ecff5f6-5b65-42bf-84d1-facf9ed37c7avf"
}query GetMaterialDownloadLink($articleId: String!, $organizationId: ID!, $assignmentType: DataObjectAssignmentType!, $resolution: DownloadResolution, $fileType: DownloadFileType) {
materials(filter: {articleId: {equals: $articleId}, organizationId: {equals: $organizationId}}) {
dataObjectAssignments(filter: {assignmentType: [$assignmentType]}) {
dataObject {
downloadUrl(resolution: $resolution, fileType: $fileType)
mediaType
}
}
}
}Last updated