GET api/ErpVTFormpathanddesc?MODULE_NAME={MODULE_NAME}&FORM_NAME={FORM_NAME}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
MODULE_NAME | string |
Required |
|
FORM_NAME | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ErpVTFormpathanddescListAiResponseName | Description | Type | Additional information |
---|---|---|---|
status | string |
None. |
|
message | string |
None. |
|
response | Collection of ErpVTFormpathanddesc |
None. |
Response Formats
application/json, text/json
Sample:
{ "status": "sample string 1", "message": "sample string 2", "response": [ { "FORM_PATH": "sample string 1", "FORM_DESCRIPTION": "sample string 2" }, { "FORM_PATH": "sample string 1", "FORM_DESCRIPTION": "sample string 2" } ] }
text/html
Sample:
{"status":"sample string 1","message":"sample string 2","response":[{"FORM_PATH":"sample string 1","FORM_DESCRIPTION":"sample string 2"},{"FORM_PATH":"sample string 1","FORM_DESCRIPTION":"sample string 2"}]}
application/xml, text/xml
Sample:
<ErpVTFormpathanddescListAiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.ERP_VT"> <message>sample string 2</message> <response> <ErpVTFormpathanddesc> <FORM_DESCRIPTION>sample string 2</FORM_DESCRIPTION> <FORM_PATH>sample string 1</FORM_PATH> </ErpVTFormpathanddesc> <ErpVTFormpathanddesc> <FORM_DESCRIPTION>sample string 2</FORM_DESCRIPTION> <FORM_PATH>sample string 1</FORM_PATH> </ErpVTFormpathanddesc> </response> <status>sample string 1</status> </ErpVTFormpathanddescListAiResponse>
multipart/form-data
Sample:
--MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="status" sample string 1 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="message" sample string 2 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="response[0].FORM_PATH" sample string 1 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="response[0].FORM_DESCRIPTION" sample string 2 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="response[1].FORM_PATH" sample string 1 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="response[1].FORM_DESCRIPTION" sample string 2 --MultipartDataMediaFormatterBoundary1q2w3e--