Code Examples
Authorizations
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Path Parameters
Body
application/json
curl --request PUT \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/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://server26-dot-royalti-project.uc.r.appspot.com/ddex/mead/{entityId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "meadData": {}
}'{
  "status": "<string>",
  "data": {}
}const response = await fetch('https://server26-dot-royalti-project.uc.r.appspot.com/ddex/mead/example-id', {
  method: 'PUT',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "meadData": {}
  })
});
const data = await response.json();
console.log(data);
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"