Update operator information
PATCHhttps://space-safety.starlink.com/api/v1/operator/:id
Update operator information. Operators may update their own contact information, object limits and rate limits may only be updated by a system administrator.
Request
Path Parameters
id stringrequired
operator UUID
- application/json
Body
required
Object
email string
max_objects integerrequired
name string
phone string
rate_limit integerrequired
Trajectory upload limit per hour
Responses
- 200
- 400
- 404
Operator 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 PATCH 'https://space-safety.starlink.com/api/v1/operator/:id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"email": "string",
"max_objects": 0,
"name": "string",
"phone": "string",
"rate_limit": 0
}'