UNPKG

@veryfi/veryfi-sdk

Version:

Node.js module for communicating with the Veryfi OCR API

18 lines (17 loc) 631 B
const Client = require('../client/constructor'); /** * Get a w2 document https://docs.veryfi.com/api/w2s/get-a-w-2/ * @memberOf Client * @param {string} document_id ID of the document you'd like to retrieve * @param {Object} kwargs Additional request parameters * @returns {JSON} Data extracted from the Document */ Client.prototype.get_w2 = async function ( document_id, {...kwargs} = {} ) { let endpoint_name = `/w2s/${document_id}/`; let request_arguments = {"id": document_id}; let response = await this._request("GET", endpoint_name, request_arguments, kwargs, false); return response['data']; }