curl --request POST \
--url https://api.hubapi.com/crm/v3/exports/export/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"exportType": "VIEW",
"format": "XLS",
"exportName": "<string>",
"objectProperties": [
"<string>"
],
"associatedObjectType": [
"<string>"
],
"includeLabeledAssociations": true,
"includePrimaryDisplayPropertyForAssociatedObjects": true,
"objectType": "<string>",
"language": "EN",
"exportInternalValuesOptions": [
"NAMES"
],
"overrideAssociatedObjectsPerDefinitionPerRowLimit": true,
"publicCrmSearchRequest": {
"filterGroups": [
{
"filters": [
{
"operator": "BETWEEN",
"propertyName": "<string>",
"highValue": "<string>",
"value": "<string>",
"values": [
"<string>"
]
}
]
}
],
"filters": [
{
"operator": "BETWEEN",
"propertyName": "<string>",
"highValue": "<string>",
"value": "<string>",
"values": [
"<string>"
]
}
],
"sorts": [
"<string>"
],
"query": "<string>"
}
}
'