Edit a Table Group - Intergraph Smart Reference Data - Version 2020 (10.0) - Help - Intergraph

Intergraph Smart Reference Data REST API (2020)

Language
English
Product
Intergraph Smart Reference Data
Search by Category
Help
Smart Materials/Smart Reference Data Version
2020 (10.0)

Headers

Header name

Description

Required

Values

Authorization

Access token

Required

Bearer <access_token>

Content-Type

Request type format

Required

application/json

PUT BODY

Element

Description

Type

Required

Notes

TableGroupName

Name of the new table group that you want to create

String

Required

StandardName

Name of the standard

String

Required

Table type must be in uppercase. Example, ANSI

Sample request

PUT

https://<appserver with domain>/<virtual_directory>/Srd/V2/Projects('SDB')/Disciplines(5020)/Nls(1)/Tables(7490)/TableGroups(<TableGroupId>)

Where TableGroupId is the unique id to which you want to edit the table group details.

{

"TableGroupName": "EDIT_TG",

"StandardName": "ANSI"

}

Response

Element

Description

Type

Notes

TableId

A unique ID for the table.

Integer

Generated by the software

TableGroupId

A unique ID for the table group.

Integer

Project

The project or product group from where the table is retrieved.

String

TableGroupName

Name of the table group.

String

StandardId

A unique standard id.

String

StandardName

Name of the standard

String

ControlStatus

Sets the control status of the instance.

Default value is 1

Sample response

{

"@odata.context": "https://<appserver with domain>/<virtual_directory>/Srd/V2/$metadata#Projects('SDB')/Disciplines(5020)/Nls(1)/Tables(7490)/TableGroups/$entity",

"TableId": 7490,

"TableGroupId": 12418,

"Project": "SDB",

"TableGroupName": "EDIT_TG",

"StandardId": 5100,

"StandardName": "ANSI",

"ControlStatus": 1,

}