The verification step this sender is waiting on, or null when there is none. type is 2FA, OTP, IN_APP_VALIDATION, PHONE_REGISTER or CAPTCHA; input says what answers it (code, phone, none when it is approved in the LinkedIn mobile app, hosted for a captcha that has to be solved on LinkedIn's own page); expiresAt is when LinkedIn drops the attempt, five minutes after it asked.
IN_APP_VALIDATION and CAPTCHA are completed outside the API, so poll this endpoint (or listen for account.status_changed) — it re-reads the live session and clears the challenge as soon as the sender is up.
Authorization
bearerAuth An API key created under Settings → API & Webhooks.
In: header
Path Parameters
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/accounts/string/checkpoint"{ "data": { "type": "2FA", "input": "code", "requestedAt": "2019-08-24T14:15:22Z", "expiresAt": "2019-08-24T14:15:22Z", "expired": true, "canResend": true, "canTryAnotherWay": true }, "resolved": true, "account": { "id": "string", "label": "string", "fullName": "string", "firstName": "string", "lastName": "string", "headline": "string", "publicIdentifier": "string", "profileUrl": "string", "profilePicture": "string", "connectionMethod": "cookie", "status": "active", "connectionStatus": "string", "isVerified": true, "isPremium": true, "linkedinPlan": "classic", "error": "string", "limits": {}, "usage": {}, "paused": true, "pausedReason": "user", "pausedAt": "2019-08-24T14:15:22Z", "cooldownUntil": "2019-08-24T14:15:22Z", "cooldownReason": "string", "checkpoint": { "type": "2FA", "input": "code", "requestedAt": "2019-08-24T14:15:22Z", "expiresAt": "2019-08-24T14:15:22Z", "expired": true, "canResend": true, "canTryAnotherWay": true }, "inmailCredits": { "balance": 0, "syncedAt": "2019-08-24T14:15:22Z" }, "ssi": { "score": 0, "brand": 0, "people": 0, "insights": 0, "relationships": 0, "industryTop": 0, "networkTop": 0, "industryAverage": 0, "networkAverage": 0, "industryName": "string", "unavailable": true, "syncedAt": "2019-08-24T14:15:22Z" }, "country": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }}Get a sender account GET
Previous Page
Social Selling Index GET
LinkedIn's Social Selling Index for this sender: a 0-100 score built from four 0-25 pillars (professional brand, finding the right people, engaging with insights, building relationships), plus where the profile ranks against its industry and its network. The score is cached on the account and refetched once it goes stale (LinkedIn recomputes it daily at most). Pass `refresh=true` to force a live read. `unavailable: true` means LinkedIn does not expose a score for this account's session, which is a state rather than an error.