Get a DLS region
client.DLS.Regions.Get(ctx, regionID, query) (*RegionGetResponse, error)
GET/accounts/{account_id}/dls/regions/{region_id}
Get a DLS region
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Parameters
Get a DLS region
package main
import (
"context"
"fmt"
"github.com/cloudflare/cloudflare-go"
"github.com/cloudflare/cloudflare-go/dls"
"github.com/cloudflare/cloudflare-go/option"
)
func main() {
client := cloudflare.NewClient(
option.WithAPIToken("Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY"),
)
region, err := client.DLS.Regions.Get(
context.TODO(),
"a1b2c3d4-e5f6-7890-abcd-ef1234567890",
dls.RegionGetParams{
AccountID: cloudflare.F(int64(0)),
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", region.ID)
}
{
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"result": {
"id": "id",
"created_on": "2019-12-27T18:11:19.117Z",
"modified_on": "2019-12-27T18:11:19.117Z",
"name": "name",
"region_key": "x",
"version": 0,
"version_created_on": "2019-12-27T18:11:19.117Z"
},
"success": true,
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
]
}Returns Examples
{
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"result": {
"id": "id",
"created_on": "2019-12-27T18:11:19.117Z",
"modified_on": "2019-12-27T18:11:19.117Z",
"name": "name",
"region_key": "x",
"version": 0,
"version_created_on": "2019-12-27T18:11:19.117Z"
},
"success": true,
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
]
}