POST api/PostSourceOfAgriculture

Request Information

URI Parameters

None.

Body Parameters

SourceOfAgriculture_Input
NameDescriptionTypeAdditional information
SourceID

integer

None.

UserId

integer

None.

AgencyName

string

None.

AgencyAddress

string

None.

Seed

boolean

None.

Fertilizer

boolean

None.

Pesticide

boolean

None.

products

Collection of string

None.

Request Formats

application/json, text/json

Sample:
{
  "SourceID": 1,
  "UserId": 2,
  "AgencyName": "sample string 3",
  "AgencyAddress": "sample string 4",
  "Seed": true,
  "Fertilizer": true,
  "Pesticide": true,
  "products": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<SourceOfAgriculture_Input xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WDD_Models">
  <AgencyAddress>sample string 4</AgencyAddress>
  <AgencyName>sample string 3</AgencyName>
  <Fertilizer>true</Fertilizer>
  <Pesticide>true</Pesticide>
  <Seed>true</Seed>
  <SourceID>1</SourceID>
  <UserId>2</UserId>
  <products xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </products>
</SourceOfAgriculture_Input>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.