GET api/AutoCode/Get?screenCode={screenCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| screenCode | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of AutoCodeGetDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ScreenCode | string |
None. |
|
| CodeFormat | string |
None. |
|
| ID | globally unique identifier |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"screenCode": "sample string 1",
"codeFormat": "sample string 2",
"id": "65fc4407-600e-449c-9ef9-ab6d00d41ee9"
},
{
"screenCode": "sample string 1",
"codeFormat": "sample string 2",
"id": "65fc4407-600e-449c-9ef9-ab6d00d41ee9"
}
]
application/xml, text/xml
Sample:
<ArrayOfAutoCodeGetDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RS.Core.Service.DTOs">
<AutoCodeGetDto>
<ID>65fc4407-600e-449c-9ef9-ab6d00d41ee9</ID>
<CodeFormat>sample string 2</CodeFormat>
<ScreenCode>sample string 1</ScreenCode>
</AutoCodeGetDto>
<AutoCodeGetDto>
<ID>65fc4407-600e-449c-9ef9-ab6d00d41ee9</ID>
<CodeFormat>sample string 2</CodeFormat>
<ScreenCode>sample string 1</ScreenCode>
</AutoCodeGetDto>
</ArrayOfAutoCodeGetDto>
text/html
Sample:
[{"ScreenCode":"sample string 1","CodeFormat":"sample string 2","ID":"65fc4407-600e-449c-9ef9-ab6d00d41ee9"},{"ScreenCode":"sample string 1","CodeFormat":"sample string 2","ID":"65fc4407-600e-449c-9ef9-ab6d00d41ee9"}]