Good day, folks!
I am creating folders using API v3 files/create
https://developers.google.com/drive/api/v3/reference/files/create.
I execute two similar requests with body:
{
"folderColorRgb": "#AC725E",
"description": "Folder description",
"name": "MyColorfulFolder",
"parents": [
"<my parent id>"
],
"mimeType": "application/vnd.google-apps.folder"
}
The only major difference (except folder name being unique, of course) that the first request is coming from a service account, while another one from my personal account.
It seems that the folder color is set only for the account that invoked the request thus the other accounts don't see the color.
I am wondering, if there's a way to enforce the folder color-coding for all users?
Thank you!