Skip to main content
PUT
/
mission-dispatch
/
{missionId}
/
execution
curl --request PUT \
  --url https://api.inorbit.ai/mission-dispatch/{missionId}/execution \
  --header 'Content-Type: application/json' \
  --header 'x-auth-inorbit-app-key: <api-key>' \
  --data '
{
  "action": "pause"
}
'
{
  "missionId": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://inorbitinc.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-auth-inorbit-app-key
string
header
required

InOrbit appKey authenticates API requests using a token.

You can obtain your appKey in the Authentication docs.

Path Parameters

missionId
string
required

The running mission's id

Body

application/json

Mission object to be created

action
enum<string>
Available options:
pause,
resume

Response

The mission execution was correctly updated (paused or resumed).

missionId
string

Unique id of mission created. It can be tracked using Mission Tracking API.s