This repository was archived by the owner on Apr 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Account GET
FromSi edited this page Nov 28, 2018
·
1 revision
| Название | Код |
|---|---|
| Авторизовать приложение | 200 |
| Получить информацию аккаунта | 200 |
| Получить список преподавателей | 200 |
http://account.osmium.kz/api/auth ?
& login = <String>
& pass = <String>| Аргумент | Тип | Приоретет | Описание |
|---|---|---|---|
login |
String | 1 | null |
pass |
String | 1 | null |
{
"id":1,
"name_f":"Иван",
"name_l":"Иванов",
"patronymic":"Иванович",
"phone":"+7052214545",
"email":"content",
"room_id":1,
"group_id":1,
"type":1,
"token":"qwertyuioplkjhgfdsazxcvbnmgfdrdsacf"
}| Аргумент | Тип | Описание |
|---|---|---|
id |
Integer | null |
name_f |
String | null |
name_l |
String | null |
patronymic |
String | null |
phone |
String | null |
email |
String | null |
room_id |
Integer | null |
group_id |
Integer | null |
type |
Integer | null |
token |
String | null |
http://account.osmium.kz/api/account/id ?
& id = <Integer>| Аргумент | Тип | Приоретет | Описание |
|---|---|---|---|
id |
Integer | 1 | null |
[
{
"id":1,
"name_f":"Иван",
"name_l":"Иванов",
"patronymic":"Иванович",
"phone":"+7052214545",
"email":"content",
"room_id":1,
"group_id":1,
"type":1
}
]| Аргумент | Тип | Описание |
|---|---|---|
id |
Integer | null |
name_f |
String | null |
name_l |
String | null |
patronymic |
String | null |
phone |
String | null |
email |
String | null |
room_id |
Integer | null |
group_id |
Integer | null |
type |
Integer | null |
http://account.osmium.kz/api/teacher/all[
{
"id":1,
"name_f":"Иван",
"name_l":"Иванов",
"patronymic":"Иванович",
"phone":"+7052214545",
"email":"content",
"room_id":1,
"group_id":1,
"type":1
}
]| Аргумент | Тип | Описание |
|---|---|---|
id |
Integer | null |
name_f |
String | null |
name_l |
String | null |
patronymic |
String | null |
phone |
String | null |
email |
String | null |
room_id |
Integer | null |
group_id |
Integer | null |
type |
Integer | null |