GET api/DMS/1/0/GetCommerceList?SearchKeyword={SearchKeyword}&PageLimit={PageLimit}&Page={Page}&affiliateId={affiliateId}&identification={identification}
Obtiene el listado de comercios registrados en el sistema.
Información del Request
Parametros de la URI
| Nombre | Descripción | Tipo | Información Adicional |
|---|---|---|---|
| SearchKeyword | string |
N/A |
|
| PageLimit | integer |
N/A |
|
| Page | integer |
N/A |
|
| affiliateId | string |
Default value is |
|
| identification | string |
Default value is |
Parametros del Body
Información del Response
Descripción de los parametros
SFE.Core.Layer.Models.FunctionResultArrayOfSFE.Core.Modules.SystemCore.AccountSimple| Nombre | Descripción | Tipo | Información Adicional |
|---|---|---|---|
| Result | Collection of SFE.Core.Modules.SystemCore.AccountSimple |
N/A |
|
| ResponseCode | string |
N/A |
|
| TotalRecords | integer |
N/A |
Ejemplos de response:
application/json, text/json
Ejemplo:
{
"Result": [
{
"accountId": 1,
"parentAccountId": 1,
"description": "sample string 2",
"affiliateId": "sample string 3"
},
{
"accountId": 1,
"parentAccountId": 1,
"description": "sample string 2",
"affiliateId": "sample string 3"
}
],
"ResponseCode": "sample string 1",
"TotalRecords": 2
}
application/xml, text/xml
Ejemplo:
<FunctionResultArrayOfAccountSimplewGqVgJWH xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SFE.Core.Layer.Models">
<ResponseCode>sample string 1</ResponseCode>
<Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/SFE.Core.Modules.SystemCore">
<d2p1:AccountSimple>
<d2p1:accountId>1</d2p1:accountId>
<d2p1:affiliateId>sample string 3</d2p1:affiliateId>
<d2p1:description>sample string 2</d2p1:description>
<d2p1:parentAccountId>1</d2p1:parentAccountId>
</d2p1:AccountSimple>
<d2p1:AccountSimple>
<d2p1:accountId>1</d2p1:accountId>
<d2p1:affiliateId>sample string 3</d2p1:affiliateId>
<d2p1:description>sample string 2</d2p1:description>
<d2p1:parentAccountId>1</d2p1:parentAccountId>
</d2p1:AccountSimple>
</Result>
<TotalRecords>2</TotalRecords>
</FunctionResultArrayOfAccountSimplewGqVgJWH>