POST api/Auth/1/1/SearchAccountExtByMobile

Consultar cliente de cuenta externa por número de celular


Información del Request

Parametros de la URI

No posee parametros

Parametros del Body

KinPOS.API.Models.SearchAccountExtByMobileRequest
NombreDescripciónTipoInformación Adicional
contactPhoneNum

Collection of KinPOS.API.Models.Phone

N/A

programIdentification

Identificador del programa CMS

string

N/A

auditInfo

Información de auditoría

SFE.Core.Models.CMS.RequestAuditInfo

N/A

sessionInfo

Información de la sesión de usuario

SFE.Core.Models.AUTH.SessionCredential

N/A

language

(OPCIONAL) Código de dos letras minúsculas para especificar el idioma a usar en mensajes y documentos. ISO 639-1.

string

N/A

Ejemplos de request:

application/json, text/json

Ejemplo:
{
  "language": "sample string 1",
  "contactPhoneNum": [
    {
      "phoneNum": "sample string 1"
    },
    {
      "phoneNum": "sample string 1"
    }
  ],
  "programIdentification": "sample string 1",
  "auditInfo": {
    "userAltId": "sample string 1",
    "deviceId": "sample string 2",
    "deviceAltId": "sample string 3",
    "ipAddress": "sample string 4",
    "latitude": "sample string 5",
    "longitude": "sample string 6"
  },
  "sessionInfo": {
    "userId": 1,
    "userAltId": "sample string 2",
    "sessionId": 3,
    "sessionAltId": "sample string 4"
  }
}

application/xml, text/xml

Ejemplo:
<SearchAccountExtByMobileRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KinPOS.API.Models">
  <auditInfo xmlns="http://schemas.datacontract.org/2004/07/SFE.Core.Models.CMS">
    <deviceAltId>sample string 3</deviceAltId>
    <deviceId>sample string 2</deviceId>
    <ipAddress>sample string 4</ipAddress>
    <latitude>sample string 5</latitude>
    <longitude>sample string 6</longitude>
    <userAltId>sample string 1</userAltId>
  </auditInfo>
  <language xmlns="http://schemas.datacontract.org/2004/07/SFE.Core.Models.CMS">sample string 1</language>
  <programIdentification xmlns="http://schemas.datacontract.org/2004/07/SFE.Core.Models.CMS">sample string 1</programIdentification>
  <sessionInfo xmlns:d2p1="http://schemas.datacontract.org/2004/07/SFE.Core.Models.AUTH" xmlns="http://schemas.datacontract.org/2004/07/SFE.Core.Models.CMS">
    <d2p1:sessionAltId>sample string 4</d2p1:sessionAltId>
    <d2p1:sessionId>3</d2p1:sessionId>
    <d2p1:userAltId>sample string 2</d2p1:userAltId>
    <d2p1:userId>1</d2p1:userId>
  </sessionInfo>
  <contactPhoneNum>
    <Phone>
      <phoneNum>sample string 1</phoneNum>
    </Phone>
    <Phone>
      <phoneNum>sample string 1</phoneNum>
    </Phone>
  </contactPhoneNum>
</SearchAccountExtByMobileRequest>

Información del Response

Descripción de los parametros

KinPOS.API.GenericResultOfKinPOS.API.Models.SearchAccountExtByMobileResponse
NombreDescripciónTipoInformación Adicional
encryptedData

string

N/A

response

KinPOS.API.Models.SearchAccountExtByMobileResponse

N/A

Ejemplos de response:

application/json, text/json

Ejemplo:
{
  "encryptedData": "sample string 1"
}

application/xml

Ejemplo:

An exception has occurred while using the formatter 'System.Net.Http.Formatting.XmlMediaTypeFormatter' to generate sample for media type 'application/xml'. Exception message: Type 'KinPOS.API.Models.SearchAccountExtByMobileResponse' cannot be serialized. Consider marking it with the DataContractAttribute attribute, and marking all of its members you want serialized with the DataMemberAttribute attribute. If the type is a collection, consider marking it with the CollectionDataContractAttribute. See the Microsoft .NET Framework documentation for other supported types.

text/xml

Ejemplo:

An exception has occurred while using the formatter 'System.Net.Http.Formatting.XmlMediaTypeFormatter' to generate sample for media type 'text/xml'. Exception message: Type 'KinPOS.API.Models.SearchAccountExtByMobileResponse' cannot be serialized. Consider marking it with the DataContractAttribute attribute, and marking all of its members you want serialized with the DataMemberAttribute attribute. If the type is a collection, consider marking it with the CollectionDataContractAttribute. See the Microsoft .NET Framework documentation for other supported types.