Hello everyone, is there any way how to write custom file properties (metadata) to Sharepoint, please?
Thanks a lot
Lubo
Hello everyone, is there any way how to write custom file properties (metadata) to Sharepoint, please?
Thanks a lot
Lubo
You'll have to use one or several HTTPCallers after having uploaded the file with the SharepointOnlineConnector to set the custom metadata information. The good news is that you can use the same web connection in the HTTPCaller as in the SharepointOnlineConnector for authentication.
I believe this is the relevant part of the API: https://docs.microsoft.com/en-us/graph/api/listitem-update?view=graph-rest-1.0&tabs=http
You'll have to use one or several HTTPCallers after having uploaded the file with the SharepointOnlineConnector to set the custom metadata information. The good news is that you can use the same web connection in the HTTPCaller as in the SharepointOnlineConnector for authentication.
I believe this is the relevant part of the API: https://docs.microsoft.com/en-us/graph/api/listitem-update?view=graph-rest-1.0&tabs=http
@david_r nice tip, Iĺl give a try, I believe it could work!