Skip to main content
GET
/
v0
/
sca
/
status
/
{id}
Get status of a sca run
curl --request GET \
  --url https://{hostname}.gable.ai/v0/sca/status/{id} \
  --header 'X-API-KEY: <api-key>'
{
  "status": "pending",
  "message": "<string>",
  "asset_registration_outcomes": [
    {
      "data_asset_resource_name": {
        "source_type": "postgres",
        "data_source": "<string>",
        "path": "<string>"
      },
      "error": "<string>"
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

id
string<uuid>
required

UUID of the sca job

Response

the status and information about the sca run job

status
enum<string>
required

status of the sca job

Available options:
pending,
uploaded,
processing,
success,
error
message
string

message associated with the status, if any

asset_registration_outcomes
object[]