POST UsrCtrl/SetupAccountKtv

Request Information

URI Parameters

None.

Body Parameters

UserData
NameDescriptionTypeAdditional information
Email

string

None.

Nom

string

None.

Prenom

string

None.

NbEstimation

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "Nom": "sample string 2",
  "Prenom": "sample string 3",
  "NbEstimation": 4
}

application/xml, text/xml

Sample:
<UsrUserController.UserData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Controllers">
  <Email>sample string 1</Email>
  <NbEstimation>4</NbEstimation>
  <Nom>sample string 2</Nom>
  <Prenom>sample string 3</Prenom>
</UsrUserController.UserData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

UserDto
NameDescriptionTypeAdditional information
USR_ID

integer

None.

USR_NOM

string

None.

USR_EMAIL

string

None.

USR_CIV

string

None.

USR_PRENOM

string

None.

USR_VALIDE

boolean

None.

USR_NUM_AGREEMENT

string

None.

USR_NUMERO_EXTERNE

string

None.

USR_TEL_MOBILE

string

None.

USR_LOGIN

string

None.

USR_PASSWORD

string

None.

USR_DT_VALIDITE_DEBUT

date

None.

USR_DT_VALIDITE_FIN

date

None.

USR_SIMU_TOTAL

integer

None.

USR_SIMU_USED

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "USR_ID": 1,
  "USR_NOM": "sample string 2",
  "USR_EMAIL": "sample string 3",
  "USR_CIV": "sample string 4",
  "USR_PRENOM": "sample string 5",
  "USR_VALIDE": true,
  "USR_NUM_AGREEMENT": "sample string 6",
  "USR_NUMERO_EXTERNE": "sample string 7",
  "USR_TEL_MOBILE": "sample string 8",
  "USR_LOGIN": "sample string 9",
  "USR_PASSWORD": "sample string 10",
  "USR_DT_VALIDITE_DEBUT": "2025-07-17T04:47:49.9218763+02:00",
  "USR_DT_VALIDITE_FIN": "2025-07-17T04:47:49.9218763+02:00",
  "USR_SIMU_TOTAL": 1,
  "USR_SIMU_USED": 1
}

application/xml, text/xml

Sample:
<UserDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
  <USR_CIV>sample string 4</USR_CIV>
  <USR_DT_VALIDITE_DEBUT>2025-07-17T04:47:49.9218763+02:00</USR_DT_VALIDITE_DEBUT>
  <USR_DT_VALIDITE_FIN>2025-07-17T04:47:49.9218763+02:00</USR_DT_VALIDITE_FIN>
  <USR_EMAIL>sample string 3</USR_EMAIL>
  <USR_ID>1</USR_ID>
  <USR_LOGIN>sample string 9</USR_LOGIN>
  <USR_NOM>sample string 2</USR_NOM>
  <USR_NUMERO_EXTERNE>sample string 7</USR_NUMERO_EXTERNE>
  <USR_NUM_AGREEMENT>sample string 6</USR_NUM_AGREEMENT>
  <USR_PASSWORD>sample string 10</USR_PASSWORD>
  <USR_PRENOM>sample string 5</USR_PRENOM>
  <USR_SIMU_TOTAL>1</USR_SIMU_TOTAL>
  <USR_SIMU_USED>1</USR_SIMU_USED>
  <USR_TEL_MOBILE>sample string 8</USR_TEL_MOBILE>
  <USR_VALIDE>true</USR_VALIDE>
</UserDto>