POST api/Customer/{id}/Notification
Updates an existing Customer
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The id of the customer to update |
string |
Required |
Body Parameters
Customer to create
CustomerNotificationName | Description | Type | Additional information |
---|---|---|---|
MessageID | string |
None. |
|
CustomerID | string |
None. |
|
NotificationType | CustomerNotificationType |
None. |
|
Message | string |
None. |
|
Memo | string |
None. |
|
DateReceived | date |
None. |
|
Processed | boolean |
None. |
Request 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-09-23T18:00:42.8369602+00:00", "Processed": true }
application/xml, text/xml
Sample:
<CustomerNotification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Yummy.Portal.Models"> <CustomerID>sample string 2</CustomerID> <DateReceived>2025-09-23T18:00:42.8369602+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>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Http Status Code
HttpResponseMessageName | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |