GET api/DoctorCourse/TutorialData?record_id={record_id}
Данные для редактировать туториала, требуется авторизация
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| record_id |
идентификатор |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TutorialInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| signs |
Признаки |
Collection of ReferenceBook |
None. |
| record_id |
Идентификатор |
integer |
None. |
| title |
Заголовок |
string |
Required String length: inclusive between 0 and 200 |
| title_kz |
Заголовок кз |
string |
String length: inclusive between 0 and 200 |
| description |
Описание |
string |
Required |
| description_kz |
Описание кз |
string |
None. |
| price |
Цена |
integer |
Required |
| video_rid |
Видео |
integer |
Required |
| video_kz_rid |
Видео кз |
integer |
None. |
| order_number |
Порядок |
integer |
None. |
| course_rid |
Курс |
Collection of integer |
None. |
| horizontal |
Порядок |
boolean |
None. |
| sign_rid |
Признаки |
Collection of integer |
None. |
| photo_rid |
Фото |
integer |
None. |
| photo_kz_rid |
Фото кз |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"signs": [
{
"record_id": 1,
"name": "sample string 2"
},
{
"record_id": 1,
"name": "sample string 2"
}
],
"record_id": 1,
"title": "sample string 2",
"title_kz": "sample string 3",
"description": "sample string 4",
"description_kz": "sample string 5",
"price": 1,
"video_rid": 1,
"video_kz_rid": 1,
"order_number": 6,
"course_rid": [
1,
2
],
"horizontal": true,
"sign_rid": [
1,
2
],
"photo_rid": 1,
"photo_kz_rid": 1
}
text/html
Sample:
{"signs":[{"record_id":1,"name":"sample string 2"},{"record_id":1,"name":"sample string 2"}],"record_id":1,"title":"sample string 2","title_kz":"sample string 3","description":"sample string 4","description_kz":"sample string 5","price":1,"video_rid":1,"video_kz_rid":1,"order_number":6,"course_rid":[1,2],"horizontal":true,"sign_rid":[1,2],"photo_rid":1,"photo_kz_rid":1}