POST | /support-item/create |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
CreateDto | body | SupportItemDetailDto | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | long | No | |
IsActive | form | bool | No | |
Category | form | SupportCategory | No | |
Type | form | SupportType | No | |
Position | form | uint | No | |
Localizations | form | List<SupportItemLocalizationDto> | No |
Name | Value | |
---|---|---|
QSS | 1 | |
Manual | 3 |
Name | Value | |
---|---|---|
Document | 1 | |
Video | 2 |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
LanguageCode | form | LanguageCode | No | |
Title | form | string | No | |
URL | form | string | No | |
Filename | form | string | No |
Name | Value | |
---|---|---|
de | 1 | |
fr | 2 | |
it | 3 |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | long | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /support-item/create HTTP/1.1
Host: heidak-api.build.exanic.ch
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
createDto:
{
id: 0,
isActive: False,
category: 1,
type: 1,
position: 0,
localizations:
[
{
languageCode: 1,
title: String,
url: String,
filename: String
}
]
}
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { id: 0 }