PUT api/Authentication/SendLinkForNewPassword

Request Information

URI Parameters

None.

Body Parameters

UserModel
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Username

string

None.

NsnId

string

None.

Email

string

None.

Profiles

Collection of string

None.

ProjectId

integer

None.

ProjectName

string

None.

System

string

None.

NameAndNsnId

string

None.

EmployeeId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "name": "sample string 1",
  "username": "sample string 2",
  "nsnId": "sample string 3",
  "email": "sample string 4",
  "profiles": [
    "sample string 1",
    "sample string 2"
  ],
  "projectId": 5,
  "projectName": "sample string 6",
  "system": "sample string 7",
  "nameAndNsnId": "sample string 1 - sample string 3",
  "employeeId": 1
}

application/xml, text/xml

Sample:
<UserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ACS.Models">
  <Email>sample string 4</Email>
  <EmployeeId>1</EmployeeId>
  <Id>1</Id>
  <Name>sample string 1</Name>
  <NsnId>sample string 3</NsnId>
  <Profiles xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Profiles>
  <ProjectId>5</ProjectId>
  <ProjectName>sample string 6</ProjectName>
  <System>sample string 7</System>
  <Username>sample string 2</Username>
</UserModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.