Справочник «Профили отделений»
Получение всех элементов справочника
#!php
/udata/data/getDepartmentProfiles/
#!xml
<?xml version="1.0" encoding="utf-8"?>
<udata xmlns:xlink="http://www.w3.org/TR/xlink" module="data" method="getDepartmentProfiles" generation-time="0.191558">
<response>
<code>200</code>
<data>
<item>
<id>1</id>
<name>абдоминальной хирургии</name>
<is_active>1</is_active>
</item>
...
...
...
<item>
<id>123</id>
<name>эндоскопии</name>
<is_active>1</is_active>
</item>
</data>
</response>
</udata>
Получение профиля отделения по ID
#!php
/udata/data/getDepartmentProfileById/{$id}
#!xml
<?xml version="1.0" encoding="utf-8"?>
<udata xmlns:xlink="http://www.w3.org/TR/xlink" module="data" method="getDepartmentProfileById" generation-time="0.078298">
<response>
<code>200</code>
<data>
<id>10</id>
<name>врачебно-летной экспертизе</name>
<is_active>1</is_active>
</data>
</response>
</udata>
No Comments