curl --request POST \ --url https://veyraxapp.com/tool-call/gmail/sendEmail \ --header 'VEYRAX_API_KEY: <your_api_key>' \ --header 'Content-Type: application/json' \ --data '{ "to": "recipient@example.com", "subject": "Hello from VeyraX", "body": "This is a test email sent via the VeyraX API." }'
Executes a specific tool method with the provided parameters
POST
/
tool-call
/
{tool}
/
{method}
Copy
curl --request POST \ --url https://veyraxapp.com/tool-call/gmail/sendEmail \ --header 'VEYRAX_API_KEY: <your_api_key>' \ --header 'Content-Type: application/json' \ --data '{ "to": "recipient@example.com", "subject": "Hello from VeyraX", "body": "This is a test email sent via the VeyraX API." }'
This endpoint executes a specific method of a tool with the provided parameters. The response format depends on the specific tool and method being called.
The request body should contain the parameters required by the specific tool method being called. The structure varies depending on the tool and method.
The response format depends on the specific tool and method being called. Refer to the tool’s documentation for details on the expected response format.
curl --request POST \ --url https://veyraxapp.com/tool-call/gmail/sendEmail \ --header 'VEYRAX_API_KEY: <your_api_key>' \ --header 'Content-Type: application/json' \ --data '{ "to": "recipient@example.com", "subject": "Hello from VeyraX", "body": "This is a test email sent via the VeyraX API." }'