POST api/CustomerSeller/SendCustomersNotification
Musterilere Mesaj Gonder
Request Information
URI Parameters
None.
Body Parameters
SendNotificationInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | string |
None. |
|
| Content | string |
None. |
|
| Token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Title": "sample string 1",
"Content": "sample string 2",
"Token": "sample string 3"
}
text/xml
Sample:
<SendNotificationInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos"> <Token xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.Base.Dtos">sample string 3</Token> <Content>sample string 2</Content> <Title>sample string 1</Title> </SendNotificationInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SendNotificationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true
}
text/xml
Sample:
<SendNotificationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos"> <Status>true</Status> </SendNotificationDto>