Skip to main content
POST
/
public
/
v1
/
persons
/
scores
Calculate person scores
curl --request POST \
  --url http://app.stairoids.com/api/public/v1/persons/scores \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '[
  "<string>"
]'
[
  {
    "publicIdentifier": "jane-doe-123",
    "score": 42
  }
]

Authorizations

X-Api-Key
string
header
required

Your organization's public API key. Manage it at GET /api/user/public-api-key.

Body

application/json

Response

OK

publicIdentifier
string

LinkedIn public identifier.

Example:

"jane-doe-123"

score
integer<int32>

Calculated score for the person.

Example:

42