Custom Attributes
Create and manage Custom Attributes for your organization.
Last updated
Create and manage Custom Attributes for your organization.
Last updated
GET /api/v1/data/custom-attributes HTTP/1.1
Host: connect.<REGION>.decube.io
Accept: */*
[
{
"id": 1,
"type": "text",
"label": "text",
"description": "text",
"allowed_objects": [
"source"
]
}
]POST /api/v1/data/custom-attributes HTTP/1.1
Host: connect.<REGION>.decube.io
Content-Type: application/json
Accept: */*
Content-Length: 97
{
"label": "text",
"description": "text",
"allowed_objects": [
"source"
],
"type": "text",
"cfg_max_char": 1
}PUT /api/v1/data/custom-attributes HTTP/1.1
Host: connect.<REGION>.decube.io
Content-Type: application/json
Accept: */*
Content-Length: 104
{
"label": "text",
"description": "text",
"allowed_objects": [
"source"
],
"id": 1,
"type": "text",
"cfg_max_char": 1
}DELETE /api/v1/data/custom-attributes?id=1 HTTP/1.1
Host: connect.<REGION>.decube.io
Accept: */*