New name for the copied item (optional — defaults to original name)
parentReference
object
No
—
Destination folder for the copy (optional — defaults to same folder)
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "item_id": { "type": "string", "description": "The unique ID of the drive item to copy" }, "name": { "type": "string", "description": "New name for the copied item (optional — defaults to original name)" }, "parentReference": { "type": "object", "description": "Destination folder for the copy (optional — defaults to same folder)", "properties": { "id": { "type": "string", "description": "ID of the destination folder" }, "driveId": { "type": "string", "description": "Drive ID of the destination (if different drive)" } } } }, "required": [ "PCID", "item_id" ]}
The unique ID of the parent folder where the new folder will be created
@microsoft.graph.conflictBehavior
string
No
—
Conflict resolution behavior if name already exists
folder
object
Yes
—
Indicates this is a folder (use empty object {})
name
string
Yes
—
Name for the new folder
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "item_id": { "type": "string", "description": "The unique ID of the parent folder where the new folder will be created" }, "@microsoft.graph.conflictBehavior": { "type": "string", "description": "Conflict resolution behavior if name already exists", "enum": [ "rename", "replace", "fail" ] }, "folder": { "type": "object", "description": "Indicates this is a folder (use empty object {})" }, "name": { "type": "string", "description": "Name for the new folder" } }, "required": [ "PCID", "item_id", "folder", "name" ]}
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "item_id": { "type": "string", "description": "The unique ID of the drive item to delete" } }, "required": [ "PCID", "item_id" ]}
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "item_id": { "type": "string", "description": "The unique ID of the drive item to update" }, "name": { "type": "string", "description": "New name for the item (to rename)" }, "parentReference": { "type": "object", "description": "New parent folder reference (to move the item)", "properties": { "id": { "type": "string", "description": "ID of the destination folder" } } } }, "required": [ "PCID", "item_id" ]}