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": "e3111bd0-a1e9-4b3f-b608-8517180ec428",
"IdNetwork": "a14de7d0-cc77-4737-ae81-8cdedd622d4c",
"Code": "sample string 3",
"Name": "sample string 4",
"SitesList": [
{
"Id": "4c463fbb-3ba4-4a56-b465-96a0292f0d12",
"Code": "sample string 2",
"Name": "sample string 3",
"ShortName": "sample string 4"
},
{
"Id": "4c463fbb-3ba4-4a56-b465-96a0292f0d12",
"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>e3111bd0-a1e9-4b3f-b608-8517180ec428</Id>
<IdNetwork>a14de7d0-cc77-4737-ae81-8cdedd622d4c</IdNetwork>
<Name>sample string 4</Name>
<SitesList>
<AttendantSiteDto>
<Code>sample string 2</Code>
<Id>4c463fbb-3ba4-4a56-b465-96a0292f0d12</Id>
<Name>sample string 3</Name>
<ShortName>sample string 4</ShortName>
</AttendantSiteDto>
<AttendantSiteDto>
<Code>sample string 2</Code>
<Id>4c463fbb-3ba4-4a56-b465-96a0292f0d12</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.