Create a new function with code that runs in Deno runtime
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Display name for the function
1"Hello World Function"
JavaScript/TypeScript code that exports an async function
1"export default async function(request) {\n const { name = 'World' } = await request.json();\n return new Response(\n JSON.stringify({ message:Hello, ${name}!}),\n { headers: { 'Content-Type': 'application/json' } }\n );\n}\n"
URL-friendly identifier (auto-generated from name if not provided)
"hello-world"
Description of what the function does
"Returns a personalized greeting message"
Initial status (draft or active/deployed)
draft, active