Create, Update, and Delete operations for Construction Work Area - Intergraph Smart Construction - 8 - Reference - Hexagon PPM

Intergraph Smart Construction Retired Feature Reference

Language
English
Product
Intergraph Smart Construction
Search by Category
Reference
Smart Construction Version
8

Create Construction Work Area

You can create construction work area (CWA) along with their properties using the Web APIs.

POST {{url}}/SPCCreateConstructionWorkArea

Content

{

CWACreateInfo:

{

"Name": "[Name of the CWA]",

"Notes": "[Notes for the CWA]",

"Scope": "[Area of the CWA]",

"Description": "[Description of the CWA]"

},

}

Required information

  • Name for the Construction Work Area.

Notes

None

For example,

{

CWACreateInfo:

{

"Name": "Test CWA",

"Notes": "This is Sample CWA",

"Scope": "Utility Station Area",

"Description": "Test CWA"

},

}

Update Construction Work Area

You can update some properties for the construction work area (CWA) using the Web APIs.

POST {{url}}/SPCUpdateConstructionWorkArea

Content

{

“ID”: “[Construction Work Area ID]

CWAUpdateInfo:

{

"Notes": "[Notes for the CWA]",

"Scope": "[Area of the CWA]",

"Description": "[Description of the CWA]"

},

}

Required information

  • Package ID of the CWA for which you are updating the properties.

  • CWAUpdateInfo class with the required properties and their values.

Notes

None

For example,

{

CWAUpdateInfo:

{

"Notes": "Update the Sample CWA",

"Scope": "Updated to Utility Station Area",

"Description": "Updated CWA"

},

}

Delete Construction Work Area

You can delete a construction work area (CWA) using the Web APIs.

POST {{url}}/SPCDeleteConstructionWorkArea

Content

{

"ID": "[Package ID of the CWA]"

}

Required information

  • Package ID of the CWA.

Notes

None

For example,

{

"ID": "6GWE000A"

}