Get Doggo
Gets a list of all doggos.
Response Body
| Name | Type | Description |
|---|---|---|
ID |
String |
Unique ID of the Doggo. |
Name |
String |
Name of the Doggo. |
ClassName |
String |
ClassName of the Doggo. |
location |
Object |
Location details of the Doggo. |
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). |
Inventory |
Object[] |
List of items being carried by the doggo. |
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. |
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": "Char_SpaceRabbit_C_2147414178",
"Name": "Ficsit Remote Monitoring rocks",
"ClassName": "Char_SpaceRabbit_C",
"location": {
"x": -43942.754996165997,
"y": 275363.09331948927,
"z": -3529.0104559118095,
"rotation": 283.58592224121094
},
"Inventory": [
{
"Name": "Steel Beam",
"ClassName": "Desc_SteelPlate_C",
"Amount": 200,
"MaxAmount": 200
}
],
"features": {
"properties": {
"name": "Ficsit Remote Monitoring rocks",
"type": "Lizard Doggo"
},
"geometry": {
"coordinates": {
"x": -43942.754996165997,
"y": 275363.09331948927,
"z": -3529.0104559118095
},
"type": "Point"
}
}
}
]