Group
Show / Hide Table of Contents

Class ParseRequest

The request body for a Parse request

Inheritance
System.Object
BasicParseOptions
ParseOptions
ParseRequest
Inherited Members
ParseOptions.OutputHtml
ParseOptions.OutputRtf
ParseOptions.OutputPdf
ParseOptions.OutputCandidateImage
ParseOptions.GeocodeOptions
ParseOptions.IndexingOptions
ParseOptions.UseLLMParser
ParseOptions.FlexRequests
BasicParseOptions.Configuration
BasicParseOptions.SkillsData
BasicParseOptions.NormalizerData
BasicParseOptions.SkillsSettings
BasicParseOptions.ProfessionsSettings
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Textkernel.Tx.Models.API.Parsing
Assembly: Textkernel.Tx.SDK.dll
Syntax
public class ParseRequest : ParseOptions

Constructors

| Improve this Doc View Source

ParseRequest(Document, ParseOptions)

Create a parse request containing a document to parse and any options/settings

Declaration
public ParseRequest(Document doc, ParseOptions optionsToUse = null)
Parameters
Type Name Description
Document doc

The document (resume or job) to parse

ParseOptions optionsToUse

Any non-default options to use

Properties

| Improve this Doc View Source

DocumentAsBase64String

A Base64 encoded string of the document file bytes. This should use the standard 'base64' encoding as defined in RFC 4648 Section 4 (not the 'base64url' variant).

.NET users can use the System.Convert.ToBase64String(System.Byte[]) method.

Declaration
public string DocumentAsBase64String { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

DocumentLastModified

Mandatory date - in ISO 8601 (yyyy-MM-dd) format - so that the Parser knows how to interpret dates in the document that are expressed as "current" or "as of" or similar. It is crucial that we know the date of the resume/CV so that we can correctly calculate date spans. For example, a resume received on January 5, 2019 should be passed with a DocumentLastModified of "2019-01-05"; if, however, it was modified on May 7, 2019, the DocumentLastModified should be passed as "2019-05-07". Failing to pass a DocumentLastModified, or passing DocumentLastModified that are clearly improbable, may result in rejection of data and/or additional charges, and will utterly decimate the usefulness of AI Matching and any generated metadata.

Declaration
public string DocumentLastModified { get; protected set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
☀
☾
In This Article
Back to top
Generated by DocFX
☀
☾