v1

latestOpenAPI 3.1.02026-07-242892032.8 MB
Endpoints

Binary Converter

Converts a binary document into plain text.

post/parserservice/converter

Request body

binaryDatastring required

The binary resume data.

instanceTypestring required

Instance type to be used to parse. For example, use "XRAY" to process with LENS xray.

extensionstring

The document extension (e.g. txt, doc, docx, rtf). Default is "txt".

localestring

Locale to be used to parse (e.g. en_us).

Example request

{
  "binaryData": "JVBERi0xLjUNJeLjz9MNCjEw....",
  "extension": "pdf",
  "locale": "en_us",
  "instanceType": "TM"
}

Response

OK

statusboolean
statusCodestring
requestIdstring uuid
responseDatastring
timeStampstring date-time
processedWithLocalestring

Example response

{
  "status": "true",
  "statusCode": "OK",
  "requestId": "00b2d394-c741-4808-bdc1-516f69fb0c96",
  "responseData": "SCOTT GRITTON 515 Chestnut Street Software QA Engineer ...",
  "timeStamp": "2023-08-02 01:34:18.380",
  "processedWithLocale": "en_us"
}