Update Custom Entity Type

Update Custom Entity Type

Update specified custom entity type

Request
URI
PUT
https://{api_host}/cloudapi/customEntityTypes/{customEntityTypeId}
COPY
Path Parameters
string
customEntityTypeId
Required

customEntityTypeId


Request Body
CustomEntityType of type(s) application/json
Optional

Show optional properties

{
    "vroId": "string",
    "vroDynamicType": "string",
    "name": "string",
    "nss": "string"
}
{
    "id": "string",
    "vroId": "string",
    "vroDynamicType": "string",
    "name": "string",
    "nss": "string",
    "description": "string",
    "tenantScoped": false,
    "providerScoped": false,
    "publishAll": false
}
Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns CustomEntityType of type(s) application/json;version=39.1
"CustomEntityType Object"
string
id
Optional

UUID for custom entity type. This is immutable.

string
vroId
Required

vroId

string
vroDynamicType
Required

This refers to VRO's dynamic type.

string
name
Required

Display name.

string
nss
Required

This refers to a unique namespace specific string.

string
description
Optional
Constraints: default:

description

boolean
tenantScoped
Optional
Constraints: default: true

tenantScoped

boolean
providerScoped
Optional
Constraints: default: true

providerScoped

boolean
publishAll
Optional

Read-only value indicating publishAll state


Code Samples
COPY
                    curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"name:"string","nss:"string","vroDynamicType:"string","vroId:"string"}' https://{api_host}/cloudapi/customEntityTypes/{customEntityTypeId}