Update I figured out that the issue was because of how C# adds square brackets to collections like the example below:
[
{
"data": {
"youtubeId": "NLMNB5-Rd2I",
"title": "Pros and Cons of Garage Sales | Broken 3DS",
"summary": null,
"author": null,
"content": null,
"publishdate": "2023-02-15T14:30:09",
"lastupdateddate": "2023-03-10T14:04:43",
"uri": "https://www.youtube.com/watch?v=NLMNB5-Rd2I",
"image": null
}
},
{
"data": {
"youtubeId": "NLMNB5-Rd2I",
"title": "Pros and Cons of Garage Sales | Broken 3DS",
"summary": null,
"author": null,
"content": null,
"publishdate": "2023-02-15T14:30:09",
"lastupdateddate": "2023-03-10T14:04:43",
"uri": "https://www.youtube.com/watch?v=NLMNB5-Rd2I",
"image": null
}
},
{
"data": {
"youtubeId": "NLMNB5-Rd2I",
"title": "Pros and Cons of Garage Sales | Broken 3DS",
"summary": null,
"author": null,
"content": null,
"publishdate": "2023-02-15T14:30:09",
"lastupdateddate": "2023-03-10T14:04:43",
"uri": "https://www.youtube.com/watch?v=NLMNB5-Rd2I",
"image": null
}
},
{
"data": {
"youtubeId": "NLMNB5-Rd2I",
"title": "Pros and Cons of Garage Sales | Broken 3DS",
"summary": null,
"author": null,
"content": null,
"publishdate": "2023-02-15T14:30:09",
"lastupdateddate": "2023-03-10T14:04:43",
"uri": "https://www.youtube.com/watch?v=NLMNB5-Rd2I",
"image": null
}
}
]
So, I’m trying to understand why Strapi only wants single objects sent via POST request to generate content types. Also, aren’t square brackets considered standard JSON? I’m trying to develop for bulk content creation if needed. Any advice?