I am trying to upload an image to image type column into sharepoint list. Below is the request detail but that gives a bad request.
Does anyone know more about how to do it
POST - https://graph.microsoft.com/v1.0/sites/<site-id>/lists/<list-id>/items
Request Body
{
"fields": {
"Title": "Group 1",
"Image": {
"Url" : "https://myimageurl",
"Description": "This is Image"
}
}
}
Also, tried this but this gives server error.
{
"fields": {
"Title": "Group 1",
"Image": "https://myimageurl",
}
}