POST api/Account/CreateResetPswdRequestMailQueueFile

Create a ".ResetPswdRequest" file on the Jello server to be send by the Jello Mail Manager.

Request Information

URI Parameters

None.

Body Parameters

MailQueueInfo
NameDescriptionTypeAdditional information
Email

Recipient of Mail

string

None.

CcEmail

Copy carbon recipients for this email

string

None.

BccEmail

Blind copy carbon recipients for this email

string

None.

MailSubjectOverride

Set a subject if you don't want to use default title (in SettingsMail.xml on mail server)

string

None.

MailBodyOverride

Set a body if you don't want to use default body (on mail server)

string

None.

FirstName

--pswd Needed-- First Name of Employe

string

None.

LastName

--pswd Needed-- Last Name of Employe

string

None.

Login

--pswd Needed-- Login of Employe

string

None.

Password

--pswd Needed-- Password of Employe

string

None.

CompanyName

--pswd and docmail Needed-- CompanyName of Employe

string

None.

DocName

--docmail Needed-- Document name to send

string

None.

DocPath

--docmail Needed-- Document OriginPath to send

string

None.

TotalNewNews

--recapfile Needed-- Total news since last connexion

integer

None.

TotalNewAd

--recapfile Needed-- Total ads since last connexion

integer

None.

TotalNewCarrer

--recapfile Needed-- Total Carrer since last connexion

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "CcEmail": "sample string 2",
  "BccEmail": "sample string 3",
  "MailSubjectOverride": "sample string 4",
  "MailBodyOverride": "sample string 5",
  "FirstName": "sample string 6",
  "LastName": "sample string 7",
  "Login": "sample string 8",
  "Password": "sample string 9",
  "CompanyName": "sample string 10",
  "DocName": "sample string 11",
  "DocPath": "sample string 12",
  "TotalNewNews": 13,
  "TotalNewAd": 14,
  "TotalNewCarrer": 15
}

application/xml, text/xml

Sample:
<MailQueueInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ELO_IdentityAPI_Eloapp.net.Models">
  <BccEmail>sample string 3</BccEmail>
  <CcEmail>sample string 2</CcEmail>
  <CompanyName>sample string 10</CompanyName>
  <DocName>sample string 11</DocName>
  <DocPath>sample string 12</DocPath>
  <Email>sample string 1</Email>
  <FirstName>sample string 6</FirstName>
  <LastName>sample string 7</LastName>
  <Login>sample string 8</Login>
  <MailBodyOverride>sample string 5</MailBodyOverride>
  <MailSubjectOverride>sample string 4</MailSubjectOverride>
  <Password>sample string 9</Password>
  <TotalNewAd>14</TotalNewAd>
  <TotalNewCarrer>15</TotalNewCarrer>
  <TotalNewNews>13</TotalNewNews>
</MailQueueInfo>

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 'MailQueueInfo'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.