POST api/Authorization/addUser

Request Information

URI Parameters

None.

Body Parameters

NewUserRequestAPIMessage
NameDescriptionTypeAdditional information
NewID

string

Required

NewUserPassword

string

Required

NewAPIDescription

string

Required

ShowSSN

boolean

None.

ShowEndorsements

boolean

None.

ShowExceptions

boolean

None.

ShowUnderwriter

boolean

None.

LimitedUser

boolean

None.

isReadOnly

boolean

None.

ShowChecks

boolean

None.

ShowDeposits

boolean

None.

ShowFileExceptions

boolean

None.

ShowCharges

boolean

None.

ShowDocuments

boolean

None.

ShowNotes

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "NewID": "sample string 1",
  "NewUserPassword": "sample string 2",
  "NewAPIDescription": "sample string 3",
  "ShowSSN": true,
  "ShowEndorsements": true,
  "ShowExceptions": true,
  "ShowUnderwriter": true,
  "LimitedUser": true,
  "isReadOnly": true,
  "ShowChecks": true,
  "ShowDeposits": true,
  "ShowFileExceptions": true,
  "ShowCharges": true,
  "ShowDocuments": true,
  "ShowNotes": true
}

application/xml, text/xml

Sample:
<AuthorizationController.NewUserRequestAPIMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AccuAPI">
  <LimitedUser>true</LimitedUser>
  <NewAPIDescription>sample string 3</NewAPIDescription>
  <NewID>sample string 1</NewID>
  <NewUserPassword>sample string 2</NewUserPassword>
  <ShowCharges>true</ShowCharges>
  <ShowChecks>true</ShowChecks>
  <ShowDeposits>true</ShowDeposits>
  <ShowDocuments>true</ShowDocuments>
  <ShowEndorsements>true</ShowEndorsements>
  <ShowExceptions>true</ShowExceptions>
  <ShowFileExceptions>true</ShowFileExceptions>
  <ShowNotes>true</ShowNotes>
  <ShowSSN>true</ShowSSN>
  <ShowUnderwriter>true</ShowUnderwriter>
  <isReadOnly>true</isReadOnly>
</AuthorizationController.NewUserRequestAPIMessage>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.