GET api/Customer/{id}/Notification

Returns an Individual Customer

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The id of the customer to retrieve

string

Required

Body Parameters

None.

Response Information

Resource Description

Customer

Collection of CustomerNotification
NameDescriptionTypeAdditional information
MessageID

string

None.

CustomerID

string

None.

NotificationType

CustomerNotificationType

None.

Message

string

None.

Memo

string

None.

DateReceived

date

None.

Processed

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MessageID": "sample string 1",
    "CustomerID": "sample string 2",
    "NotificationType": "Unknown",
    "Message": "sample string 3",
    "Memo": "sample string 4",
    "DateReceived": "2025-10-01T06:21:43.6126017+00:00",
    "Processed": true
  },
  {
    "MessageID": "sample string 1",
    "CustomerID": "sample string 2",
    "NotificationType": "Unknown",
    "Message": "sample string 3",
    "Memo": "sample string 4",
    "DateReceived": "2025-10-01T06:21:43.6126017+00:00",
    "Processed": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerNotification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Yummy.Portal.Models">
  <CustomerNotification>
    <CustomerID>sample string 2</CustomerID>
    <DateReceived>2025-10-01T06:21:43.6126017+00:00</DateReceived>
    <Memo>sample string 4</Memo>
    <Message>sample string 3</Message>
    <MessageID>sample string 1</MessageID>
    <NotificationType>Unknown</NotificationType>
    <Processed>true</Processed>
  </CustomerNotification>
  <CustomerNotification>
    <CustomerID>sample string 2</CustomerID>
    <DateReceived>2025-10-01T06:21:43.6126017+00:00</DateReceived>
    <Memo>sample string 4</Memo>
    <Message>sample string 3</Message>
    <MessageID>sample string 1</MessageID>
    <NotificationType>Unknown</NotificationType>
    <Processed>true</Processed>
  </CustomerNotification>
</ArrayOfCustomerNotification>