Skip to main content
PUT
/
ddex
/
mead
/
{entityId}
Update MEAD metadata for an entity
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": {}
}

Code Examples

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);

Authorizations

Authorization
string
header
required

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

Path Parameters

entityId
string
required

Body

application/json
meadData
object
required

Response

Success

status
string
data
object