Exports
Build and manage exports from the PIM system
#Available from v.3.10.12
Authorizations
Path parameters
entityTypeinteger · enumRequiredPossible values:
Enum representing each supported entity type in enrichment insights engine
Responses
200
OK
get
GET /v1/exports/fields/{entityType} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
200
OK
[
{
"Uid": "text",
"Name": "text"
}
]
#Available from v.3.10.12
Authorizations
Body
Model defining export to build
EntityTypeinteger · enumOptionalPossible values:
Enum representing each supported entity type in enrichment insights engine
EntityIdsinteger · int32[] | nullableOptional
The ids to export data for
Responses
200
OK
post
POST /v1/exports/buildexport HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 53
{
"EntityType": 10,
"EntityIds": [
1
],
"ExportSettings": {}
}
200
OK
{
"FileBytes": "Ynl0ZXM=",
"FileName": "text",
"FileExtension": "text",
"MimeType": "text"
}