Skip to content

Latest commit

 

History

History
68 lines (42 loc) · 1.4 KB

PopAPI.md

File metadata and controls

68 lines (42 loc) · 1.4 KB

PopAPI

Note

All URIs are relative to https://api.fastly.com

Method HTTP request Description
ListPops GET /datacenters List Fastly POPs

ListPops

List Fastly POPs

Example

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.PopAPI.ListPops(ctx).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `PopAPI.ListPops`: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
    // response from `ListPops`: []Pop
    fmt.Fprintf(os.Stdout, "Response from `PopAPI.ListPops`: %v\n", resp)
}

Path Parameters

This endpoint does not need any parameter.

Other Parameters

Other parameters are passed through a pointer to a apiListPopsRequest struct via the builder pattern

Return type

[]Pop

Authorization

API Token

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Back to top | Back to API list | Back to README