curl --request POST \
--url http://localhost:8000/api/v1/debug/assistant-functions/submit-frontend-action \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "<string>"
}
'{
"success": true,
"data": "<string>",
"execution_time_ms": 123
}Debug the submit_frontend_action function.
Args: request (SubmitFrontendActionDebugRequest): The debug request parameters.
Returns: DebugFunctionResponse: The function execution result.
curl --request POST \
--url http://localhost:8000/api/v1/debug/assistant-functions/submit-frontend-action \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "<string>"
}
'{
"success": true,
"data": "<string>",
"execution_time_ms": 123
}The access token received from the authorization server in the OAuth 2.0 flow.
Schema for debugging submit_frontend_action function.
The frontend action to submit