Create an object
POSThttps://space-safety.starlink.com/api/v1/object
Create an object. Once an object is created, new trajectories for this object may be created.
Request
- application/json
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
- 201
- 400
- 404
Object UUID
- application/json
- Schema
Schema
string
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
correlation_id string
error string
error_type string
metadata
{
"correlation_id": "string",
"error": "string",
"error_type": "string",
"metadata": {}
}
Not Found
- application/json
- Schema
- Example (from schema)
Schema
correlation_id string
error string
error_type string
metadata
{
"correlation_id": "string",
"error": "string",
"error_type": "string",
"metadata": {}
}
- curl
- python
- CURL
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"
}'