{
"mixed_content": {
"publication_status": "published",
"types": ["event", "article"],
"page_no": 2,
"per_page": 10,
"sort_by": ["visible_since"],
"sort_directions": ["DESC"],
"tag_ids": [1,2,3]
}
}
curl --location --request POST 'https://api.mpc.dev.placewise.com/v1/content/management/mixed_content/search' \
--header 'X-User-Agent;' \
--header 'X-Product-Name;' \
--header 'X-Loyalty-Club-Slug;' \
--header 'X-Customer;' \
--header 'Authorization: Bearer ' \
--header 'X-Client-Authorization: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"mixed_content": {
"publication_status": "published",
"types": ["event", "article"],
"page_no": 2,
"per_page": 10,
"sort_by": ["visible_since"],
"sort_directions": ["DESC"],
"tag_ids": [1,2,3]
}
}'
{
"items": [
{
"id": 1,
"type": "article",
"customer_id": 447,
"title": {
"en": "Text"
},
"headline": {
"en": "Text"
},
"visible_since": "2022-11-09T16:25:58.099512Z",
"visible_until": "2022-11-15T16:25:58.099512Z",
"created_at": "2022-11-05T16:25:58.099512Z",
"updated_at": "2022-11-15T16:25:58.099512Z",
"image": {
"url": "https://example.com/image.png",
"identifier": "1",
"mime_type": "image/jpeg",
"created_at": "2022-11-09T15:46:00.252860Z",
"updated_at": "2022-11-09T15:46:00.252860Z",
"image_details": {
"width": 1,
"height": 1
}
},
"publication_status": "published",
"url": "path/to/:id"
}
],
"pagination_info": {
"count": 1000,
"total_count": 2050,
"per_page": 1000,
"total_pages": 3,
"current_page": 1,
"next_page": 2,
"prev_page": null,
"is_first_page": true,
"is_last_page": false,
"is_out_of_range": false,
"offset": 0
}
}