Important Update: Some Community URL Redirects are Under Maintenance. Learn More. .

cancel
Showing results for 
Search instead for 
Did you mean: 

Get Section Name using Rest API

Saravanan
Contributor III

Is there any way to get section name by calling Rest APIs?  In this API call "http://rsaarcher/platformapi/core/system/levellayout/level/*levelid* ", it results LevelLayoutSectionId but not the section name.  My objective is to create a data dictionary spreadsheet for an application using rest api's.

 

Thanks in advance for your responses.

1 ACCEPTED SOLUTION

Accepted Solutions

Ilya_Khen
Champion III

Saravanan Rajaram,

 

There is a name inside the response.If you parse response, then each element

"SectionType": 1,

contains the following:

 "PanelText": null,
"HelpText": null,
"IsHelpIconDisplayed": false,
"IsPanelTextDisplayed": false,
"Id": ####,
"LevelLayoutTabId": ##,
"SortOrder": #,
"Name": "SOME SECTION NAME",
"Collapsible": true,
"Collapsed": false,
"Guid": "######-####-###-###-#######",
"ASOStatus": 0,
"UpdateInformation": {
"CreateDate": null,
"UpdateDate": null,
"CreateLogin": null,
"UpdateLogin": null
}‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍

after LayoutItems.

 

You can understand this better by utilizing Jeff Letterman's tool:

https://community.rsa.com/docs/DOC-81721

View solution in original post

1 REPLY 1

Ilya_Khen
Champion III

Saravanan Rajaram,

 

There is a name inside the response.If you parse response, then each element

"SectionType": 1,

contains the following:

 "PanelText": null,
"HelpText": null,
"IsHelpIconDisplayed": false,
"IsPanelTextDisplayed": false,
"Id": ####,
"LevelLayoutTabId": ##,
"SortOrder": #,
"Name": "SOME SECTION NAME",
"Collapsible": true,
"Collapsed": false,
"Guid": "######-####-###-###-#######",
"ASOStatus": 0,
"UpdateInformation": {
"CreateDate": null,
"UpdateDate": null,
"CreateLogin": null,
"UpdateLogin": null
}‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍

after LayoutItems.

 

You can understand this better by utilizing Jeff Letterman's tool:

https://community.rsa.com/docs/DOC-81721