---
title: Upsert a Cloud Cost Management tag description
description: Datadog, the leading service for cloud-scale monitoring.
breadcrumbs: Docs > API Reference > Cloud Cost Management
---

# Upsert a Cloud Cost Management tag description{% #upsert-a-cloud-cost-management-tag-description %}
Copy pageCopied
{% tab title="v2" %}

| Datadog site      | API endpoint                                                             |
| ----------------- | ------------------------------------------------------------------------ |
| ap1.datadoghq.com | PUT https://api.ap1.datadoghq.com/api/v2/cost/tag_descriptions/{tag_key} |
| ap2.datadoghq.com | PUT https://api.ap2.datadoghq.com/api/v2/cost/tag_descriptions/{tag_key} |
| app.datadoghq.eu  | PUT https://api.datadoghq.eu/api/v2/cost/tag_descriptions/{tag_key}      |
| app.ddog-gov.com  | PUT https://api.ddog-gov.com/api/v2/cost/tag_descriptions/{tag_key}      |
| us2.ddog-gov.com  | PUT https://api.us2.ddog-gov.com/api/v2/cost/tag_descriptions/{tag_key}  |
| app.datadoghq.com | PUT https://api.datadoghq.com/api/v2/cost/tag_descriptions/{tag_key}     |
| us3.datadoghq.com | PUT https://api.us3.datadoghq.com/api/v2/cost/tag_descriptions/{tag_key} |
| us5.datadoghq.com | PUT https://api.us5.datadoghq.com/api/v2/cost/tag_descriptions/{tag_key} |

### Overview

Create or update a Cloud Cost Management tag key description. The new description and optional cloud scoping are supplied in the request body. Omit `cloud` to set a cross-cloud default for the tag key. This endpoint requires the `cloud_cost_management_write` permission.

