PUT Attendants

Updates the attendant.

Request Information

URI Parameters

None.

Body Parameters

The new data of the attendant.

AttendantDto
NameDescriptionTypeAdditional 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": "4d369119-c671-4119-a309-3a8614ebce53",
  "IdNetwork": "1030a986-ee11-406f-8207-e51118106f9f",
  "Code": "sample string 3",
  "Name": "sample string 4",
  "SitesList": [
    {
      "Id": "51181e09-9f0e-42b5-83a7-9af96d9bd91f",
      "Code": "sample string 2",
      "Name": "sample string 3",
      "ShortName": "sample string 4"
    },
    {
      "Id": "51181e09-9f0e-42b5-83a7-9af96d9bd91f",
      "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>4d369119-c671-4119-a309-3a8614ebce53</Id>
  <IdNetwork>1030a986-ee11-406f-8207-e51118106f9f</IdNetwork>
  <Name>sample string 4</Name>
  <SitesList>
    <AttendantSiteDto>
      <Code>sample string 2</Code>
      <Id>51181e09-9f0e-42b5-83a7-9af96d9bd91f</Id>
      <Name>sample string 3</Name>
      <ShortName>sample string 4</ShortName>
    </AttendantSiteDto>
    <AttendantSiteDto>
      <Code>sample string 2</Code>
      <Id>51181e09-9f0e-42b5-83a7-9af96d9bd91f</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.

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.