List teams ownership mappings

Note: This endpoint is in Preview and is subject to change. If you have any feedback, contact Datadog support.

GET https://api.ap1.datadoghq.com/api/v2/rum/config/teams-ownership/mappingshttps://api.ap2.datadoghq.com/api/v2/rum/config/teams-ownership/mappingshttps://api.datadoghq.eu/api/v2/rum/config/teams-ownership/mappingshttps://api.ddog-gov.com/api/v2/rum/config/teams-ownership/mappingshttps://api.us2.ddog-gov.com/api/v2/rum/config/teams-ownership/mappingshttps://api.uk1.datadoghq.com/api/v2/rum/config/teams-ownership/mappingshttps://api.datadoghq.com/api/v2/rum/config/teams-ownership/mappingshttps://api.us3.datadoghq.com/api/v2/rum/config/teams-ownership/mappingshttps://api.us5.datadoghq.com/api/v2/rum/config/teams-ownership/mappings

Overview

Get the list of teams ownership mappings for your organization, optionally filtered.

Arguments

Query Strings

Name

Type

Description

filter[view_name]

array

Filter mappings by RUM view name.

filter[team_handle]

array

Filter mappings by owning team handle.

filter[application_id]

array

Filter mappings by RUM application ID. Each value must be a valid UUID.

filter[service]

array

Filter mappings by RUM application service name.

Response

OK

The response body for a list of teams ownership mappings.

Expand All

Field

Type

Description

data [required]

[object]

A list of teams ownership mappings.

attributes [required]

object

The attributes of a teams ownership mapping.

application_id [required]

string

The ID of the RUM application this mapping applies to. For browser applications, this is the real application UUID. For mobile applications, this is the nil UUID 00000000-0000-0000-0000-000000000000 (wildcard), meaning the ownership applies across all applications.

created_at [required]

date-time

Timestamp when the mapping was created.

created_by [required]

string

The UUID of the user who created the mapping.

match_type [required]

enum

How the view_name is matched against RUM view names. Allowed enum values: exact,prefix

default: exact

org_id [required]

int64

The ID of the organization that owns this mapping.

service [required]

string

The RUM application's service name. For browser applications, may be empty. For mobile applications, this is the service that scopes the ownership.

team_handle [required]

string

The handle of the team that owns the matched RUM views.

view_name [required]

string

The RUM view name to match, or its prefix when match_type is prefix.

id [required]

string

The unique identifier of the teams ownership mapping.

type [required]

enum

The type of the resource. The value should always be teams_ownership_mappings. Allowed enum values: teams_ownership_mappings

default: teams_ownership_mappings

{
  "data": [
    {
      "attributes": {
        "application_id": "11111111-2222-3333-4444-555555555555",
        "created_at": "2026-01-15T09:30:00.000Z",
        "created_by": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
        "match_type": "exact",
        "org_id": 123456,
        "service": "web-checkout",
        "team_handle": "team-rum",
        "view_name": "/checkout"
      },
      "id": "123",
      "type": "teams_ownership_mappings"
    }
  ]
}

Bad Request

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Not Authorized

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Too many requests

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Code Example

                  # Curl command
curl -X GET "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.us2.ddog-gov.com"https://api.uk1.datadoghq.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/v2/rum/config/teams-ownership/mappings" \ -H "Accept: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}"
"""
List teams ownership mappings returns "OK" response
"""

from os import environ
from datadog_api_client import ApiClient, Configuration
from datadog_api_client.v2.api.rum_teams_ownership_api import RumTeamsOwnershipApi

# there is a valid "teams_ownership_mapping" in the system
TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME = environ["TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME"]

configuration = Configuration()
with ApiClient(configuration) as api_client:
    api_instance = RumTeamsOwnershipApi(api_client)
    response = api_instance.list_teams_ownership_mappings(
        filter_view_name=[
            TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME,
        ],
    )

    print(response)

Instructions

First install the library and its dependencies and then save the example to example.py and run following commands:

    
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comap2.datadoghq.comuk1.datadoghq.comddog-gov.comus2.ddog-gov.com" DD_API_KEY="<API-KEY>" DD_APP_KEY="<APP-KEY>" python3 "example.py"
# List teams ownership mappings returns "OK" response

require "datadog_api_client"
api_instance = DatadogAPIClient::V2::RumTeamsOwnershipAPI.new

# there is a valid "teams_ownership_mapping" in the system
TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME = ENV["TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME"]
opts = {
  filter_view_name: [
    TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME,
  ],
}
p api_instance.list_teams_ownership_mappings(opts)

Instructions

First install the library and its dependencies and then save the example to example.rb and run following commands:

    
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comap2.datadoghq.comuk1.datadoghq.comddog-gov.comus2.ddog-gov.com" DD_API_KEY="<API-KEY>" DD_APP_KEY="<APP-KEY>" rb "example.rb"
// List teams ownership mappings returns "OK" response

package main

import (
	"context"
	"encoding/json"
	"fmt"
	"os"

	"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
	"github.com/DataDog/datadog-api-client-go/v2/api/datadogV2"
)

