Get Artifacts

Get a list of all Mercer Spheres and Somersloops.

Response Body

Name Type Description

ID

String

Unique ID of the Artifact.

Name

String

Name of the Artifact.

ClassName

String

ClassName of the Artifact.

location

Object

Location details of the Artifact.

  x

Float

X Location in the World.

  y

Float

Y Location in the World.

  z

Float

Z Location in the World.

  rotation

Float

Rotation of the Actor (0 - 359, 0 = North, 90 = East, 180 = South, 270 = West).

features

Object

An object with actor coordinates and name information.

  properties

Object

Name information about the actor.

    name

String

Display Name of the Actor.

    type

String

Type of the Object.

  geometry

Object

Geometry information about the Actor.

    coordinates

Object

The Actor coordinates.

      x

Float

X Location of the Actor.

      y

Float

Y Location of the Actor.

      z

Float

Z Location of the Actor.

    type

String

It’s always "Point".

Example Response

[
  {
    "ID": "BP_WAT2_C_UAID_04421A9713F0FD6301_1747414245",
    "Name": "Mercer Sphere",
    "ClassName": "BP_WAT2_C",
    "location": {
      "x": 188755,
      "y": 137135,
      "z": 12000,
      "rotation": 90
    },
    "features": {
      "properties": {
        "name": "Mercer Sphere",
        "type": "Artifact"
      },
      "geometry": {
        "coordinates": {
          "x": 188755,
          "y": 137135,
          "z": 12000
        },
        "type": "Point"
      }
    }
  }
]