POST api/all/listpartners
Request Information
URI Parameters
None.
Body Parameters
GetListPartnersInput| Name | Description | Type | Additional information |
|---|---|---|---|
| SystemCode | string |
None. |
|
| PartnerID | integer |
None. |
|
| Username | string |
None. |
|
| Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"SystemCode": "sample string 1",
"PartnerID": 2,
"Username": "sample string 3",
"Password": "sample string 4"
}
application/xml, text/xml
Sample:
<GetListPartnersInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model"> <Password xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 4</Password> <Username xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 3</Username> <PartnerID>2</PartnerID> <SystemCode>sample string 1</SystemCode> </GetListPartnersInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetListPartnersInputRs| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of GetListPartnersEnt |
None. |
|
| ProcessErrorType | integer |
None. |
|
| ProcessErrorDescription | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
{
"SystemCode": "sample string 1",
"PartnerID": 2,
"PartnerName": "sample string 3"
},
{
"SystemCode": "sample string 1",
"PartnerID": 2,
"PartnerName": "sample string 3"
}
],
"ProcessErrorType": 1,
"ProcessErrorDescription": "sample string 2"
}
application/xml, text/xml
Sample:
<GetListPartnersInputRs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model">
<ProcessErrorDescription xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 2</ProcessErrorDescription>
<ProcessErrorType xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">1</ProcessErrorType>
<Data>
<GetListPartnersEnt>
<PartnerID>2</PartnerID>
<PartnerName>sample string 3</PartnerName>
<SystemCode>sample string 1</SystemCode>
</GetListPartnersEnt>
<GetListPartnersEnt>
<PartnerID>2</PartnerID>
<PartnerName>sample string 3</PartnerName>
<SystemCode>sample string 1</SystemCode>
</GetListPartnersEnt>
</Data>
</GetListPartnersInputRs>