GET api/punters/{platform}/notifications/punter-account/{punterAccount}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
platform

string

Required

punterAccount

integer

Required

Body Parameters

None.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfBO.Models.Punter.PunterNotificationsModel
NameDescriptionTypeAdditional information
ResponseObject

BO.Models.Punter.PunterNotificationsModel

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": {
    "hideEnvelope": true,
    "unreadMessagesCount": 1,
    "notifications": [
      {
        "id": 1,
        "punterAccount": 2,
        "punterFirstName": "sample string 3",
        "read": true,
        "deleted": true,
        "createdDate": "2025-12-14T18:04:30.554247+02:00",
        "title": "sample string 7",
        "content": "sample string 8",
        "externalURL": "sample string 9",
        "imageURL": "sample string 10",
        "target": 1,
        "type": 0
      },
      {
        "id": 1,
        "punterAccount": 2,
        "punterFirstName": "sample string 3",
        "read": true,
        "deleted": true,
        "createdDate": "2025-12-14T18:04:30.554247+02:00",
        "title": "sample string 7",
        "content": "sample string 8",
        "externalURL": "sample string 9",
        "imageURL": "sample string 10",
        "target": 1,
        "type": 0
      }
    ]
  },
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfPunterNotificationsModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <HideEnvelope>true</HideEnvelope>
    <UnreadMessagesCount>1</UnreadMessagesCount>
    <Notifications>
      <PunterNotification>
        <Id>1</Id>
        <PunterAccount>2</PunterAccount>
        <PunterFirstName>sample string 3</PunterFirstName>
        <Read>true</Read>
        <Deleted>true</Deleted>
        <CreatedDate>2025-12-14T18:04:30.554247+02:00</CreatedDate>
        <Title>sample string 7</Title>
        <Content>sample string 8</Content>
        <ExternalURL>sample string 9</ExternalURL>
        <ImageURL>sample string 10</ImageURL>
        <Target>Default</Target>
        <Type>Other</Type>
      </PunterNotification>
      <PunterNotification>
        <Id>1</Id>
        <PunterAccount>2</PunterAccount>
        <PunterFirstName>sample string 3</PunterFirstName>
        <Read>true</Read>
        <Deleted>true</Deleted>
        <CreatedDate>2025-12-14T18:04:30.554247+02:00</CreatedDate>
        <Title>sample string 7</Title>
        <Content>sample string 8</Content>
        <ExternalURL>sample string 9</ExternalURL>
        <ImageURL>sample string 10</ImageURL>
        <Target>Default</Target>
        <Type>Other</Type>
      </PunterNotification>
    </Notifications>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfPunterNotificationsModel>