Attempts to refresh linked files for the selected documents

Try load ipfs files

Returns ipfs files

POST/api/v1/entities/update-files
Body

Entity Timestamp

messageId*string

Entity Timestamp

Example: "1706823227.586179534"
Response

ipfs files

Body
id*string

Message identifier

Example: "1706823227.586179534"
Request
const response = await fetch('/api/v1/entities/update-files', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      "messageId": "1706823227.586179534"
    }),
});
const data = await response.json();
Response
{
  "id": "1706823227.586179534"
}

Last updated