POST /esignglobal/v1/files/keywordPositions
Interface Description
Developers can get the coordinates of the specified content on the file with this interface. The search scope is the entire document.
Request Parameters
Request Example
{
"keywords ": [
"Creator:",
"Print Date:"
],
"fileKey": "$dd863699-e1ba-47ba-b05c-26029e7089f9$793468458"
}
Responses
Response Example
{
"code": "0",
"data": [
{
"keyword": "制单人:",
"positions": [
{
"coordinates": [
{
"positionX": 174,
"positionY": 361.27
}
],
"pageNum": 2
}
],
"searchResult": true
},
{
"keyword": "打印日期:",
"positions": [
{
"coordinates": [
{
"positionX": 804,
"positionY": 361.77
}
],
"pageNum": 2
}
],
"searchResult": true
}
],
"message": "成功"
}