Add custom data in bulk
PUT/api/v1/catalog/custom-data
Add multiple key/values of custom data to multiple entities
Request
Query Parameters
force boolean
When true, overrides values that were defined in the catalog descriptor. Will be overwritten the next time the catalog descriptor is processed.
- application/json
Body
required
- Array [
- ]
values objectrequired
Map of entity tag -> custom data key/values
property name* object[]
Map of entity tag -> custom data key/values
description string
key stringrequired
Custom data key for the entity
value objectrequired
Value for the key; can be any valid JSON type
value object
Responses
- 200
Successfully created/updated custom data
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
values object[]required
dateUpdated date-timerequired
description string
id int64
key stringrequired
source stringrequired
Possible values: [YAML
, API
, INTEGRATION
]
value objectrequired
{
"values": [
{
"dateUpdated": "2023-09-22T22:13:27.383Z",
"description": "string",
"id": 0,
"key": "string",
"source": "YAML",
"value": {}
}
]
}
Loading...