Create the file records for all files added to the Filepond queue. Run in API Explorer
Ask AI
POST
/api/v1/upload-files/create
curl \
--request POST 'https://api.plannrcrm.com/api/v1/upload-files/create' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"files":[{"name":"My new File","size":1024,"type":"application/pdf","filename":"my new file.pdf","extension":"pdf","last_modified":1766574178}]}'
Request examples
{
"files": [
{
"name": "My new File",
"size": 1024,
"type": "application/pdf",
"filename": "my new file.pdf",
"extension": "pdf",
"last_modified": 1766574178
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}