OAuth apps require the `cloud_cost_management_write` authorization [scope](https://docs.datadoghq.com/api/latest/scopes.md#cloud-cost-management) to access this endpoint.



### Arguments

#### Path Parameters

| Name                      | Type   | Description                                      |
| ------------------------- | ------ | ------------------------------------------------ |
| tag_key [*required*] | string | The tag key whose description is being upserted. |

### Request

#### Body Data (required)



{% tab title="Model" %}

| Parent field | Field                         | Type   | Description                                                                                                                                         |
| ------------ | ----------------------------- | ------ | --------------------------------------------------------------------------------------------------------------------------------------------------- |
|              | data [*required*]        | object | Resource envelope carrying the tag key description being upserted. The `id` is informational; the authoritative tag key is taken from the URL path. |
| data         | attributes [*required*]  | object | Mutable attributes set when creating or updating a Cloud Cost Management tag key description.                                                       |
| attributes   | cloud                         | string | Cloud provider this description applies to (for example, `aws`). Omit to set the cross-cloud default for the tag key.                               |
| attributes   | description [*required*] | string | The human-readable description for the tag key.                                                                                                     |
| data         | id                            | string | Identifier of the tag key the description applies to. Matches the `tag_key` path parameter.                                                         |
| data         | type [*required*]        | enum   | Type of the Cloud Cost Management tag description resource. Allowed enum values: `cost_tag_description`                                             |

{% /tab %}

{% tab title="Example" %}

```json
{
  "data": {
    "attributes": {
      "cloud": "aws",
      "description": "AWS account that owns this cost."
    },
    "id": "account_id",
    "type": "cost_tag_description"
  }
}
```

{% /tab %}

### Response

{% tab title="204" %}
No Content
{% /tab %}

{% tab title="400" %}
Bad Request
{% 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 %}

{% tab title="403" %}
Forbidden
{% 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 %}

{% 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

##### 
                  \## default
# 
 \# Path parameters export tag_key="CHANGE_ME" \# Curl command curl -X PUT "https://api.datadoghq.com/api/v2/cost/tag_descriptions/${tag_key}" \
-H "Content-Type: application/json" \
-H "DD-API-KEY: ${DD_API_KEY}" \
-H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \
-d @- << EOF
{
  "data": {
    "attributes": {
      "cloud": "aws",
      "description": "AWS account that owns this cost."
    },
    "id": "account_id",
    "type": "cost_tag_description"
  }
}
EOF 
                
##### 

```python
"""
Upsert a Cloud Cost Management tag description returns "No Content" response
"""

from datadog_api_client import ApiClient, Configuration
from datadog_api_client.v2.api.cloud_cost_management_api import CloudCostManagementApi
from datadog_api_client.v2.model.cost_tag_description_type import CostTagDescriptionType
from datadog_api_client.v2.model.cost_tag_description_upsert_request import CostTagDescriptionUpsertRequest
from datadog_api_client.v2.model.cost_tag_description_upsert_request_data import CostTagDescriptionUpsertRequestData
from datadog_api_client.v2.model.cost_tag_description_upsert_request_data_attributes import (
    CostTagDescriptionUpsertRequestDataAttributes,
)

body = CostTagDescriptionUpsertRequest(
    data=CostTagDescriptionUpsertRequestData(
        attributes=CostTagDescriptionUpsertRequestDataAttributes(
            cloud="aws",
            description="AWS account that owns this cost.",
        ),
        id="account_id",
        type=CostTagDescriptionType.COST_TAG_DESCRIPTION,
    ),
)

configuration = Configuration()
with ApiClient(configuration) as api_client:
    api_instance = CloudCostManagementApi(api_client)
    api_instance.upsert_cost_tag_description_by_key(tag_key="tag_key", body=body)
```

#### Instructions

First [install the library and its dependencies](https://docs.datadoghq.com/api/latest.md?code-lang=python) and then save the example to `example.py` and run following commands:
    DD_SITE="datadoghq.com" DD_API_KEY="<DD_API_KEY>" DD_APP_KEY="<DD_APP_KEY>" python3 "example.py"
##### 

```ruby
# Upsert a Cloud Cost Management tag description returns "No Content" response

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

body = DatadogAPIClient::V2::CostTagDescriptionUpsertRequest.new({
  data: DatadogAPIClient::V2::CostTagDescriptionUpsertRequestData.new({
    attributes: DatadogAPIClient::V2::CostTagDescriptionUpsertRequestDataAttributes.new({
      cloud: "aws",
      description: "AWS account that owns this cost.",
    }),
    id: "account_id",
    type: DatadogAPIClient::V2::CostTagDescriptionType::COST_TAG_DESCRIPTION,
  }),
})
api_instance.upsert_cost_tag_description_by_key("tag_key", body)
```

#### Instructions

First [install the library and its dependencies](https://docs.datadoghq.com/api/latest.md?code-lang=ruby) and then save the example to `example.rb` and run following commands:
    DD_SITE="datadoghq.com" DD_API_KEY="<DD_API_KEY>" DD_APP_KEY="<DD_APP_KEY>" rb "example.rb"
##### 

```go
// Upsert a Cloud Cost Management tag description returns "No Content" response

package main

import (
	"context"
	"fmt"
	"os"

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

func main() {
	body := datadogV2.CostTagDescriptionUpsertRequest{
		Data: datadogV2.CostTagDescriptionUpsertRequestData{
			Attributes: datadogV2.CostTagDescriptionUpsertRequestDataAttributes{
				Cloud:       datadog.PtrString("aws"),
				Description: "AWS account that owns this cost.",
			},
			Id:   datadog.PtrString("account_id"),
			Type: datadogV2.COSTTAGDESCRIPTIONTYPE_COST_TAG_DESCRIPTION,
		},
	}
	ctx := datadog.NewDefaultContext(context.Background())
	configuration := datadog.NewConfiguration()
	apiClient := datadog.NewAPIClient(configuration)
	api := datadogV2.NewCloudCostManagementApi(apiClient)
	r, err := api.UpsertCostTagDescriptionByKey(ctx, "tag_key", body)

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

#### Instructions

First [install the library and its dependencies](https://docs.datadoghq.com/api/latest.md?code-lang=go) and then save the example to `main.go` and run following commands:
    DD_SITE="datadoghq.com" DD_API_KEY="<DD_API_KEY>" DD_APP_KEY="<DD_APP_KEY>" go run "main.go"
##### 

```java
// Upsert a Cloud Cost Management tag description returns "No Content" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
import com.datadog.api.client.v2.api.CloudCostManagementApi;
import com.datadog.api.client.v2.model.CostTagDescriptionType;
import com.datadog.api.client.v2.model.CostTagDescriptionUpsertRequest;
import com.datadog.api.client.v2.model.CostTagDescriptionUpsertRequestData;
import com.datadog.api.client.v2.model.CostTagDescriptionUpsertRequestDataAttributes;

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

    CostTagDescriptionUpsertRequest body =
        new CostTagDescriptionUpsertRequest()
            .data(
                new CostTagDescriptionUpsertRequestData()
                    .attributes(
                        new CostTagDescriptionUpsertRequestDataAttributes()
                            .cloud("aws")
                            .description("AWS account that owns this cost."))
                    .id("account_id")
                    .type(CostTagDescriptionType.COST_TAG_DESCRIPTION));

    try {
      apiInstance.upsertCostTagDescriptionByKey("tag_key", body);
    } catch (ApiException e) {
      System.err.println(
          "Exception when calling CloudCostManagementApi#upsertCostTagDescriptionByKey");
      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](https://docs.datadoghq.com/api/latest.md?code-lang=java) and then save the example to `Example.java` and run following commands:
    DD_SITE="datadoghq.com" DD_API_KEY="<DD_API_KEY>" DD_APP_KEY="<DD_APP_KEY>" java "Example.java"
##### 

```rust
// Upsert a Cloud Cost Management tag description returns "No Content" response
use datadog_api_client::datadog;
use datadog_api_client::datadogV2::api_cloud_cost_management::CloudCostManagementAPI;
use datadog_api_client::datadogV2::model::CostTagDescriptionType;
use datadog_api_client::datadogV2::model::CostTagDescriptionUpsertRequest;
use datadog_api_client::datadogV2::model::CostTagDescriptionUpsertRequestData;
use datadog_api_client::datadogV2::model::CostTagDescriptionUpsertRequestDataAttributes;

#[tokio::main]
async fn main() {
    let body = CostTagDescriptionUpsertRequest::new(
        CostTagDescriptionUpsertRequestData::new(
            CostTagDescriptionUpsertRequestDataAttributes::new(
                "AWS account that owns this cost.".to_string(),
            )
            .cloud("aws".to_string()),
            CostTagDescriptionType::COST_TAG_DESCRIPTION,
        )
        .id("account_id".to_string()),
    );
    let configuration = datadog::Configuration::new();
    let api = CloudCostManagementAPI::with_config(configuration);
    let resp = api
        .upsert_cost_tag_description_by_key("tag_key".to_string(), body)
        .await;
    if let Ok(value) = resp {
        println!("{:#?}", value);
    } else {
        println!("{:#?}", resp.unwrap_err());
    }
}
```

#### Instructions

First [install the library and its dependencies](https://docs.datadoghq.com/api/latest.md?code-lang=rust) and then save the example to `src/main.rs` and run following commands:
    DD_SITE="datadoghq.com" DD_API_KEY="<DD_API_KEY>" DD_APP_KEY="<DD_APP_KEY>" cargo run
##### 

```typescript
/**
 * Upsert a Cloud Cost Management tag description returns "No Content" response
 */

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

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

const params: v2.CloudCostManagementApiUpsertCostTagDescriptionByKeyRequest = {
  body: {
    data: {
      attributes: {
        cloud: "aws",
        description: "AWS account that owns this cost.",
      },
      id: "account_id",
      type: "cost_tag_description",
    },
  },
  tagKey: "tag_key",
};

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

#### Instructions

First [install the library and its dependencies](https://docs.datadoghq.com/api/latest.md?code-lang=typescript) and then save the example to `example.ts` and run following commands:
    DD_SITE="datadoghq.com" DD_API_KEY="<DD_API_KEY>" DD_APP_KEY="<DD_APP_KEY>" tsc "example.ts"
{% /tab %}
