POST api/RappelPersonnel

Request Information

URI Parameters

None.

Body Parameters

RappelPersonnelModels
NameDescriptionTypeAdditional information
id_rappel

integer

None.

id_personnel

integer

None.

description

string

None.

date_enregistrement

date

None.

date_rappel

date

None.

heure_rappel

time interval

None.

etat_rappel

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "id_rappel": 1,
  "id_personnel": 2,
  "description": "sample string 3",
  "date_enregistrement": "2026-05-05T14:23:52.3051644+02:00",
  "date_rappel": "2026-05-05T14:23:52.3051644+02:00",
  "heure_rappel": "00:00:00.1234567",
  "etat_rappel": true
}

application/xml, text/xml

Sample:
<RappelPersonnelModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_GEST_RDV.Models">
  <date_enregistrement>2026-05-05T14:23:52.3051644+02:00</date_enregistrement>
  <date_rappel>2026-05-05T14:23:52.3051644+02:00</date_rappel>
  <description>sample string 3</description>
  <etat_rappel>true</etat_rappel>
  <heure_rappel>PT0.1234567S</heure_rappel>
  <id_personnel>2</id_personnel>
  <id_rappel>1</id_rappel>
</RappelPersonnelModels>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.