Skip to main content

Create an object

POST 

https://space-safety.starlink.com/api/v1/object

Create an object. Once an object is created, new trajectories for this object may be created.

Request

Body

required

Object

    hard_body_radius numberrequired

    Possible values: <= 512

    Hard body radius of the object in meters

    maneuverability boolean
    norad_id intnullable
    object_name stringrequired

    Possible values: <= 256 characters

    operator_id uuidrequired

Responses

Object UUID

Schema

    string

curl --key client.key --cert client.crt -L -X POST 'https://space-safety.starlink.com/api/v1/object' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"hard_body_radius": 0,
"maneuverability": true,
"norad_id": 0,
"object_name": "string",
"operator_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}'
Request Collapse all
Base URL
https://space-safety.starlink.com/api
Body required
{
  "hard_body_radius": 0,
  "maneuverability": true,
  "norad_id": 0,
  "object_name": "string",
  "operator_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}