LinkedIn · Schema

SalesAnalyticsExportJobRequest

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-salesanalyticsexportjobrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SalesAnalyticsExportJobRequest",
  "title": "SalesAnalyticsExportJobRequest",
  "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"
  ]
}