Skip to content
Start here

Get organization accounts

client.Organizations.OrganizationAccounts.Get(ctx, organizationID, query) (*[]OrganizationAccountGetResponse, error)
GET/organizations/{organization_id}/accounts

Retrieve a list of accounts that belong to a specific organization. (Currently in Closed Beta - see https://developers.cloudflare.com/fundamentals/organizations/)

Security

API Email + API Key

The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.

Example:X-Auth-Email: user@example.com

The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.

Example:X-Auth-Key: 144c9defac04969c7bfad8efaa8ea194
ParametersExpand Collapse
organizationID string
query OrganizationAccountGetParams
AccountPubname param.Field[OrganizationAccountGetParamsAccountPubname]optional
Contains stringoptional

(case-insensitive) Filter the list of accounts to where the account_pubname contains a particular string.

EndsWith stringoptional

(case-insensitive) Filter the list of accounts to where the account_pubname ends with a particular string.

StartsWith stringoptional

(case-insensitive) Filter the list of accounts to where the account_pubname starts with a particular string.

Direction param.Field[OrganizationAccountGetParamsDirection]optional

Sort direction for the order_by field. Valid values: asc, desc. Defaults to asc when order_by is specified.

const OrganizationAccountGetParamsDirectionAsc OrganizationAccountGetParamsDirection = "asc"
const OrganizationAccountGetParamsDirectionDesc OrganizationAccountGetParamsDirection = "desc"
Name param.Field[OrganizationAccountGetParamsName]optional
Contains stringoptional

(case-insensitive) Filter the list of accounts to where the name contains a particular string.

EndsWith stringoptional

(case-insensitive) Filter the list of accounts to where the name ends with a particular string.

StartsWith stringoptional

(case-insensitive) Filter the list of accounts to where the name starts with a particular string.

OrderBy param.Field[OrganizationAccountGetParamsOrderBy]optional

Field to order results by. Currently supported values: account_name. When not specified, results are ordered by internal account ID.

const OrganizationAccountGetParamsOrderByAccountName OrganizationAccountGetParamsOrderBy = "account_name"
PageSize param.Field[int64]optional

The amount of items to return. Defaults to 10.

maximum1000
minimum0
PageToken param.Field[string]optional

An opaque token returned from the last list response that when provided will retrieve the next page.

Parameters used to filter the retrieved list must remain in subsequent requests with a page token.

ReturnsExpand Collapse
type OrganizationAccountGetResponseEnvelopeResult []OrganizationAccountGetResponse
ID string
CreatedOn Time
formatdate-time
Name string
Settings OrganizationAccountGetResponseSettings
AbuseContactEmail string
AccessApprovalExpiry Time
formatdate-time
APIAccessEnabled bool
DeprecatedDefaultNameservers string

Use DNS Settings instead. Deprecated.

EnforceTwofactor bool
DeprecatedUseAccountCustomNSByDefault bool

Use DNS Settings instead. Deprecated.

Type OrganizationAccountGetResponseType
One of the following:
const OrganizationAccountGetResponseTypeStandard OrganizationAccountGetResponseType = "standard"
const OrganizationAccountGetResponseTypeEnterprise OrganizationAccountGetResponseType = "enterprise"

Get organization accounts

package main

import (
  "context"
  "fmt"

  "github.com/cloudflare/cloudflare-go"
  "github.com/cloudflare/cloudflare-go/option"
  "github.com/cloudflare/cloudflare-go/organizations"
)

func main() {
  client := cloudflare.NewClient(
    option.WithAPIKey("144c9defac04969c7bfad8efaa8ea194"),
    option.WithAPIEmail("user@example.com"),
  )
  organizationAccounts, err := client.Organizations.OrganizationAccounts.Get(
    context.TODO(),
    "a7b9c3d2e8f4g1h5i6j0k9l2m3n7o4p8",
    organizations.OrganizationAccountGetParams{

    },
  )
  if err != nil {
    panic(err.Error())
  }
  fmt.Printf("%+v\n", organizationAccounts)
}
{
  "errors": [],
  "messages": [
    {
      "code": 1000,
      "message": "message",
      "documentation_url": "documentation_url",
      "source": {
        "pointer": "pointer"
      }
    }
  ],
  "result": [
    {
      "id": "id",
      "created_on": "2019-12-27T18:11:19.117Z",
      "name": "name",
      "settings": {
        "abuse_contact_email": "abuse_contact_email",
        "access_approval_expiry": "2019-12-27T18:11:19.117Z",
        "api_access_enabled": true,
        "default_nameservers": "default_nameservers",
        "enforce_twofactor": true,
        "use_account_custom_ns_by_default": true
      },
      "type": "standard"
    }
  ],
  "result_info": {
    "next_page_token": "next_page_token",
    "total_size": 0
  },
  "success": true
}
Returns Examples
{
  "errors": [],
  "messages": [
    {
      "code": 1000,
      "message": "message",
      "documentation_url": "documentation_url",
      "source": {
        "pointer": "pointer"
      }
    }
  ],
  "result": [
    {
      "id": "id",
      "created_on": "2019-12-27T18:11:19.117Z",
      "name": "name",
      "settings": {
        "abuse_contact_email": "abuse_contact_email",
        "access_approval_expiry": "2019-12-27T18:11:19.117Z",
        "api_access_enabled": true,
        "default_nameservers": "default_nameservers",
        "enforce_twofactor": true,
        "use_account_custom_ns_by_default": true
      },
      "type": "standard"
    }
  ],
  "result_info": {
    "next_page_token": "next_page_token",
    "total_size": 0
  },
  "success": true
}