---
title: Update a RUM operation strong link
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).

# Update a RUM operation strong link{% #update-a-rum-operation-strong-link %}
Copy pageCopied
{% tab title="v2" %}
**Note**: This endpoint is in Preview and is subject to change. If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
| Datadog site      | API endpoint                                                                                         |
| ----------------- | ---------------------------------------------------------------------------------------------------- |
| ap1.datadoghq.com | PUT https://api.ap1.datadoghq.com/api/v2/rum/operations/strong_links/{rum_operation_id}/{feature_id} |
| ap2.datadoghq.com | PUT https://api.ap2.datadoghq.com/api/v2/rum/operations/strong_links/{rum_operation_id}/{feature_id} |
| app.datadoghq.eu  | PUT https://api.datadoghq.eu/api/v2/rum/operations/strong_links/{rum_operation_id}/{feature_id}      |
| app.ddog-gov.com  | PUT https://api.ddog-gov.com/api/v2/rum/operations/strong_links/{rum_operation_id}/{feature_id}      |
| us2.ddog-gov.com  | PUT https://api.us2.ddog-gov.com/api/v2/rum/operations/strong_links/{rum_operation_id}/{feature_id}  |
| uk1.datadoghq.com | PUT https://api.uk1.datadoghq.com/api/v2/rum/operations/strong_links/{rum_operation_id}/{feature_id} |
| app.datadoghq.com | PUT https://api.datadoghq.com/api/v2/rum/operations/strong_links/{rum_operation_id}/{feature_id}     |
| us3.datadoghq.com | PUT https://api.us3.datadoghq.com/api/v2/rum/operations/strong_links/{rum_operation_id}/{feature_id} |
| us5.datadoghq.com | PUT https://api.us5.datadoghq.com/api/v2/rum/operations/strong_links/{rum_operation_id}/{feature_id} |

### Overview

Update the status of a strong link between a RUM operation and a feature.

### Arguments

#### Path Parameters

| Name                               | Type   | Description                                 |
| ---------------------------------- | ------ | ------------------------------------------- |
| rum_operation_id [*required*] | string | The unique identifier of the RUM operation. |
| feature_id [*required*]       | string | The unique identifier of the feature.       |

### Request

#### Body Data (required)



{% tab title="Model" %}

| Parent field | Field                        | Type   | Description                                                                                                                        |
| ------------ | ---------------------------- | ------ | ---------------------------------------------------------------------------------------------------------------------------------- |
|              | data [*required*]       | object | The data object for updating a RUM operation strong link.                                                                          |
| data         | attributes [*required*] | object | Attributes for updating a RUM operation strong link.                                                                               |
| attributes   | status [*required*]     | enum   | The status of a RUM operation strong link. Can only be set to `CONFIRMED` or `REJECTED`. Allowed enum values: `CONFIRMED,REJECTED` |
| data         | type [*required*]       | enum   | The JSON:API type for RUM operation strong link resources. Allowed enum values: `strong_links`                                     |

{% /tab %}

{% tab title="Example" %}

```json
{
  "data": {
    "attributes": {
      "status": "CONFIRMED"
    },
    "type": "strong_links"
  }
}
```

{% /tab %}

### Response

{% tab title="200" %}
OK
{% tab title="Model" %}
The response for a single RUM operation strong link.

| Parent field | Field                          | Type      | Description                                                                                    |
| ------------ | ------------------------------ | --------- | ---------------------------------------------------------------------------------------------- |
|              | data [*required*]         | object    | The data object in a RUM operation strong link response.                                       |
| 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` |

{% /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"
  }
}
```

{% /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="404" %}
Not Found
{% 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

##### 
                  \# Path parameters export rum_operation_id="CHANGE_ME" export feature_id="CHANGE_ME" \# Curl command curl -X PUT "https://api.datadoghq.com/api/v2/rum/operations/strong_links/${rum_operation_id}/${feature_id}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "DD-API-KEY: ${DD_API_KEY}" \
-H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \
-d @- << EOF
{
  "data": {
    "attributes": {
      "status": "CONFIRMED"
    },
    "type": "strong_links"
  }
}
EOF 
                
{% /tab %}
