GET v2/Notification/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Notification
NameDescriptionTypeAdditional information
Title

string

Required

Max length: 60

MessageText

string

Required

Max length: 3000

SummaryText

string

Max length: 1000

Push

boolean

Required

TargetDateTime

date

None.

ExpiredTargetDateTime

date

None.

PushedDateTime

date

None.

SentDateTime

date

None.

SendImmediately

boolean

Required

CreatedDateTime

date

None.

Id

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Title": "sample string 1",
  "MessageText": "sample string 2",
  "SummaryText": "sample string 3",
  "Push": true,
  "TargetDateTime": "2025-12-08T12:56:49",
  "ExpiredTargetDateTime": "2025-12-08T12:56:49",
  "PushedDateTime": "2025-12-08T12:56:49",
  "SentDateTime": "2025-12-08T12:56:49",
  "SendImmediately": true,
  "CreatedDateTime": "2025-12-08T12:56:49",
  "Id": 7
}

application/xml, text/xml

Sample:
<Notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Go4Gold.Domain.Entities">
  <Id>7</Id>
  <CreatedDateTime>2025-12-08T12:56:49.1164586-06:00</CreatedDateTime>
  <ExpiredTargetDateTime>2025-12-08T12:56:49.1164586-06:00</ExpiredTargetDateTime>
  <MessageText>sample string 2</MessageText>
  <Push>true</Push>
  <PushedDateTime>2025-12-08T12:56:49.1164586-06:00</PushedDateTime>
  <SendImmediately>true</SendImmediately>
  <SentDateTime>2025-12-08T12:56:49.1164586-06:00</SentDateTime>
  <SummaryText>sample string 3</SummaryText>
  <TargetDateTime>2025-12-08T12:56:49.1164586-06:00</TargetDateTime>
  <Title>sample string 1</Title>
</Notification>