GET api/offices/{id}
Метод для получения информации об "Офисе"
Полный URL-адрес запроса: https://sfa-api.ddapp.biz/api/offices/{id}
Для этого метода требуется авторизация
Информация о запросе
URL параметры
Название | Описание | Тип данных | Дополнительная информация |
---|---|---|---|
id |
Уникальный идентификатор "Офиса" |
string |
Required |
fields |
Список дополнительных полей, которые необходимо вернуть |
string |
Нет |
Тело запроса
Нет параметров в теле запроса
Информация об ответе
OfficeModel
Название | Описание | Тип данных | Дополнительная информация |
---|---|---|---|
Id | globally unique identifier |
Нет |
|
VendorId | string |
Нет |
|
Name | string |
Поддерживает сортировку |
|
Responsible | UserModel |
Дополнительное поле |
|
Location | LocationModel |
Дополнительное поле |
|
TimeZoneId | string |
Нет |
Форматы ответа
{ "id": "f9671470-8175-424d-a7a1-1638bf37ea5d", "vendorId": "sample string 2", "name": "sample string 3", "responsible": { "id": "fddc3d97-dc39-435c-8f94-f9822c04dbbe", "vendorId": "sample string 2", "firstName": "sample string 3", "lastName": "sample string 4", "middleName": "sample string 5", "fullName": "sample string 6", "imageUrl": "sample string 7", "email": "sample string 8", "emailConfirmed": true, "phoneNumber": "sample string 10", "phoneNumberConfirmed": true, "twoFactorEnabled": true, "lockoutEndDateUtc": "2025-09-13T21:45:56.5612555Z", "lockoutEnabled": true, "roles": [ "sample string 1", "sample string 2" ] }, "location": { "country": { "id": "2012163e-32e9-4430-8284-4e418f22ff5c", "isoCode": "sample string 2", "name": "sample string 3" }, "province": { "id": "e366b240-b1dd-4307-91aa-f1ce102f3db8", "name": "sample string 2" }, "settlement": "sample string 1", "addressLine": "sample string 2", "geoCoordinate": { "latitude": 1.1, "longitude": 1.1 } }, "timeZoneId": "sample string 4" }
<OfficeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DDApp.Shared.Api.Models.V1.Offices"> <Id>f9671470-8175-424d-a7a1-1638bf37ea5d</Id> <Location xmlns:d2p1="http://schemas.datacontract.org/2004/07/DDApp.Shared.Api.Models.V1.Geo"> <d2p1:AddressLine>sample string 2</d2p1:AddressLine> <d2p1:Country> <d2p1:Id>2012163e-32e9-4430-8284-4e418f22ff5c</d2p1:Id> <d2p1:IsoCode>sample string 2</d2p1:IsoCode> <d2p1:Name>sample string 3</d2p1:Name> </d2p1:Country> <d2p1:GeoCoordinate> <d2p1:Latitude>1.1</d2p1:Latitude> <d2p1:Longitude>1.1</d2p1:Longitude> </d2p1:GeoCoordinate> <d2p1:Province> <d2p1:Id>e366b240-b1dd-4307-91aa-f1ce102f3db8</d2p1:Id> <d2p1:Name>sample string 2</d2p1:Name> </d2p1:Province> <d2p1:Settlement>sample string 1</d2p1:Settlement> </Location> <Name>sample string 3</Name> <Responsible xmlns:d2p1="http://schemas.datacontract.org/2004/07/DDApp.Shared.Api.Models.V1.Users"> <d2p1:Email>sample string 8</d2p1:Email> <d2p1:EmailConfirmed>true</d2p1:EmailConfirmed> <d2p1:FirstName>sample string 3</d2p1:FirstName> <d2p1:FullName>sample string 6</d2p1:FullName> <d2p1:Id>fddc3d97-dc39-435c-8f94-f9822c04dbbe</d2p1:Id> <d2p1:ImageUrl>sample string 7</d2p1:ImageUrl> <d2p1:LastName>sample string 4</d2p1:LastName> <d2p1:LockoutEnabled>true</d2p1:LockoutEnabled> <d2p1:LockoutEndDateUtc>2025-09-13T21:45:56.5612555+00:00</d2p1:LockoutEndDateUtc> <d2p1:MiddleName>sample string 5</d2p1:MiddleName> <d2p1:PhoneNumber>sample string 10</d2p1:PhoneNumber> <d2p1:PhoneNumberConfirmed>true</d2p1:PhoneNumberConfirmed> <d2p1:Roles xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:string>sample string 1</d3p1:string> <d3p1:string>sample string 2</d3p1:string> </d2p1:Roles> <d2p1:TwoFactorEnabled>true</d2p1:TwoFactorEnabled> <d2p1:VendorId>sample string 2</d2p1:VendorId> </Responsible> <TimeZoneId>sample string 4</TimeZoneId> <VendorId>sample string 2</VendorId> </OfficeModel>