| GET | /news/{NewsId} |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| NewsId | path | long | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| News | form | NewsDetailDto | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Id | form | long | No | |
| ValidFrom | form | DateTime | No | |
| ValidTo | form | DateTime? | No | |
| Url | form | string | No | |
| FileName | form | string | No | |
| IsActive | form | bool | No | |
| Localizations | form | List<NewsLocalizationDto> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| LanguageCode | form | LanguageCode | No | |
| Title | form | string | No | |
| Text | form | string | No |
| Name | Value | |
|---|---|---|
| de | 1 | |
| fr | 2 | |
| it | 3 |
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /news/{NewsId} HTTP/1.1
Host: heidak-api.build.exanic.ch
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"news":{"id":0,"validFrom":"0001-01-01T00:00:00.0000000","validTo":"0001-01-01T00:00:00.0000000","url":"String","fileName":"String","isActive":false,"localizations":[{"languageCode":1,"title":"String","text":"String"}]}}