POST api/Notifications?version={version}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
version

string

Default value is

Body Parameters

BETInternalWebServices.Controllers.Notification
NameDescriptionTypeAdditional information
Id

integer

None.

Title

string

None.

Message

string

None.

ImageURL

string

None.

ExternalURL

string

None.

Created

date

None.

Processed

date

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "title": "sample string 2",
  "message": "sample string 3",
  "imageURL": "sample string 4",
  "externalURL": "sample string 5",
  "created": "2025-12-15T11:54:07.7796676+02:00",
  "processed": "2025-12-15T11:54:07.7796676+02:00"
}

application/xml, text/xml

Sample:
<Notification xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Id>1</Id>
  <Title>sample string 2</Title>
  <Message>sample string 3</Message>
  <ImageURL>sample string 4</ImageURL>
  <ExternalURL>sample string 5</ExternalURL>
  <Created>2025-12-15T11:54:07.7796676+02:00</Created>
  <Processed>2025-12-15T11:54:07.7796676+02:00</Processed>
</Notification>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfBETInternalWebServices.Controllers.Notification
NameDescriptionTypeAdditional information
ResponseObject

BETInternalWebServices.Controllers.Notification

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": {
    "id": 1,
    "title": "sample string 2",
    "message": "sample string 3",
    "imageURL": "sample string 4",
    "externalURL": "sample string 5",
    "created": "2025-12-15T11:54:07.7952726+02:00",
    "processed": "2025-12-15T11:54:07.7952726+02:00"
  },
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfNotification xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <Id>1</Id>
    <Title>sample string 2</Title>
    <Message>sample string 3</Message>
    <ImageURL>sample string 4</ImageURL>
    <ExternalURL>sample string 5</ExternalURL>
    <Created>2025-12-15T11:54:07.7952726+02:00</Created>
    <Processed>2025-12-15T11:54:07.7952726+02:00</Processed>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfNotification>