curl --request PATCH \
--url https://api.example.com/v1/parts/{id}/files \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"add": [
{
"group": "<string>",
"uploadId": "<string>"
}
],
"remove": [
"<string>"
]
}
'