View Boundaries in an Org
GET
- fields: View the field associated with these boundaries.
- owningOrganizations: View the organization that owns the field.
OAuth Scope Required: ag1
Request URI
GET https://sandboxapi.deere.com/platform/organizations/{orgId}/boundaries
Accept: application/vnd.deere.axiom.v3+json
| Parameter | Type | Description & Example | In |
|---|---|---|---|
orgId Required | string | Organization Example: 1234 | path |
embed | string | Populates response with data lineage information Example: showRecordMetadata | query |
recordFilter | string | Filter results based on status; defaults to active Example: active, archived, all | query |
| Key | Type | Description & Example | In / Defaults |
|---|---|---|---|
Accept-UOM-System | string | Takes METRIC and ENGLISH. Converts measurements to the chosen system. Example: METRIC | METRIC |
| Field | Type | Description & Example |
|---|---|---|
| id | GUID | Boundary ID Example: 6232611a-0303-0234-8g7d-e1e1e11871b8 |
| name | string | Boundary name Example: Unique_Boundary_name |
| area | --- | Boundary area Example: See sample response below. |
| workableArea | --- | Exteriors-interiors of the boundary. Example: See sample response below. |
| sourceType | string | Describes the source of boundary (requires license to set). Example: HandDrawn |
| multipolygons | --- | Boundary shape and exact location. Example: See sample response below |
| type1 | string | Boundary type Example: exterior |
| passable | boolean | "True" indicates that the boundary can be crossed (Ex: a waterway). "False" indicates that the boundary cannot be crossed (ex: a boulder). Example: true |
| extent | --- | Coordinates of the extent of the boundary. Example: See sample response below. |
| active | boolean | Indicates whether or not the boundary is active. Example: true |
| archived | boolean | Indicates whether or not the boundary is archived. Example: true |
| signalType | string | Signal Type used when defining boundary. See “dtSignalType” in the John Deere representation system for possible values. Example: dtiSignalTypeRTK |
| modifiedTime | datetime | An ISO-8601 formatted timestamp of the last modification made to this boundary. Example: 2017-11-16T15:43:27.496Z |
| createdTime | datetime | An ISO-8601 formatted timestamp of the time this boundary was created. Example: 2017-11-16T15:43:27.496Z |
| irrigated | boolean | Indicates whether the contained area is irrigated. Example: true |
Content-Type: application/vnd.deere.axiom.v3+json
x-deere-signature: 3b539261-5e4b-4e1c-9201-3026f47109bb
{
"links": [
{
"rel": "self",
"uri": "https://sandboxapi.deere.com/platform/organizations/123456/boundaries"
}
],
"total": 1,
"values": [
{
"@type": "Boundary",
"id": "519dcf9a-9931-4789-9eaa-3dc7399f2840",
"name": "Unique_Boundary_name",
"sourceType": "HandDrawn",
"createdTime": "2018-07-01T21:00:11Z",
"modifiedTime": "2017-11-16T15:43:27.496Z",
"area": {
"@type": "MeasurementAsDouble",
"valueAsDouble": 32.45477594323993,
"unit": "ha"
},
"workableArea": {
"@type": "MeasurementAsDouble",
"valueAsDouble": 32.45477594323993,
"unit": "ha"
},
"multipolygons": [
{
"@type": "Polygon",
"rings": [
{
"@type": "Ring",
"points": [
{
"@type": "Point",
"lat": 41.65107816712308,
"lon": -93.76798868179321
},
{
"@type": "Point",
"lat": 41.650821230227706,
"lon": -93.76928965078696
},
{
"@type": "Point",
"lat": 41.65052211771455,
"lon": -93.7704892896499
},
{
"@type": "Point",
"lat": 41.64998810424595,
"lon": -93.77184439555037
},
{
"@type": "Point",
"lat": 41.64901785518664,
"lon": -93.77358913421631
},
{
"@type": "Point",
"lat": 41.64780652027916,
"lon": -93.77499124189404
},
{
"@type": "Point",
"lat": 41.646348170121755,
"lon": -93.77597093582153
},
{
"@type": "Point",
"lat": 41.64513032597595,
"lon": -93.7765281704435
},
{
"@type": "Point",
"lat": 41.64421554942042,
"lon": -93.77667903900146
},
{
"@type": "Point",
"lat": 41.644111321787456,
"lon": -93.76941561698914
},
{
"@type": "Point",
"lat": 41.64662075564981,
"lon": -93.77200126647949
},
{
"@type": "Point",
"lat": 41.651158333570876,
"lon": -93.76485586166382
},
{
"@type": "Point",
"lat": 41.65107816712308,
"lon": -93.76798868179321
}
],
"type": "exterior",
"passable": true
}
]
}
],
"extent": {
"@type": "Extent",
"topLeft": {
"@type": "Point",
"lat": 41.607420743,
"lon": -93.677587509
},
"bottomRight": {
"@type": "Point",
"lat": 41.604179741,
"lon": -93.676643372
}
},
"links": [
{
"@type": "Link",
"rel": "self",
"uri": "https://sandboxapi.deere.com/platform/organizations/123456/fields/209b3c20-f33a-4c96-9a2c-613def198e0c /boundaries/519dcf9a-9931-4789-9eaa-3dc7399f2840"
},
{
"@type": "Link",
"rel": "owningOrganization",
"uri": "https://sandboxapi.deere.com/platform/organizations/123456"
},
{
"@type": "Link",
"rel": "field",
"uri": "https://sandboxapi.deere.com/platform/organizations/123456/fields/209b3c20-f33a-4c96-9a2c-613def198e0c"
}
],
"active": false,
"irrigated": true,
"archived": false,
"signalType": "dtiSignalTypeRTK"
}
]
}




