Cloud Sentrics Docs

Upload Files via API

Send files to Cloud Sentrics programmatically using the upload API endpoint.

Upload Files via API

Upload documents to your Cloud Sentrics account from external systems using the API.

Steps

  1. Get your API key and endpoint from the API Integration section.
  2. Send a POST request to your endpoint URL.
  3. Include the file in the request body as multipart/form-data.
  4. Add the API key in the header:
Authorization: Bearer YOUR_API_KEY
Content-Type: multipart/form-data
  1. On success, the file appears in your Inbound Documents folder.

Example (cURL)

curl -X POST https://your-endpoint-url/upload \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "file=@/path/to/document.pdf"

Tips

  • Supported file types depend on your account settings.
  • Check the response for confirmation or error details.
  • Uploaded files are available immediately in Inbound Documents.

Related Articles