POST api/Company/GetRecipientList
Request Information
URI Parameters
None.
Body Parameters
GetRecipientListMobileRequestName | Description | Type | Additional information |
---|---|---|---|
RecipientType | decimal number |
None. |
|
RecipientName | string |
None. |
|
CompanyId | decimal number |
None. |
|
PageIndex | integer |
None. |
|
PageSize | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "RecipientType": 1.0, "RecipientName": "sample string 2", "CompanyId": 3.0, "PageIndex": 4, "PageSize": 5 }
application/xml, text/xml
Sample:
<GetRecipientListMobileRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.Model.Mobile"> <CompanyId>3</CompanyId> <PageIndex>4</PageIndex> <PageSize>5</PageSize> <RecipientName>sample string 2</RecipientName> <RecipientType>1</RecipientType> </GetRecipientListMobileRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
GetRecipientListMobileResponseName | Description | Type | Additional information |
---|---|---|---|
RecipientList | Collection of RecipientMobileModel |
None. |
|
Result | ResultType |
None. |
|
ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "RecipientList": [ { "IdAlici": 1.0, "Unvan_Ad_Soyad": "sample string 2", "VknTckn": "sample string 3", "RecipientType": 0 }, { "IdAlici": 1.0, "Unvan_Ad_Soyad": "sample string 2", "VknTckn": "sample string 3", "RecipientType": 0 } ], "Result": 0, "ErrorMessage": "sample string 1" }
application/xml, text/xml
Sample:
<GetRecipientListMobileResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.Model.Mobile"> <_x003C_ErrorMessage_x003E_k__BackingField>sample string 1</_x003C_ErrorMessage_x003E_k__BackingField> <_x003C_Result_x003E_k__BackingField>Success</_x003C_Result_x003E_k__BackingField> <RecipientList> <RecipientMobileModel> <IdAlici>1</IdAlici> <RecipientType>None</RecipientType> <Unvan_Ad_Soyad>sample string 2</Unvan_Ad_Soyad> <VknTckn>sample string 3</VknTckn> </RecipientMobileModel> <RecipientMobileModel> <IdAlici>1</IdAlici> <RecipientType>None</RecipientType> <Unvan_Ad_Soyad>sample string 2</Unvan_Ad_Soyad> <VknTckn>sample string 3</VknTckn> </RecipientMobileModel> </RecipientList> </GetRecipientListMobileResponse>