GET Attendants/{id}
Gets an attendant by it's ID, represented as AttendantDto.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The ID of the attendant. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The attendant data.
AttendantDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
IdNetwork | globally unique identifier |
None. |
|
Code | string |
None. |
|
Name | string |
None. |
|
SitesList | Collection of AttendantSiteDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": "fcaeee78-2a86-4bdf-a35c-436bd05f131b", "IdNetwork": "248f2986-51cb-45da-8f52-4220c5f62af5", "Code": "sample string 3", "Name": "sample string 4", "SitesList": [ { "Id": "da13d6ad-d18e-4d6a-bd9a-eed58d1afb53", "Code": "sample string 2", "Name": "sample string 3", "ShortName": "sample string 4" }, { "Id": "da13d6ad-d18e-4d6a-bd9a-eed58d1afb53", "Code": "sample string 2", "Name": "sample string 3", "ShortName": "sample string 4" } ] }
application/xml, text/xml
Sample:
<AttendantDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model"> <Code>sample string 3</Code> <Id>fcaeee78-2a86-4bdf-a35c-436bd05f131b</Id> <IdNetwork>248f2986-51cb-45da-8f52-4220c5f62af5</IdNetwork> <Name>sample string 4</Name> <SitesList> <AttendantSiteDto> <Code>sample string 2</Code> <Id>da13d6ad-d18e-4d6a-bd9a-eed58d1afb53</Id> <Name>sample string 3</Name> <ShortName>sample string 4</ShortName> </AttendantSiteDto> <AttendantSiteDto> <Code>sample string 2</Code> <Id>da13d6ad-d18e-4d6a-bd9a-eed58d1afb53</Id> <Name>sample string 3</Name> <ShortName>sample string 4</ShortName> </AttendantSiteDto> </SitesList> </AttendantDto>