Documentation Index
Fetch the complete documentation index at: https://docs.turnkey.com/llms.txt
Use this file to discover all available pages before exploring further.
Unique identifier for a given Organization.
Unique identifier for a given TVC App.
A successful response returns the following fields:
curl --request POST \
--url https://api.turnkey.com/public/v1/query/get_app_status \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"organizationId": "<string>",
"appId": "<string>"
}'
{
"appStatus": {
"appId": "<string>",
"deployments": [
{
"deploymentId": "<string>",
"readyReplicas": "<number>",
"desiredReplicas": "<number>",
"lastUpdatedTime": {
"seconds": "<string>",
"nanos": "<string>"
}
}
],
"targetedDeploymentId": "<string>"
}
}