cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X

How to Delete a DataShape Filed Through Service in ThingWorx?

JasonKwan987
8-Gravel

How to Delete a DataShape Filed Through Service in ThingWorx?

嘿,

我想通过服务删除DataShape字段。我找到了使用Json和mathod创建DataShape来创建字段的代码片段。但是我找不到片段来删除服务中的DataShape字段。

请告诉我。

1 ACCEPTED SOLUTION

Accepted Solutions
Pratibha
5-Regular Member
(To:JasonKwan987)

You can delete a DataShape Field using RemoveFieldDefinition.

You can follow below steps to delete DataShape field through service:

1. Create a Thing

2. Add a service

3. Provide the name.

4. Click on Other entities and search for the datashape where you want to delete the field definition.

5. Click on the service and use RemoveFieldDefinition and execute.

 

eg: DataShapes["testDatashape"].RemoveFieldDefinition({
name: "empName" /* STRING */
});

View solution in original post

2 REPLIES 2
Pratibha
5-Regular Member
(To:JasonKwan987)

You can delete a DataShape Field using RemoveFieldDefinition.

You can follow below steps to delete DataShape field through service:

1. Create a Thing

2. Add a service

3. Provide the name.

4. Click on Other entities and search for the datashape where you want to delete the field definition.

5. Click on the service and use RemoveFieldDefinition and execute.

 

eg: DataShapes["testDatashape"].RemoveFieldDefinition({
name: "empName" /* STRING */
});

I test the snippets. It's helpful. Thanks a lot.

Top Tags