Invokes deployed function locally. It allows to send event data to the function, read logs and display other important information of the function invocation.
serverless invoke -f functionName--functionor-fThe name of the function in your service that you want to invoke. Required. _--dataor-dData you want to pass into the function--pathor-pPath to JSON or YAML file holding input data. This path is relative to the root directory of the service.--rawPass data as a raw string even if it is JSON. If not set, JSON data are parsed and passed as an object.--contextPathor-x, The path to a json file holding input context to be passed to the invoked function. This path is relative to the root directory of the service.--contextor-c, String data to be passed as a context to your function. Same like with--data, context included in--contextPathwill overwrite the context you passed with--contextflag.
Keep in mind that if you pass both
--pathand--data, the data included in the--pathfile will overwrite the data you passed with the--dataflag.
serverless invoke local -f functionNameserverless invoke local -f functionName -d '{ "data": "hello world" }'serverless invoke local -f functionName -p path/to/file.json
# OR
serverless invoke local -f functionName -p path/to/file.yaml