Create the file records for all files added to the Filepond queue. Run in API Explorer

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.plannrcrm.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"PlannrCRM MCP server": {
  "url": "https://apidocs.plannrcrm.com/mcp"
}
Close
POST /api/v1/upload-files/create
application/json

Body

  • files array[object] Required

    An array of files to be uploaded.

    Hide files attributes Show files attributes object
    • name string

      The name of the file.

    • filename string

      The filename of the file.

    • extension string

      The file extension.

    • type string

      The mime type of the file.

    • size integer

      The size of the file in bytes.

    • last_modified integer

      The last modified timestamp of the file. unix timestamp format.

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
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","filename":"my new file.pdf","extension":"pdf","type":"application/pdf","size":1024,"last_modified":1780931281}]}'
Request examples
{
  "files": [
    {
      "name": "My new File",
      "filename": "my new file.pdf",
      "extension": "pdf",
      "type": "application/pdf",
      "size": 1024,
      "last_modified": 1780931281
    }
  ]
}
Response examples (401)
{
  "message": "Unauthenticated."
}