POST v{version}/applications/CreateApplication

Request Information

URI Parameters

NameDescriptionTypeAdditional information
version

string

None.

Body Parameters

ApplicationModel
NameDescriptionTypeAdditional information
AccountID

integer

None.

UserID

integer

None.

ApplicationID

string

Required

RecordID

integer

None.

OtherID

string

None.

TaxYear

integer

None.

FirstName

string

Required

LastName

string

Required

LocationID

string

Required

TemplateIDs

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AccountID": 1,
  "UserID": 2,
  "ApplicationID": "sample string 3",
  "RecordID": 4,
  "OtherID": "sample string 5",
  "TaxYear": 6,
  "FirstName": "sample string 7",
  "LastName": "sample string 8",
  "LocationID": "sample string 9",
  "TemplateIDs": "sample string 10"
}

application/xml, text/xml

Sample:
<ApplicationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LoanBeam.API.V1.Models">
  <AccountID xmlns="http://schemas.datacontract.org/2004/07/LoanBeam.Data.Model.V1">1</AccountID>
  <ApplicationID xmlns="http://schemas.datacontract.org/2004/07/LoanBeam.Data.Model.V1">sample string 3</ApplicationID>
  <FirstName xmlns="http://schemas.datacontract.org/2004/07/LoanBeam.Data.Model.V1">sample string 7</FirstName>
  <LastName xmlns="http://schemas.datacontract.org/2004/07/LoanBeam.Data.Model.V1">sample string 8</LastName>
  <LocationID xmlns="http://schemas.datacontract.org/2004/07/LoanBeam.Data.Model.V1">sample string 9</LocationID>
  <OtherID xmlns="http://schemas.datacontract.org/2004/07/LoanBeam.Data.Model.V1">sample string 5</OtherID>
  <RecordID xmlns="http://schemas.datacontract.org/2004/07/LoanBeam.Data.Model.V1">4</RecordID>
  <TaxYear xmlns="http://schemas.datacontract.org/2004/07/LoanBeam.Data.Model.V1">6</TaxYear>
  <TemplateIDs xmlns="http://schemas.datacontract.org/2004/07/LoanBeam.Data.Model.V1">sample string 10</TemplateIDs>
  <UserID xmlns="http://schemas.datacontract.org/2004/07/LoanBeam.Data.Model.V1">2</UserID>
</ApplicationModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.