Hi @Kmmille25, try to change the list for a library. The flow will copy the file content from OneDrive to the library in SharePoint. See the pic.

In the "Parse JSON" action use substring expression to extract the JSON to obtain the name and id of the file.

Substring expression:
substring(outputs('Get_response_details')?['body/rc51aa6a9845a4d0eb8246f863e7cfd30'],1,sub(indexOf(outputs('Get_response_details')?['body/rc51aa6a9845a4d0eb8246f863e7cfd30'],']'),1))
Schema JSON:
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"link": {
"type": "string"
},
"id": {
"type": "string"
},
"type": {},
"size": {
"type": "integer"
},
"referenceId": {
"type": "string"
},
"driveId": {
"type": "string"
},
"status": {
"type": "integer"
},
"uploadSessionUrl": {}
}
}
You can use the last action in the 1st pic to update the columns in your library.
