GET api/GUI/AppGuiSetting?projectId={projectId}&issueTypeId={issueTypeId}
Get gui setting in H5 App based on issue type
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
projectId | integer |
Required |
|
issueTypeId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Get gui setting in H5 App based on issue type
API_Data_H5AppGuiSettingName | Description | Type | Additional information |
---|---|---|---|
Success | boolean |
None. |
|
Error | ErrorInfo |
None. |
|
Data | H5AppGuiSetting |
None. |
Response Formats
application/json, text/json
Sample:
{ "Success": true, "Error": { "ErrorCode": 1, "ErrorMessage": "sample string 1" }, "Data": { "ShowFields": "sample string 1", "ShowColor": "sample string 2" } }
application/xml, text/xml
Sample:
<API_Data_H5AppGuiSetting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common"> <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Project"> <d2p1:ShowColor>sample string 2</d2p1:ShowColor> <d2p1:ShowFields>sample string 1</d2p1:ShowFields> </Data> <Error> <ErrorCode>1</ErrorCode> <ErrorMessage>sample string 1</ErrorMessage> </Error> <Success>true</Success> </API_Data_H5AppGuiSetting>