LinkedIn · Schema

SalesAnalyticsExportJobRequest

SalesAnalyticsExportJobRequest from LinkedIn API

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
contract string Sales Navigator contract URN
startAt integer Start date of the exported data (milliseconds since epoch)
endAt integer End date of the exported data (milliseconds since epoch)
View JSON Schema on GitHub

JSON Schema

linkedin-sales-navigator-sales-analytics-export-job-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-schema/linkedin-sales-navigator-sales-analytics-export-job-request-schema.json",
  "title": "SalesAnalyticsExportJobRequest",
  "description": "SalesAnalyticsExportJobRequest from LinkedIn API",
  "type": "object",
  "properties": {
    "contract": {
      "type": "string",
      "description": "Sales Navigator contract URN",
      "example": "urn:li:salesContract:12345"
    },
    "startAt": {
      "type": "integer",
      "description": "Start date of the exported data (milliseconds since epoch)",
      "example": 1638316800000
    },
    "endAt": {
      "type": "integer",
      "description": "End date of the exported data (milliseconds since epoch)",
      "example": 1640908800000
    }
  },
  "required": [
    "contract",
    "startAt",
    "endAt"
  ]
}