v1
latestOpenAPI 3.0.22026-07-174617345.8 KBPages Metadata
Update metadata for a certain page.
Update the metadata for a specific page identified by its unique pageId. This endpoint allows you to update the associated metadata of the page.
put/api/v1/projects/{projectId}/pages/{pageId}/metadata
Path parameters
projectIdinteger required
The id of an agent (formerly known as project) in which page is stored.
pageIdinteger required
The id of a page in which metadata will be updated.
Request body
Example request
{
"title": "Title",
"url": "https://example.com/",
"description": "One to two sentences.",
"image": "https://example.com/image.png"
}Response
Get the document metadata data for a citation
Example response
{
"status": "success",
"data": {
"id": 1,
"url": "https://www.example.com",
"title": "Example Domain",
"description": "This domain is for use in illustrative examples in documents. You may use this domain in literature without prior coordination or asking for permission.",
"image": "https://www.example.com/image.png"
}
}