Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
ListDomainOwnerships | GET /domain-ownerships |
List domain-ownerships |
List domain-ownerships
package main
import (
"context"
"fmt"
"os"
"github.com/fastly/fastly-go/fastly"
)
func main() {
cfg := fastly.NewConfiguration()
apiClient := fastly.NewAPIClient(cfg)
ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN")
resp, r, err := apiClient.DomainOwnershipsAPI.ListDomainOwnerships(ctx).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `DomainOwnershipsAPI.ListDomainOwnerships`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ListDomainOwnerships`: InlineResponse2002
fmt.Fprintf(os.Stdout, "Response from `DomainOwnershipsAPI.ListDomainOwnerships`: %v\n", resp)
}
This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiListDomainOwnershipsRequest struct via the builder pattern
- Content-Type: Not defined
- Accept: application/vnd.api+json