POST PEDIDOS/NOTIFICAR_MOVIL_MASIVAMENTE_TEST
Método que permite notificar masivamente a todos los moviles registrados en Lipigas.
Request Information
URI Parameters
None.
Body Parameters
PushNotificationWithOrderVM| Name | Description | Type | Additional information |
|---|---|---|---|
| ID_PEDIDO | integer |
None. |
|
| ID_ESTADO | integer |
None. |
|
| MENSAJE | string |
None. |
|
| PLATAFORMA | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID_PEDIDO": 1,
"ID_ESTADO": 2,
"MENSAJE": "sample string 3",
"PLATAFORMA": "sample string 4"
}
application/xml, text/xml
Sample:
<PushNotificationWithOrderVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LipiGasApi.ViewModels.Order"> <ID_ESTADO>2</ID_ESTADO> <ID_PEDIDO>1</ID_PEDIDO> <MENSAJE>sample string 3</MENSAJE> <PLATAFORMA>sample string 4</PLATAFORMA> </PushNotificationWithOrderVM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>