Skip to main content

Update operator information

PATCH 

https://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

Body

required

Object

    email string
    max_objects integerrequired
    name string
    phone string
    rate_limit integerrequired

    Trajectory upload limit per hour

Responses

Operator UUID

Schema

    string

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
}'
Request Collapse all
Base URL
https://space-safety.starlink.com/api
Parameters
— pathrequired
Body required
{
  "email": "string",
  "max_objects": 0,
  "name": "string",
  "phone": "string",
  "rate_limit": 0
}