---
title: List RUM operation strong links
description: Datadog, the leading service for cloud-scale monitoring.
breadcrumbs: Docs > API Reference > RUM Operations
---

> For the complete documentation index, see [llms.txt](https://docs.datadoghq.com/llms.txt).

# List RUM operation strong links{% #list-rum-operation-strong-links %}
Copy pageCopied
{% tab title="v2" %}

| Datadog site      | API endpoint                                                         |
| ----------------- | -------------------------------------------------------------------- |
| ap1.datadoghq.com | GET https://api.ap1.datadoghq.com/api/v2/rum/operations/strong_links |
| ap2.datadoghq.com | GET https://api.ap2.datadoghq.com/api/v2/rum/operations/strong_links |
| app.datadoghq.eu  | GET https://api.datadoghq.eu/api/v2/rum/operations/strong_links      |
| app.ddog-gov.com  | GET https://api.ddog-gov.com/api/v2/rum/operations/strong_links      |
| us2.ddog-gov.com  | GET https://api.us2.ddog-gov.com/api/v2/rum/operations/strong_links  |
| uk1.datadoghq.com | GET https://api.uk1.datadoghq.com/api/v2/rum/operations/strong_links |
| app.datadoghq.com | GET https://api.datadoghq.com/api/v2/rum/operations/strong_links     |
| us3.datadoghq.com | GET https://api.us3.datadoghq.com/api/v2/rum/operations/strong_links |
| us5.datadoghq.com | GET https://api.us5.datadoghq.com/api/v2/rum/operations/strong_links |

### Overview

List strong links between RUM operations and features. A strong link confirms that a feature belongs to an operation. Provide `operation_id`, `feature_id`, or both to filter results; at least one is required.

### Arguments

#### Query Strings

| Name         | Type    | Description                               |
| ------------ | ------- | ----------------------------------------- |
| operation_id | string  | Filter strong links by RUM operation ID.  |
| feature_id   | string  | Filter strong links by feature ID.        |
| page[offset] | integer | Offset for pagination.                    |
| page[limit]  | integer | Number of items per page. Maximum of 200. |

### Response

{% tab title="200" %}
OK
{% tab title="Model" %}
The response for a list of RUM operation strong links.

| Parent field | Field                          | Type      | Description                                                                                    |
| ------------ | ------------------------------ | --------- | ---------------------------------------------------------------------------------------------- |
|              | data [*required*]         | [object]  |
| data         | attributes [*required*]   | object    | Attributes of a RUM operation strong link response.                                            |
| attributes   | created_at                     | date-time | The timestamp when the strong link was created.                                                |
| attributes   | description                    | string    | A description of the strong link.                                                              |
| attributes   | feature_id [*required*]   | string    | The unique identifier of the linked feature.                                                   |
| attributes   | operation_id [*required*] | string    | The unique identifier of the linked RUM operation.                                             |
| attributes   | status [*required*]       | enum      | The status of a RUM operation strong link. Allowed enum values: `DRAFT,CONFIRMED,REJECTED`     |
| attributes   | tags                           | [string]  | A list of tags associated with the strong link.                                                |
| attributes   | updated_at                     | date-time | The timestamp when the strong link was last updated.                                           |
| data         | id [*required*]           | string    | The unique identifier of the strong link, formatted as `<operation_id>:<feature_id>`.          |
| data         | type [*required*]         | enum      | The JSON:API type for RUM operation strong link resources. Allowed enum values: `strong_links` |
|              | meta                           | object    | Metadata for a list of RUM operation strong links.                                             |
| meta         | limit                          | int64     | The pagination limit.                                                                          |
| meta         | offset                         | int64     | The current offset.                                                                            |
| meta         | total                          | int64     | The total number of strong links matching the request.                                         |

{% /tab %}

{% tab title="Example" %}

```json
{
  "data": [
    {
      "attributes": {
        "created_at": "2019-09-19T10:00:00.000Z",
        "description": "string",
        "feature_id": "feature-123",
        "operation_id": "abc12345-1234-5678-abcd-ef1234567890",
        "status": "CONFIRMED",
        "tags": [],
        "updated_at": "2019-09-19T10:00:00.000Z"
      },
      "id": "abc12345-1234-5678-abcd-ef1234567890:feature-123",
      "type": "strong_links"
    }
  ],
  "meta": {
    "limit": "integer",
    "offset": "integer",
    "total": "integer"
  }
}
```

{% /tab %}

{% /tab %}

{% tab title="400" %}
Bad Request
{% tab title="Model" %}
API error response.

| Parent field | Field                    | Type     | Description                                                                     |
| ------------ | ------------------------ | -------- | ------------------------------------------------------------------------------- |
|              | errors [*required*] | [object] | A list of errors.                                                               |
| errors       | detail                   | string   | A human-readable explanation specific to this occurrence of the error.          |
| errors       | meta                     | object   | Non-standard meta-information about the error                                   |
| errors       | source                   | object   | References to the source of the error.                                          |
| source       | header                   | string   | A string indicating the name of a single request header which caused the error. |
| source       | parameter                | string   | A string indicating which URI query parameter caused the error.                 |
| source       | pointer                  | string   | A JSON pointer to the value in the request document that caused the error.      |
| errors       | status                   | string   | Status code of the response.                                                    |
| errors       | title                    | string   | Short human-readable summary of the error.                                      |

{% /tab %}

{% tab title="Example" %}

```json
{
  "errors": [
    {
      "detail": "Missing required attribute in body",
      "meta": {},
      "source": {
        "header": "Authorization",
        "parameter": "limit",
        "pointer": "/data/attributes/title"
      },
      "status": "400",
      "title": "Bad Request"
    }
  ]
}
```

{% /tab %}

{% /tab %}

{% tab title="429" %}
Too many requests
{% tab title="Model" %}
API error response.

| Field                    | Type     | Description       |
| ------------------------ | -------- | ----------------- |
| errors [*required*] | [string] | A list of errors. |

{% /tab %}

{% tab title="Example" %}

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

{% /tab %}

{% /tab %}

### Code Example

##### 
                  \# Curl command curl -X GET "https://api.datadoghq.com/api/v2/rum/operations/strong_links" \
-H "Accept: application/json" \
-H "DD-API-KEY: ${DD_API_KEY}" \
-H "DD-APPLICATION-KEY: ${DD_APP_KEY}" 
                
{% /tab %}
