Skip to main

API Technical Specs

Learn how to configure and leverage our services to achieve your toughest recruiting needs.
SaaS     |

Generate the Matching UI Details View - Deprecated

POST /ui/v10/details/resume

Generate an HTML user interface for reviewing a single result from Bimetric Scoring that can be consumed in your client application.

Request Body

UIOptionsoptionalobject
Object representing various options for generating the UI.
UIOptions.Usernameoptionalstring
The username of the current user. *If you do not provide this, the user will be required to login when they view the page.
UIOptions.Styleoptionalobject
Specifies custom style options for this session.
UIOptions.Style.PrimaryColoroptionalstring
An HTML color used to generate several related colors for various UI elements. For example: #077799.
UIOptions.Style.HeaderColoroptionalstring
An HTML color used for the background of the section/accordian headers. For example: #077799.
UIOptions.Style.SquareCornersoptionalboolean
true to use square corners for UI elements. Default is false for rounded corners.
UIOptions.Style.FontFamilyoptionalstring
A CSS font-family to use for all UI elements. For example: Arial.
UIOptions.Style.FontUrloptionalstring
If you'd like to use a non-standard font, specify the URL where that font can be downloaded here. For example: https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap. Note that you also need to define the FontFamily if you use this option.
MatchDetailsoptionalobject
The information about the match result for this session. These properties should be filled from a Bimetric Score API response.
MatchDetails.Resultoptionalobject
MatchDetails.AppliedCategoryWeightsoptionalobject
The AppliedCategoryWeights object from the API call that generated the above Result. One of:
MatchDetails.SourceDocumentTypeoptionalstring
The type of document the result was scored against. Either Resume or Job.
MatchDetails.ResumeDataoptionalobject
The Sovren parsed resume object that will be used (along with the match result above) to populate the details view.
MatchDetails.HtmlDocumentoptionalstring
The HTML resume to be displayed in the details view. If you do not provide this, only the plain text for the resume is shown. The only allowed HTML string is the one generated by Sovren in a Parse API when you set OutputHtml to true. See here: Parsed Resume HTML.

Sample Request

{ ... 
{ ... 
"Username" :  "",{ ... 
"PrimaryColor" :  "","HeaderColor" :  "","SquareCorners" :  false,"FontFamily" :  "","FontUrl" :  ""
}
},
{ ... 
{ ... 
"SovScore" :  0,"*" :  "..."
},
{ ... 
"Skills" :  0,"*" :  "..."
},
"SourceDocumentType" :  "",{ ... 
{ ... 
},
"*" :  "..."
},
"HtmlDocument" :  ""
}
}

Response Body

urlstring
The endpoint to hit to get the generated Matching UI. The first request to this endpoint will automatically authenticate the user. Subsequent requests (who are not already authenticated) will require a login. This url will be valid for at least 24 hours.
expires_ininteger
The number of seconds until the url auto-authentication expires.

Sample Response

{ ... 
"url" :  "","expires_in" :  0
}