appwrite/docs/examples/1.8.x/server-go/examples/functions/get-execution.md
2025-08-26 21:29:44 +12:00

408 B

package main

import ( "fmt" "github.com/appwrite/sdk-for-go/client" "github.com/appwrite/sdk-for-go/functions" )

client := client.New( client.WithEndpoint("https://.cloud.appwrite.io/v1") client.WithProject("<YOUR_PROJECT_ID>") client.WithSession("") )

service := functions.New(client)

response, error := service.GetExecution( "<FUNCTION_ID>", "<EXECUTION_ID>", )