itsRohitOriginal post
Rank 1: Thread
How can I pass payload while creating execution of a function from python server and also how to retrieve it in the function to get the process done?
Summary
Title: [SOLVED] Passing and retrieving payload in Appwrite Function
Messages: [SOLVED] Payload while executing function
The issue has been resolved.
To pass payload while creating an execution of a function from a Python server, you can send a JSON string and then parse it in your Appwrite Function.
In order to retrieve the payload in the function, you can check the `data` parameter in the documentation: [link](https://appwrite.io/docs/client/functions?sdk=web-default#functionsCreateExecution)
This is the same process as with any other runtime.