Skip to main content
1-Visitor
April 8, 2020
Solved

How to Delete a DataShape Filed Through Service in ThingWorx?

  • April 8, 2020
  • 1 reply
  • 1446 views

嘿,

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

请告诉我。

Best answer by Pratibha

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 */
});

1 reply

Pratibha5-Regular MemberAnswer
5-Regular Member
April 8, 2020

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 */
});

1-Visitor
April 8, 2020

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