Hello Guilherme Henrique Dos Santos Nascimento,
Thank you for reaching out to this Q&A forum.
To create and update raw you can use the below endpoint;-
https://graph.microsoft.com/v1.0/me/drive/items/01DLDARAVPSYF3IMDZJZCISWNBLJ4FJZ3J/workbook/worksheets('sheet1')/range(address='A3:C3')
In the Body you can add the value;-
{
"values": [
[
"A1",
"B1",
"C1"
]
]
}
This endpoint will add the above values to row in the A3:C3 location.
Here is the reference article;- https://learn.microsoft.com/en-us/graph/api/resources/excel?view=graph-rest-1.0
Hope that helps.
Thanks
--please don't forget to upvote
and Accept as answer
if the reply is helpful—