Skip to content
Tx Platform
Normalize Resume

Normalize a Parsed Resume🔗︎

HTTP Verb Path
POST /v9/normalizer/resume

Normalize an existing JSON resume string.

Danger

This feature is not recommended and only available as an add-on. Reach out to sales@textkernel.com for more information.

Info

Request Body🔗︎

ParsedDocument 🔗︎ string required

ParsedDocument🔗︎

The existing JSON parsed document to be normalized. This document must be output from the Textkernel CV/Resume Parser.

NormalizerData 🔗︎ string

NormalizerData🔗︎

Name of your custom normalization data file. If no list is provided the Textkernel builtin skills list will be used (english only). When using custom normalization files the language to be used is determined by the Parser (the default fall back language is English if the Parser cannot find a match).

Sample JSON
{
  "ParsedDocument": "",
  "NormalizerData": ""
}

Response Body🔗︎

Info 🔗︎ object

Info🔗︎

Information explaining the outcome of the transaction.


Info properties

Code 🔗︎ string

Code🔗︎

Code Description
Success Successful transaction
MissingParameter A required parameter wasn't provided
InvalidParameter A parameter was incorrectly specified
AuthenticationError An error occurred with the credentials provided
Message 🔗︎ string

Message🔗︎

This message further describes the code providing additional detail.

Value 🔗︎ object

Value🔗︎

Contains response data for the transaction.


Value properties

NormalizedParsedDocument 🔗︎ string

NormalizedParsedDocument🔗︎

The normalized Parsed Document

CreditsRemaining 🔗︎ decimal

CreditsRemaining🔗︎

The number of remaining credits is returned with every response. Please ensure that you set up monitoring of this value to ensure that you don't experience an outage by letting your credits reach 0.

NormalizerVersion 🔗︎ string

NormalizerVersion🔗︎

The version of the normalizer that was used

Sample JSON
{
  "Info": {
    "Code": "",
    "Message": ""
  },
  "Value": {
    "NormalizedParsedDocument": "",
    "CreditsRemaining": 0,
    "NormalizerVersion": ""
  }
}