POST api/Notificaciones/SendNotificacionPush

Request Information

URI Parameters

None.

Body Parameters

NotificacionPushDto
NameDescriptionTypeAdditional information
Token

string

None.

CodigoAsociacion

string

None.

IdUsuario

integer

None.

TituloPush

string

None.

CuerpoPush

string

None.

UrlPushRedirect

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Token": "sample string 1",
  "CodigoAsociacion": "sample string 2",
  "IdUsuario": 3,
  "TituloPush": "sample string 4",
  "CuerpoPush": "sample string 5",
  "UrlPushRedirect": "sample string 6"
}

application/xml, text/xml

Sample:
<NotificacionPushDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Evweb.Code.Shared.DataTransferObject">
  <CodigoAsociacion>sample string 2</CodigoAsociacion>
  <CuerpoPush>sample string 5</CuerpoPush>
  <IdUsuario>3</IdUsuario>
  <TituloPush>sample string 4</TituloPush>
  <Token>sample string 1</Token>
  <UrlPushRedirect>sample string 6</UrlPushRedirect>
</NotificacionPushDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.