POST api/FCM/PostFcmNotification
Request Information
URI Parameters
None.
Body Parameters
FCMNotification| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| MovieId | integer |
None. |
|
| Title | string |
None. |
|
| Body | string |
None. |
|
| MoviePoster | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"MovieId": 2,
"Title": "sample string 3",
"Body": "sample string 4",
"MoviePoster": "sample string 5"
}
application/xml, text/xml
Sample:
<FCMNotification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IOTT_API.Models"> <Body>sample string 4</Body> <Id>1</Id> <MovieId>2</MovieId> <MoviePoster>sample string 5</MoviePoster> <Title>sample string 3</Title> </FCMNotification>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | 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. |