Sort a list of LinkedIn profiles by relationship strength with the user
JWT token obtained from /users/authorization endpoint
Specify the user making the request. This identifier should match the one you used when integrating the user with Village. Not needed when using user token authentication.
Array of LinkedIn URLs
[
"https://linkedin.com/in/gavin-belson",
"https://linkedin.com/in/peter-gregory",
"https://linkedin.com/in/big-head"
]Sorted list of people with warmth scores
LinkedIn URL or domain URL that was provided in the request
Relationship strength score
8.5
Human-readable label for the relationship strength
Excellent, Very Good, Good, Okay, Maybe "Excellent"
Error message if the URL couldn't be processed
[
{
"url": "https://linkedin.com/in/big-head",
"score": 9,
"score_label": "Excellent"
},
{
"url": "https://linkedin.com/in/peter-gregory",
"score": 8.5,
"score_label": "Excellent"
},
{
"url": "https://linkedin.com/in/gavin-belson",
"score": 7,
"score_label": "Very Good"
}
]