Note: The features listed on this page are supported only in GroupDocs.Signature Cloud V1
GroupDocs.Signature Cloud REST API supports to search Barcode signatures in supported document formats. It provides method to search Barcode Signature in Document Pages with different options barcodeType, Name, text, matchType and other search features by using Search Options Object data in request body.
Search Barcode Signature
You can search Barcode Signature on Document provided by fileName and document folder (if required) using following API. It expects Search Options Object data in request body.
It returns an object which contains document name, folder location and search result.
The API is completely independent of your operating system, database system or development language. We provide and support API SDKs in many development languages in order to make it even easier to integrate. You can see our available SDKs list here.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Search Barcode Signature in Document at Provided URL
You can search Barcode Signature for a Document at provided URL using following API.
It retrieves file from specified URL and tries to detect file type when fileName parameter is not specified. It expects search-options-objects object data in request body.
Based on passed Search Options settings proceeds with Document searching, it returns object which contains result of searching process.
{"fileName":"one-page.docx","folder":"Output","Code":"OK","Status":"OK","Signatures":[{BarcodeTypeName:"Code128",Text:"John Smith"},{BarcodeTypeName:"Code128",Text:"John Smith esq."}]}
SDK examples
The API is completely independent of your operating system, database system or development language. We provide and support API SDKs in many development languages in order to make it even easier to integrate. You can see our available SDKs list here.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//TODO: Get your AppSID and AppKey at https://dashboard.groupdocs.cloud (free registration is required).
$configuration = new Configuration();
$configuration->setAppSid($sid);
$configuration->setAppKey($key);
$signatureApi = new SignatureApi($configuration);
try {
// set options properties
$options = new \GroupDocs\Signature\Model\PdfSearchBarcodeOptionsData();
$options->setBarcodeTypeName("Code39Standard");
$options->setMatchType("Contains");
$options->setSearchAllPages(true);
$options->setText("123456789012");
$request = new Requests\PostSearchBarcodeFromUrlRequest("https://www.dropbox.com/s/7yi03ieximjrh1y/SignedForVerificationAll.pdf?dl=1",$options,null,null);
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters