GET api/Proforma?StaffCode={StaffCode}&Password={Password}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| StaffCode | string |
Required |
|
| Password | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Proforma| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| GroupName | string |
None. |
|
| Name | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "sample string 1",
"GroupName": "sample string 2",
"Name": "sample string 3"
},
{
"Id": "sample string 1",
"GroupName": "sample string 2",
"Name": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfProforma xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ImpresAPI.Controllers">
<Proforma>
<GroupName>sample string 2</GroupName>
<Id>sample string 1</Id>
<Name>sample string 3</Name>
</Proforma>
<Proforma>
<GroupName>sample string 2</GroupName>
<Id>sample string 1</Id>
<Name>sample string 3</Name>
</Proforma>
</ArrayOfProforma>