How to: Update Entity Type
For information about prerequisites, see Integrate with Entities.
To update information associated with an Entity Type, call the Update Entity Type endpoint. Use the entityTypePluralName
in the path parameter and pass a request body similar to the following:
{
"category": [
{
"name": "four-wheeler",
"description": "four-wheeler vehicle.",
"subCategory": [
"bus"
]
}
],
"attributes": [
{
"name": "mileage",
"dataType": "number",
"indexed": false
}
]
}
Updated 11 days ago