CXO Appointments and Changes Dataset API

POST /api/v1/dataset/executive-change

Request Body

{
    "startDate": "start_date",
    "endDate": "end_date",
    "companyIds": "company_ids",
    "industries": "industries",
    "location": "location",
    "title": "title",
    "reason": "reason",
    "limit": "limit"
}

Param

Mandatory

Description

startDate

N

It will return records from Start Date (Last Modified Date) in format DD/MM/YYYY.

endDate

N

It will return records till End Date (Last Modified Date) in format DD/MM/YYYY.

companyIds

N

Array of Intellizence Company IDs. It will return records for these Company IDs. If Company IDs is not passed, records for all the tracked companies will be returned.

industries

N

Array of Industries.

location

N

Company Headquarter Location.

title

N

Executive title category like CEO, CFO, COO, CTO, CMO etc.

reason

N

CXO change reason like New Appointment, Promoted/Role Change, Retired, Terminated, Health, Resigned, Demise, Others

limit

N

Default value is 100 records. If Start Date and End Date are not passed, it will return latest 'N' records depending on limit value.

Response Body

[
    {
        "id": "6285f743b5fd43422c122144",
        "announcedDate": "31/10/2022",
        "company": {
            "id": "IN013168",
            "name": "Ford Motor",
            "domain": "www.ford.com",
            "industries": [
	        "automobile"
            ],
            "location": "Detroit,Michigan,United States of America",
            "ticker": [
	        "F"
            ],
            "stockExchange": [
	        "NYSE"
            ],
            "type": "Public"
        },
        "executiveName": "Brian Schaaf",
        "executiveTitle": "Chief Financial Officer, Ford Motor Credit Company",
        "reason": "Retired",
        "executiveTitleCategory": [
            "Chief Financial Officer ( CFO) / Head of Finance"
        ],
        "businessDivision": "",
        "url": "https://media.ford.com/content/fordmedia/fna/us/en/news/2022/10/31/ford-credit-cfo-schaaf-to-retire--eliane-okamura-named-cfo.html#:~:text=DEARBORN%2C%20Mich.%2C%20Oct.,to%20succeed%20Schaaf%2C%20effective%20Dec.",
        "title": "FORD CREDIT CFO SCHAAF TO RETIRE; ELIANE OKAMURA NAMED CFO",
        "lastModified": "08/02/2023"
    }
]

Last updated