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": "d0cc8660-b5cb-4329-8b7a-24c3249f10ab",
"IdNetwork": "7185d352-562d-4b13-882a-f1e076d52b36",
"Code": "sample string 3",
"Name": "sample string 4",
"SitesList": [
{
"Id": "b12647d4-5d9d-4c3e-811e-e75fcdaa9f49",
"Code": "sample string 2",
"Name": "sample string 3",
"ShortName": "sample string 4"
},
{
"Id": "b12647d4-5d9d-4c3e-811e-e75fcdaa9f49",
"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>d0cc8660-b5cb-4329-8b7a-24c3249f10ab</Id>
<IdNetwork>7185d352-562d-4b13-882a-f1e076d52b36</IdNetwork>
<Name>sample string 4</Name>
<SitesList>
<AttendantSiteDto>
<Code>sample string 2</Code>
<Id>b12647d4-5d9d-4c3e-811e-e75fcdaa9f49</Id>
<Name>sample string 3</Name>
<ShortName>sample string 4</ShortName>
</AttendantSiteDto>
<AttendantSiteDto>
<Code>sample string 2</Code>
<Id>b12647d4-5d9d-4c3e-811e-e75fcdaa9f49</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.