Prove the W6 Action preserves the production compile receipt
GET
/w6-action-receipt-20260730T0555Z
curl -X GET 'https://example.com/w6-action-receipt-20260730T0555Z'package main
import ( "context" "net/http")
func main() { ctx := context.Background() req, err := http.NewRequestWithContext(ctx, "GET", "https://example.com/w6-action-receipt-20260730T0555Z", nil) if err != nil { panic(err) } resp, err := http.DefaultClient.Do(req) if err != nil { panic(err) } defer resp.Body.Close()}import requests
response = requests.request("GET", "https://example.com/w6-action-receipt-20260730T0555Z")print(response.json())const response = await fetch('https://example.com/w6-action-receipt-20260730T0555Z', { method: 'GET' });const data = await response.json();Responses
Section titled “ Responses ”W6 production Action receipt acceptance