v1
latestOpenAPI 3.1.02026-07-2419603.1 MBData Activation
Update custom attribute
Updates name of the existing custom attribute. Requires manage permission.
put/api/cdp/settings/v1/app/{app_id}/attribute/{column_id}
Path parameters
app_idstring uuid required
ID of the app.
Example:3929d56c-cd62-4001-a4fc-013f5f954691
column_idstring required
Example:custom_attribute_1
Column ID of an attribute
Request body
Example request
{
"name": "Age of the user"
}Response
OK
Example response
{
"column_id": "custom_attribute_3",
"data_type": "string",
"aggregation": "first",
"event_data_key": "user_age",
"column_meta": {
"column_name": "Age of the user",
"column_type": "number",
"column_category": [
"Custom attribute"
],
"value_selectors": [
"first"
],
"extractions": [
"first"
],
"scope": "profile"
}
}