Home > Enterprise >  Trigger AWS Lambda from Dropbox file change
Trigger AWS Lambda from Dropbox file change

Time:02-04

Not sure if this is a right place to ask the question.

I have a dropbox folder which gets updated files time to time.

I want to trigger my AWS Lambda function upon file change in my dropbox folder.

Is there a way to do it? If not, is there a way to call any other custom API from dropbox?

CodePudding user response:

Yes, Trigger an AWS Lambda function upon a file change in your Dropbox folder. You can accomplish this by using Dropbox's webhooks. A webhook is an HTTP callback that allows Dropbox to notify your application when a specific event occurs.

You can set up a webhook to be notified whenever a file is created, updated, or deleted in your Dropbox folder. When the webhook is triggered, it sends a request to an endpoint that you specify. This endpoint could be an AWS Lambda function.

Simply,integrate Dropbox and AWS Lambda using Dropbox webhooks. This allows you to trigger a Lambda function whenever a file changes in your Dropbox folder.

  • Related