Viewing docs for Auth0 v3.51.0
published on Tuesday, Aug 18, 2026 by Pulumi
published on Tuesday, Aug 18, 2026 by Pulumi
Viewing docs for Auth0 v3.51.0
published on Tuesday, Aug 18, 2026 by Pulumi
published on Tuesday, Aug 18, 2026 by Pulumi
Data source to retrieve all client (application) associations for a specific organization (EA only).
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as auth0 from "@pulumi/auth0";
const myOrgClients = auth0.getOrganizationClients({
organizationId: "org_XXXXX",
});
import pulumi
import pulumi_auth0 as auth0
my_org_clients = auth0.get_organization_clients(organization_id="org_XXXXX")
package main
import (
"github.com/pulumi/pulumi-auth0/sdk/v3/go/auth0"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := auth0.GetOrganizationClients(ctx, &auth0.LookupOrganizationClientsArgs{
OrganizationId: "org_XXXXX",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Auth0 = Pulumi.Auth0;
return await Deployment.RunAsync(() =>
{
var myOrgClients = Auth0.GetOrganizationClients.Invoke(new()
{
OrganizationId = "org_XXXXX",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.auth0.Auth0Functions;
import com.pulumi.auth0.inputs.GetOrganizationClientsArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var myOrgClients = Auth0Functions.getOrganizationClients(GetOrganizationClientsArgs.builder()
.organizationId("org_XXXXX")
.build());
}
}
variables:
myOrgClients:
fn::invoke:
function: auth0:getOrganizationClients
arguments:
organizationId: org_XXXXX
pulumi {
required_providers {
auth0 = {
source = "pulumi/auth0"
}
}
}
data "auth0_getorganizationclients" "myOrgClients" {
organization_id = "org_XXXXX"
}
Using getOrganizationClients
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getOrganizationClients(args: GetOrganizationClientsArgs, opts?: InvokeOptions): Promise<GetOrganizationClientsResult>
function getOrganizationClientsOutput(args: GetOrganizationClientsOutputArgs, opts?: InvokeOutputOptions): Output<GetOrganizationClientsResult>def get_organization_clients(organization_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetOrganizationClientsResult
def get_organization_clients_output(organization_id: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetOrganizationClientsResult]func LookupOrganizationClients(ctx *Context, args *LookupOrganizationClientsArgs, opts ...InvokeOption) (*LookupOrganizationClientsResult, error)
func LookupOrganizationClientsOutput(ctx *Context, args *LookupOrganizationClientsOutputArgs, opts ...InvokeOption) LookupOrganizationClientsResultOutput> Note: This function is named LookupOrganizationClients in the Go SDK.
public static class GetOrganizationClients
{
public static Task<GetOrganizationClientsResult> InvokeAsync(GetOrganizationClientsArgs args, InvokeOptions? opts = null)
public static Output<GetOrganizationClientsResult> Invoke(GetOrganizationClientsInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetOrganizationClientsResult> Invoke(GetOrganizationClientsInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetOrganizationClientsResult> getOrganizationClients(GetOrganizationClientsArgs args, InvokeOptions options)
public static Output<GetOrganizationClientsResult> getOrganizationClients(GetOrganizationClientsArgs args, InvokeOptions options)
public static Output<GetOrganizationClientsResult> getOrganizationClients(GetOrganizationClientsArgs args, InvokeOutputOptions options)
fn::invoke:
function: auth0:index/getOrganizationClients:getOrganizationClients
arguments:
# arguments dictionarydata "auth0_get_organization_clients" "name" {
# arguments
}The following arguments are supported:
- Organization
Id string - The ID of the organization to retrieve the client associations for.
- Organization
Id string - The ID of the organization to retrieve the client associations for.
- organization_
id string - The ID of the organization to retrieve the client associations for.
- organization
Id String - The ID of the organization to retrieve the client associations for.
- organization
Id string - The ID of the organization to retrieve the client associations for.
- organization_
id str - The ID of the organization to retrieve the client associations for.
- organization
Id String - The ID of the organization to retrieve the client associations for.
getOrganizationClients Result
The following output properties are available:
- Clients
List<Get
Organization Clients Client> - The list of clients (applications) associated with the organization.
- Id string
- The provider-assigned unique ID for this managed resource.
- Organization
Id string - The ID of the organization to retrieve the client associations for.
- Clients
[]Get
Organization Clients Client - The list of clients (applications) associated with the organization.
- Id string
- The provider-assigned unique ID for this managed resource.
- Organization
Id string - The ID of the organization to retrieve the client associations for.
- clients list(object)
- The list of clients (applications) associated with the organization.
- id string
- The provider-assigned unique ID for this managed resource.
- organization_
id string - The ID of the organization to retrieve the client associations for.
- clients
List<Get
Organization Clients Client> - The list of clients (applications) associated with the organization.
- id String
- The provider-assigned unique ID for this managed resource.
- organization
Id String - The ID of the organization to retrieve the client associations for.
- clients
Get
Organization Clients Client[] - The list of clients (applications) associated with the organization.
- id string
- The provider-assigned unique ID for this managed resource.
- organization
Id string - The ID of the organization to retrieve the client associations for.
- clients
Sequence[Get
Organization Clients Client] - The list of clients (applications) associated with the organization.
- id str
- The provider-assigned unique ID for this managed resource.
- organization_
id str - The ID of the organization to retrieve the client associations for.
- clients List<Property Map>
- The list of clients (applications) associated with the organization.
- id String
- The provider-assigned unique ID for this managed resource.
- organization
Id String - The ID of the organization to retrieve the client associations for.
Supporting Types
GetOrganizationClientsClient
- App
Type string - The type of the associated client application.
- Client
Id string - The ID of the client (application) to associate with the organization.
- Grant
Types List<string> - The grant types enabled for the associated client.
- Is
First boolParty - Whether the associated client is a first-party client (
true) or not (false). - Logo
Uri string - The URI of the associated client's logo.
- Name string
- The name of the associated client.
- Organization
Usage string - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - Use
For boolMember Access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
- App
Type string - The type of the associated client application.
- Client
Id string - The ID of the client (application) to associate with the organization.
- Grant
Types []string - The grant types enabled for the associated client.
- Is
First boolParty - Whether the associated client is a first-party client (
true) or not (false). - Logo
Uri string - The URI of the associated client's logo.
- Name string
- The name of the associated client.
- Organization
Usage string - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - Use
For boolMember Access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
- app_
type string - The type of the associated client application.
- client_
id string - The ID of the client (application) to associate with the organization.
- grant_
types list(string) - The grant types enabled for the associated client.
- is_
first_ boolparty - Whether the associated client is a first-party client (
true) or not (false). - logo_
uri string - The URI of the associated client's logo.
- name string
- The name of the associated client.
- organization_
usage string - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - use_
for_ boolmember_ access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
- app
Type String - The type of the associated client application.
- client
Id String - The ID of the client (application) to associate with the organization.
- grant
Types List<String> - The grant types enabled for the associated client.
- is
First BooleanParty - Whether the associated client is a first-party client (
true) or not (false). - logo
Uri String - The URI of the associated client's logo.
- name String
- The name of the associated client.
- organization
Usage String - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - use
For BooleanMember Access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
- app
Type string - The type of the associated client application.
- client
Id string - The ID of the client (application) to associate with the organization.
- grant
Types string[] - The grant types enabled for the associated client.
- is
First booleanParty - Whether the associated client is a first-party client (
true) or not (false). - logo
Uri string - The URI of the associated client's logo.
- name string
- The name of the associated client.
- organization
Usage string - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - use
For booleanMember Access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
- app_
type str - The type of the associated client application.
- client_
id str - The ID of the client (application) to associate with the organization.
- grant_
types Sequence[str] - The grant types enabled for the associated client.
- is_
first_ boolparty - Whether the associated client is a first-party client (
true) or not (false). - logo_
uri str - The URI of the associated client's logo.
- name str
- The name of the associated client.
- organization_
usage str - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - use_
for_ boolmember_ access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
- app
Type String - The type of the associated client application.
- client
Id String - The ID of the client (application) to associate with the organization.
- grant
Types List<String> - The grant types enabled for the associated client.
- is
First BooleanParty - Whether the associated client is a first-party client (
true) or not (false). - logo
Uri String - The URI of the associated client's logo.
- name String
- The name of the associated client.
- organization
Usage String - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - use
For BooleanMember Access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
Package Details
- Repository
- Auth0 pulumi/pulumi-auth0
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
auth0Terraform Provider.
Viewing docs for Auth0 v3.51.0
published on Tuesday, Aug 18, 2026 by Pulumi
published on Tuesday, Aug 18, 2026 by Pulumi