Get PDF metadata.
POST/pdf/getinfometadata
WARNING: This endpoint is deprecated. Please use /pdf/metadata/info
instead.
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
pdfstringrequired
The PDF URL or Base64-encoded buffer.
filenamestring
The PDF file name. Default is a random ID.
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
titlestring
The title of the PDF.
authorstring
The author of the PDF.
producerstring
The producer of the PDF.
creatorstring
The creator of the PDF, which is the software used to design it.
creationDatestring<date-time>
The creation date of the PDF.
modificationDatestring<date-time>
The last modification date of the PDF.
pageCountnumberrequired
The page count of the PDF.
filenamestringrequired
The file name that was passed in the request, or a random ID.
{
"title": "string",
"author": "string",
"producer": "string",
"creator": "string",
"creationDate": "2024-07-29T15:51:28.071Z",
"modificationDate": "2024-07-29T15:51:28.071Z",
"pageCount": 0,
"filename": "string"
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}