PUT Attendants
Updates the attendant.
Request Information
URI Parameters
None.
Body Parameters
The new data of the attendant.
AttendantDto| Name | 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. |
Request Formats
application/json, text/json
Sample:
{
"Id": "f170ca61-dee0-4e67-9dc5-50612cd95da1",
"IdNetwork": "5fb11ee2-4faa-446f-8bdd-380435c9ba46",
"Code": "sample string 3",
"Name": "sample string 4",
"SitesList": [
{
"Id": "332eb8bf-da46-44e5-89d2-f75606ca817b",
"Code": "sample string 2",
"Name": "sample string 3",
"ShortName": "sample string 4"
},
{
"Id": "332eb8bf-da46-44e5-89d2-f75606ca817b",
"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>f170ca61-dee0-4e67-9dc5-50612cd95da1</Id>
<IdNetwork>5fb11ee2-4faa-446f-8bdd-380435c9ba46</IdNetwork>
<Name>sample string 4</Name>
<SitesList>
<AttendantSiteDto>
<Code>sample string 2</Code>
<Id>332eb8bf-da46-44e5-89d2-f75606ca817b</Id>
<Name>sample string 3</Name>
<ShortName>sample string 4</ShortName>
</AttendantSiteDto>
<AttendantSiteDto>
<Code>sample string 2</Code>
<Id>332eb8bf-da46-44e5-89d2-f75606ca817b</Id>
<Name>sample string 3</Name>
<ShortName>sample string 4</ShortName>
</AttendantSiteDto>
</SitesList>
</AttendantDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
State of the action.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.