Acciones disponibles (10)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Create Async DocumentDOCRAPTOR_CREATE_ASYNC_DOCAcciónTool to create documents asynchronously from HTML content. Use when generating PDF, XLS, or XLSX documents and you need to poll for completion status or use a callback URL for notification.
DOCRAPTOR_CREATE_ASYNC_DOCAcciónTool to create documents asynchronously from HTML content. Use when generating PDF, XLS, or XLSX documents and you need to poll for completion status or use a callback URL for notification.
Parámetros de entrada
tagstringCustom metadata for storage and tracking.
helpbooleanRequest support assistance with this document.
namestringObligatorioIdentifier for the document.
testbooleanEnable test mode which adds a watermark to the document.
strictstringenumValidation mode - must be one of: html, none.
htmlnonepipelinestringSpecific DocRaptor Pipeline version to use.
referrerstringHTTP referrer header value to use when fetching assets.
javascriptbooleanEnable DocRaptor JavaScript parsing.
callback_urlstringPOST endpoint URL for completion notification.
document_urlstringURL to fetch HTML content from. Alternative to document_content.
document_typestringObligatorioenumDocument format - must be one of: pdf, xls, xlsx.
pdfxlsxlsxprince_optionsobjectAdvanced rendering configuration options for PrinceXML.
document_contentstringHTML content to transform. Required unless document_url is provided.
hosted_expires_atstringISO 8601 datetime when hosted document expires.
hosted_download_limitintegerMaximum number of downloads allowed for hosted document.
ignore_resource_errorsbooleanContinue processing if asset loading fails.
ignore_console_messagesbooleanPrevent console.log from interrupting rendering.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create DocumentDOCRAPTOR_CREATE_DOCAcciónTool to create a PDF or Excel document synchronously from HTML content or URL. Use when you need to generate a document file from HTML data. The document is returned immediately as a downloadable file. Either document_content or document_url must be provided, but not both.
DOCRAPTOR_CREATE_DOCAcciónTool to create a PDF or Excel document synchronously from HTML content or URL. Use when you need to generate a document file from HTML data. The document is returned immediately as a downloadable file. Either document_content or document_url must be provided, but not both.
Parámetros de entrada
tagstringA field for storing a small amount of metadata with this document.
helpbooleanRequest support help with this request if it succeeds (default: false).
namestringObligatorioA name for identifying your document.
testbooleanEnable test mode for this document (adds watermark). Set to false for production documents.
strictstringenumHTML validation mode - none or html.
htmlnonepipelinestringSpecify a specific version of the DocRaptor Pipeline.
referrerstringSet HTTP referrer when generating this document.
javascriptbooleanEnable DocRaptor JavaScript parsing (default: false).
callback_urlstringPOST URL for async completion notifications.
document_urlstringThe URL to fetch the HTML data to be transformed. Required if document_content is not provided. Mutually exclusive with document_content.
document_typestringObligatorioenumOutput format - pdf for PDF documents, xls for Excel 97-2003, or xlsx for modern Excel.
pdfxlsxlsxprince_optionsobjectAdvanced rendering configuration options for PrinceXML engine.
document_contentstringThe HTML data to be transformed into a document. Required if document_url is not provided. Mutually exclusive with document_url.
hosted_expires_atstringISO 8601 datetime when hosted document becomes unavailable.
hosted_download_limitintegerNumber of times a hosted document can be downloaded.
ignore_resource_errorsbooleanFailed loading of images/javascripts/stylesheets/etc will not cause rendering to stop (default: true).
ignore_console_messagesbooleanPrevent console.log from stopping document rendering (default: false).
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create Document from ReferrerDOCRAPTOR_CREATE_DOCUMENT_FROM_REFERRERAcciónTool to convert webpages into documents using referrer-based authentication without an API key. Use when you need to generate PDFs or Excel files from registered domains without explicit API credentials.
DOCRAPTOR_CREATE_DOCUMENT_FROM_REFERRERAcciónTool to convert webpages into documents using referrer-based authentication without an API key. Use when you need to generate PDFs or Excel files from registered domains without explicit API credentials.
Parámetros de entrada
namestringDocument filename to use for the generated file.
typestringenumOutput format for the document. Choose 'pdf' for PDF documents or 'xls' for Excel spreadsheets.
pdfxlsjavascriptbooleanEnable JavaScript processing on the page before conversion. Set to true to execute JavaScript on the page.
prince_option_mediastringCSS media type to use for rendering, such as 'screen' or 'print'. This affects which stylesheets are applied.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create Hosted Async DocumentDOCRAPTOR_CREATE_HOSTED_ASYNC_DOCAcciónTool to create a hosted document asynchronously. Use when you need to generate a PDF, XLS, or XLSX document and track its completion status via callback_url or the status API.
DOCRAPTOR_CREATE_HOSTED_ASYNC_DOCAcciónTool to create a hosted document asynchronously. Use when you need to generate a PDF, XLS, or XLSX document and track its completion status via callback_url or the status API.
Parámetros de entrada
tagstringSmall metadata storage field.
helpbooleanRequests support assistance; defaults to false.
namestringObligatorioIdentifier for the document.
testbooleanEnables test mode with watermark; defaults to true.
strictstringenumHTML validation - 'none' or 'html'.
htmlnonepipelinestringSpecifies DocRaptor pipeline version.
referrerstringSets HTTP referrer header.
javascriptbooleanEnables DocRaptor JavaScript parsing; defaults to false.
callback_urlstringPOST endpoint for async completion notifications.
document_urlstringURL to fetch HTML content. Alternative to document_content.
document_typestringObligatorioenumType of output document - pdf, xls, or xlsx.
pdfxlsxlsxprince_optionsobjectAdvanced rendering configuration options for PrinceXML.
document_contentstringHTML data for transformation. Required if document_url is not provided.
hosted_expires_atstringISO 8601 datetime for document expiration.
hosted_download_limitintegerMaximum download count for hosted docs.
ignore_resource_errorsbooleanContinues rendering if assets fail; defaults to true.
ignore_console_messagesbooleanPrevents console.log interruptions; defaults to false.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Download Async DocumentDOCRAPTOR_GET_ASYNC_DOCAcciónTool to download a completed asynchronous document using the download URL from status response. Use when you have a download_id and need to retrieve the generated document file.
DOCRAPTOR_GET_ASYNC_DOCAcciónTool to download a completed asynchronous document using the download URL from status response. Use when you have a download_id and need to retrieve the generated document file.
Parámetros de entrada
idstringObligatorioThe download_id returned from an async status request or callback.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Async Document StatusDOCRAPTOR_GET_ASYNC_DOC_STATUSAcciónTool to check the status of an asynchronously created document. Use when monitoring progress of async documents by polling for completion status.
DOCRAPTOR_GET_ASYNC_DOC_STATUSAcciónTool to check the status of an asynchronously created document. Use when monitoring progress of async documents by polling for completion status.
Parámetros de entrada
idstringObligatorioThe status_id returned when creating an asynchronous document.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Documents (JSON)DOCRAPTOR_LIST_DOCUMENTS_JSONAcciónTool to retrieve a paginated list of previously created documents with metadata in JSON format. Use when you need to see document creation history or query past documents.
DOCRAPTOR_LIST_DOCUMENTS_JSONAcciónTool to retrieve a paginated list of previously created documents with metadata in JSON format. Use when you need to see document creation history or query past documents.
Parámetros de entrada
pageintegerSpecifies which page of results to return for pagination. Default is 1.
per_pageintegerNumber of documents per page to return. Default is 100.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Documents (XML)DOCRAPTOR_LIST_DOCUMENTS_XMLAcciónTool to retrieve a paginated list of previously created documents with metadata in XML format. Use when you need to see document creation history or query past documents in XML format.
DOCRAPTOR_LIST_DOCUMENTS_XMLAcciónTool to retrieve a paginated list of previously created documents with metadata in XML format. Use when you need to see document creation history or query past documents in XML format.
Parámetros de entrada
pageintegerSpecifies which page of results to return for pagination. Default is 1.
per_pageintegerNumber of documents per page to return. Default is 100. Maximum is 100.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List IPs (JSON)DOCRAPTOR_LIST_IPS_JSONAcciónTool to get list of IP addresses that DocRaptor uses to download assets. Use when you need to know which IPs DocRaptor uses for asset downloading. Note: Using IPs for securing assets is not recommended as they can change without notice.
DOCRAPTOR_LIST_IPS_JSONAcciónTool to get list of IP addresses that DocRaptor uses to download assets. Use when you need to know which IPs DocRaptor uses for asset downloading. Note: Using IPs for securing assets is not recommended as they can change without notice.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List IPs (Text)DOCRAPTOR_LIST_IPS_TEXTAcciónTool to retrieve a list of IP addresses that DocRaptor uses to download assets in plain text format. Use when you need to identify DocRaptor's IP addresses for network configuration or security purposes.
DOCRAPTOR_LIST_IPS_TEXTAcciónTool to retrieve a list of IP addresses that DocRaptor uses to download assets in plain text format. Use when you need to identify DocRaptor's IP addresses for network configuration or security purposes.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not