POST Api/Notification/GetPushInfoForRegion

Request Information

URI Parameters

None.

Body Parameters

RegionPushInfoRequest
NameDescriptionTypeAdditional information
ApiKey

string

None.

End

date

None.

Latitude

decimal number

None.

Longitude

decimal number

None.

Radius

decimal number

None.

Start

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ApiKey": "sample string 1",
  "End": "2025-12-13T09:40:14.4863829+01:00",
  "Latitude": 2.1,
  "Longitude": 3.1,
  "Radius": 4.1,
  "Start": "2025-12-13T09:40:14.4863829+01:00"
}

application/xml, text/xml

Sample:
<RegionPushInfoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MPW.PIMS2016.PimsApi.Models">
  <ApiKey>sample string 1</ApiKey>
  <End>2025-12-13T09:40:14.4863829+01:00</End>
  <Latitude>2.1</Latitude>
  <Longitude>3.1</Longitude>
  <Radius>4.1</Radius>
  <Start>2025-12-13T09:40:14.4863829+01:00</Start>
</RegionPushInfoRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of PushInfoDTO
NameDescriptionTypeAdditional information
Language

string

None.

Platform

string

None.

Token

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Language": "sample string 1",
    "Platform": "sample string 2",
    "Token": "sample string 3"
  },
  {
    "Language": "sample string 1",
    "Platform": "sample string 2",
    "Token": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPushInfoDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MPW.PIMS2016.BL.PimsApi.Model">
  <PushInfoDTO>
    <Language>sample string 1</Language>
    <Platform>sample string 2</Platform>
    <Token>sample string 3</Token>
  </PushInfoDTO>
  <PushInfoDTO>
    <Language>sample string 1</Language>
    <Platform>sample string 2</Platform>
    <Token>sample string 3</Token>
  </PushInfoDTO>
</ArrayOfPushInfoDTO>