PUT api/Tournee/SetTourneCamionLivreurCde

Set le camion et le livreur pour une tournee d'une date

Request Information

URI Parameters

None.

Body Parameters

data

TourneCamionLivreur
NameDescriptionTypeAdditional information
date

string

None.

tournee

string

None.

libelleTournee

string

None.

codeCamion

string

None.

camion

string

None.

codeLivreur

string

None.

livreur

string

None.

Request Formats

application/json, text/json

Sample:
{
  "date": "sample string 1",
  "tournee": "sample string 2",
  "libelleTournee": "sample string 3",
  "codeCamion": "sample string 4",
  "camion": "sample string 5",
  "codeLivreur": "sample string 6",
  "livreur": "sample string 7"
}

application/xml, text/xml

Sample:
<TourneCamionLivreur xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAGACore">
  <camion>sample string 5</camion>
  <codeCamion>sample string 4</codeCamion>
  <codeLivreur>sample string 6</codeLivreur>
  <date>sample string 1</date>
  <libelleTournee>sample string 3</libelleTournee>
  <livreur>sample string 7</livreur>
  <tournee>sample string 2</tournee>
</TourneCamionLivreur>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'TourneCamionLivreur'.

Response Information

Resource Description

Réponse de requête

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>