PUT api/address/{id}/viewpoints/add

Adds one or more View Points for an Address Processes this address API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The Id of the address to update

integer

Required

Body Parameters

One or more viewpoints to add

Collection of AddEditViewPointCommandDataContract
NameDescriptionTypeAdditional information
Point

The point value.

PointDataContract

None.

Pitch

The pitch value.

decimal number

None.

Heading

The heading value.

decimal number

None.

FieldOfVision

The field of vision value.

decimal number

None.

Zoom

The zoom value.

decimal number

None.

Label

The label value.

string

None.

Id

The unique identifier of this resource.

integer

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
[
  {
    "Point": {
      "Latitude": 1.1,
      "Longitude": 2.1,
      "Altitude": 3.1,
      "Order": 4,
      "Id": 5
    },
    "Pitch": 1.1,
    "Heading": 2.1,
    "FieldOfVision": 3.1,
    "Zoom": 4.1,
    "Label": "sample string 5",
    "Id": 6
  },
  {
    "Point": {
      "Latitude": 1.1,
      "Longitude": 2.1,
      "Altitude": 3.1,
      "Order": 4,
      "Id": 5
    },
    "Pitch": 1.1,
    "Heading": 2.1,
    "FieldOfVision": 3.1,
    "Zoom": 4.1,
    "Label": "sample string 5",
    "Id": 6
  }
]

Response Information

Resource Description

A System.Net.Http.HttpResponseMessage value equal to 200 (OK) if command completed successfully,500 if error occurred

Collection of ViewPointDataContract
NameDescriptionTypeAdditional information
Point

The point value.

PointDataContract

None.

Pitch

The pitch value.

decimal number

None.

Heading

The heading value.

decimal number

None.

FieldOfVision

The field of vision value.

decimal number

None.

Zoom

The zoom value.

decimal number

None.

Label

The label value.

string

None.

Id

The unique identifier of this resource.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Point": {
      "Latitude": 1.1,
      "Longitude": 2.1,
      "Altitude": 3.1,
      "Order": 4,
      "Id": 5
    },
    "Pitch": 1.1,
    "Heading": 2.1,
    "FieldOfVision": 3.1,
    "Zoom": 4.1,
    "Label": "sample string 5",
    "Id": 6
  },
  {
    "Point": {
      "Latitude": 1.1,
      "Longitude": 2.1,
      "Altitude": 3.1,
      "Order": 4,
      "Id": 5
    },
    "Pitch": 1.1,
    "Heading": 2.1,
    "FieldOfVision": 3.1,
    "Zoom": 4.1,
    "Label": "sample string 5",
    "Id": 6
  }
]