GET Placement/GetPlacement?name={name}

Returns a list of Placements (the method in which product is applied to a field, i.e., broadcast, sprayed, knifed, etc.)

Request Information

URI Parameters

NameDescriptionTypeAdditional Information
name

Placement Name (optional)

string

Default value is string.Empty

Body Parameters

Response Information

Resource Description

Returns a list of Placements (the method in which product is applied to a field, i.e., broadcast, sprayed, knifed, etc.)

AgvPlacement
NameDescriptionTypeAdditional Information
Status

Status of the API call.

string
Message

Message of the API call.

string
Count

Count of how many Placement JSON Objects.

string
PlacementList

JSON Object of Placements.

Collection of ClsPlacement

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Message": "sample string 2",
  "Count": "2",
  "PlacementList": [
    {
      "UniqueId": "sample string 1",
      "Name": "sample string 2"
    },
    {
      "UniqueId": "sample string 1",
      "Name": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<AgvPlacement xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Placement">
  <Message>sample string 2</Message>
  <PlacementList xmlns:d2p1="http://schemas.datacontract.org/2004/07/SSI.plbl">
    <d2p1:Placement>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:UniqueId>sample string 1</d2p1:UniqueId>
    </d2p1:Placement>
    <d2p1:Placement>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:UniqueId>sample string 1</d2p1:UniqueId>
    </d2p1:Placement>
  </PlacementList>
  <Status>sample string 1</Status>
</AgvPlacement>