func main() {
	// there is a valid "teams_ownership_mapping" in the system
	TeamsOwnershipMappingDataAttributesViewName := os.Getenv("TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME")

	ctx := datadog.NewDefaultContext(context.Background())
	configuration := datadog.NewConfiguration()
	apiClient := datadog.NewAPIClient(configuration)
	api := datadogV2.NewRumTeamsOwnershipApi(apiClient)
	resp, r, err := api.ListTeamsOwnershipMappings(ctx, *datadogV2.NewListTeamsOwnershipMappingsOptionalParameters().WithFilterViewName([]string{
		TeamsOwnershipMappingDataAttributesViewName,
	}))

	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `RumTeamsOwnershipApi.ListTeamsOwnershipMappings`: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}

	responseContent, _ := json.MarshalIndent(resp, "", "  ")
	fmt.Fprintf(os.Stdout, "Response from `RumTeamsOwnershipApi.ListTeamsOwnershipMappings`:\n%s\n", responseContent)
}

Instructions

First install the library and its dependencies and then save the example to main.go and run following commands:

    
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comap2.datadoghq.comuk1.datadoghq.comddog-gov.comus2.ddog-gov.com" DD_API_KEY="<API-KEY>" DD_APP_KEY="<APP-KEY>" go run "main.go"
// List teams ownership mappings returns "OK" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
import com.datadog.api.client.v2.api.RumTeamsOwnershipApi;
import com.datadog.api.client.v2.api.RumTeamsOwnershipApi.ListTeamsOwnershipMappingsOptionalParameters;
import com.datadog.api.client.v2.model.TeamsOwnershipMappingsResponse;
import java.util.Collections;

public class Example {
  public static void main(String[] args) {
    ApiClient defaultClient = ApiClient.getDefaultApiClient();
    RumTeamsOwnershipApi apiInstance = new RumTeamsOwnershipApi(defaultClient);

    // there is a valid "teams_ownership_mapping" in the system
    String TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME =
        System.getenv("TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME");

    try {
      TeamsOwnershipMappingsResponse result =
          apiInstance.listTeamsOwnershipMappings(
              new ListTeamsOwnershipMappingsOptionalParameters()
                  .filterViewName(
                      Collections.singletonList(
                          TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME)));
      System.out.println(result);
    } catch (ApiException e) {
      System.err.println("Exception when calling RumTeamsOwnershipApi#listTeamsOwnershipMappings");
      System.err.println("Status code: " + e.getCode());
      System.err.println("Reason: " + e.getResponseBody());
      System.err.println("Response headers: " + e.getResponseHeaders());
      e.printStackTrace();
    }
  }
}

Instructions

First install the library and its dependencies and then save the example to Example.java and run following commands:

    
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comap2.datadoghq.comuk1.datadoghq.comddog-gov.comus2.ddog-gov.com" DD_API_KEY="<API-KEY>" DD_APP_KEY="<APP-KEY>" java "Example.java"
// List teams ownership mappings returns "OK" response
use datadog_api_client::datadog;
use datadog_api_client::datadogV2::api_rum_teams_ownership::ListTeamsOwnershipMappingsOptionalParams;
use datadog_api_client::datadogV2::api_rum_teams_ownership::RumTeamsOwnershipAPI;

#[tokio::main]
async fn main() {
    // there is a valid "teams_ownership_mapping" in the system
    let teams_ownership_mapping_data_attributes_view_name =
        std::env::var("TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME").unwrap();
    let configuration = datadog::Configuration::new();
    let api = RumTeamsOwnershipAPI::with_config(configuration);
    let resp = api
        .list_teams_ownership_mappings(
            ListTeamsOwnershipMappingsOptionalParams::default().filter_view_name(vec![
                teams_ownership_mapping_data_attributes_view_name.clone(),
            ]),
        )
        .await;
    if let Ok(value) = resp {
        println!("{:#?}", value);
    } else {
        println!("{:#?}", resp.unwrap_err());
    }
}

Instructions

First install the library and its dependencies and then save the example to src/main.rs and run following commands:

    
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comap2.datadoghq.comuk1.datadoghq.comddog-gov.comus2.ddog-gov.com" DD_API_KEY="<API-KEY>" DD_APP_KEY="<APP-KEY>" cargo run
/**
 * List teams ownership mappings returns "OK" response
 */

import { client, v2 } from "@datadog/datadog-api-client";

const configuration = client.createConfiguration();
const apiInstance = new v2.RumTeamsOwnershipApi(configuration);

// there is a valid "teams_ownership_mapping" in the system
const TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME = process.env
  .TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME as string;

const params: v2.RumTeamsOwnershipApiListTeamsOwnershipMappingsRequest = {
  filterViewName: [TEAMS_OWNERSHIP_MAPPING_DATA_ATTRIBUTES_VIEW_NAME],
};

apiInstance
  .listTeamsOwnershipMappings(params)
  .then((data: v2.TeamsOwnershipMappingsResponse) => {
    console.log(
      "API called successfully. Returned data: " + JSON.stringify(data)
    );
  })
  .catch((error: any) => console.error(error));

Instructions

First install the library and its dependencies and then save the example to example.ts and run following commands:

    
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comap2.datadoghq.comuk1.datadoghq.comddog-gov.comus2.ddog-gov.com" DD_API_KEY="<API-KEY>" DD_APP_KEY="<APP-KEY>" tsc "example.ts"