Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2019-06-08 03:14 AM
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.
2019-06-08 08:35 AM
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:
2019-06-08 08:35 AM
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: