System Information
- Strapi Version: 4.0.5:
- Operating System: Windows 10:
- Database: sqlite3 : 5.0.2:
- Node Version: 16.13.0:
- NPM Version: 7.24.0 (I’m using yarn tho):
- Yarn Version: 1.22.15:
Hi, I have a collection called “events” which has an image field and I’m using cloudinary for image uploading. However, when I create an entry in content-manager and upload the image, it is being uploaded to cloudinary and media library but when I go to the api endpoint, it is not being returned but other properties are. So, this is the response I’m getting:
[
{
id: 4,
attributes: {
name: ‘CSGO Gaming Tournament’,
slug: ‘csgo-gaming-tournament’,
createdAt: ‘2022-01-25T17:57:17.302Z’,
updatedAt: ‘2022-01-25T17:57:19.458Z’,
publishedAt: ‘2022-01-25T17:57:19.450Z’,
venue: “The Gamer’s Den”,
address: ‘123 Ave, Boston , 10022’,
date: ‘1970-01-01T01:30:00.000Z’,
time: ‘6:30 PM’,
description: null
}
}
]
My collection does have an image field of type media defined but I don’t know why it’s not being saved.