Skip to main content
GET
/
workflows
/
{workflow_id}
/
metadata
Get workflow metadata
curl --request GET \
  --url https://api.cloudcruise.com/workflows/{workflow_id}/metadata \
  --header 'cc-key: <api-key>'
{
  "input_schema": {},
  "vault_schema": {
    "USER": {
      "type": "credential",
      "domain": "https://example.com",
      "example": "11223344-5566-7788-9900-112233445566"
    }
  }
}

Authorizations

cc-key
string
header
required

API key-based authentication. Provide your CloudCruise API key in the cc-key header.

Headers

cc-key
string

CloudCruise API key for authentication

Path Parameters

workflow_id
string
required

The ID of the workflow

Response

Successful operation

input_schema
object

Full JSON schema used to validate run_input_variables, including workflow-level and derived schema constraints.

vault_schema
object

Schema defining vault credentials and their configuration

Example:
{
"USER": {
"type": "credential",
"domain": "https://example.com",
"example": "11223344-5566-7788-9900-112233445566"
}
}