Get Drop Pod

Gets a list of all drop pods.

Response Body

Name Type Description

ID

String

Unique ID of the Drop Pod.

location

Object

Location details of the Drop Pod.

  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).

Opened

Boolean

Is Drop Pod opened?

Looted

Boolean

Is Drop Pod looted?

RequiredItem

Object

Required Item to open the Drop Pod.

  Name

String

Name of the item.

  ClassName

String

Class Name of the item.

  Amount

Integer

Amount of the item.

  MaxAmount

Integer

Stack size of the item.

RequiredPower

Integer

Required Power to open the Drop Pod.

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_DropPod14_389",
    "location": {
      "x": -43144,
      "y": 145820,
      "z": 7472,
      "rotation": 90
    },
    "Opened": false,
    "Looted": false,
    "RequiredItem": {
      "Name": "Modular Frame",
      "ClassName": "Desc_ModularFrame_C",
      "Amount": 5,
      "MaxAmount": 50
    },
    "RequiredPower": 0,
    "features": {
      "properties": {
        "name": "Drop Pod",
        "type": "Drop Pod"
      },
      "geometry": {
        "coordinates": {
          "x": -43144,
          "y": 145820,
          "z": 7472
        },
        "type": "Point"
      }
    }
  }
]