heilog.ch.Api

<back to all web services

CreateSupportItemRequest

The following routes are available for this service:
POST/support-item/create
CreateSupportItemRequest Parameters:
NameParameterData TypeRequiredDescription
CreateDtobodySupportItemDetailDtoNo
SupportItemDetailDto Parameters:
NameParameterData TypeRequiredDescription
IdformlongNo
IsActiveformboolNo
CategoryformSupportCategoryNo
TypeformSupportTypeNo
PositionformuintNo
LocalizationsformList<SupportItemLocalizationDto>No
SupportCategory Enum:
NameValue
QSS1
Flyer2
Manual3
SupportType Enum:
NameValue
Document1
Video2
SupportItemLocalizationDto Parameters:
NameParameterData TypeRequiredDescription
LanguageCodeformLanguageCodeNo
TitleformstringNo
URLformstringNo
FilenameformstringNo
LanguageCode Enum:
NameValue
de1
fr2
it3
CreateSupportItemResponse Parameters:
NameParameterData TypeRequiredDescription
IdformlongNo

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + 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
}