curl --request PUT \
--url https://api.royalti.io/ddex/mead/{entityId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"meadData": {}
}'{
"status": "<string>",
"data": {}
}Update MEAD metadata for a specific entity (asset, product, artist, or label) identified by entityId.
curl --request PUT \
--url https://api.royalti.io/ddex/mead/{entityId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"meadData": {}
}'{
"status": "<string>",
"data": {}
}const response = await fetch('https://api.royalti.io/ddex/mead/example-id', {
method: 'PUT',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
"meadData": {}
})
});
const data = await response.json();
console.log(data);