PUT api/FundingSourceFunds

Update a Funding Source Funds record

Request Information

URI Parameters

None.

Body Parameters

FundingSourceFundsDTO
NameDescriptionTypeAdditional information
Id

integer

None.

FundingSourceID

integer

None.

FundingAmount

decimal number

None.

FundingFY

integer

None.

UserId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "FundingSourceID": 2,
  "FundingAmount": 3.0,
  "FundingFY": 4,
  "UserId": 5
}

text/html

Sample:
{"Id":1,"FundingSourceID":2,"FundingAmount":3.0,"FundingFY":4,"UserId":5}

application/xml, text/xml

Sample:
<FundingSourceFundsDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrainingFundREST._BOL">
  <FundingAmount>3</FundingAmount>
  <FundingFY>4</FundingFY>
  <FundingSourceID>2</FundingSourceID>
  <Id>1</Id>
  <UserId>5</UserId>
</FundingSourceFundsDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

StatusDTO
NameDescriptionTypeAdditional information
id

integer

None.

msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "msg": "sample string 1"
}

text/html

Sample:
{"id":1,"msg":"sample string 1"}

application/xml, text/xml

Sample:
<StatusDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrainingFundREST._DAL">
  <id>1</id>
  <msg>sample string 1</msg>
</StatusDTO>