Skip to main content
Get details of a specific deployment by ID

Tool details

FieldValue
Nameget_deployment
GroupDeployments

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    },
    "deployment_id": {
      "type": "string",
      "format": "uuid",
      "description": "Deployment ID"
    }
  },
  "required": [
    "project_reference",
    "deployment_id"
  ],
  "additionalProperties": false,
  "description": "Input schema for the get_deployment tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the returned record."
    },
    "release_id": {
      "type": "string",
      "description": "Release identifier associated with this result."
    },
    "environment_id": {
      "type": "string",
      "description": "The environment id associated with this tool result."
    },
    "created_at": {
      "type": "string",
      "description": "Creation timestamp in ISO 8601 format."
    },
    "updated_at": {
      "type": "string",
      "description": "Last update timestamp in ISO 8601 format."
    },
    "user_id": {
      "type": "string",
      "description": "The user id associated with this tool result."
    }
  },
  "required": [
    "id",
    "release_id",
    "environment_id",
    "created_at",
    "updated_at",
    "user_id"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the get_deployment tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}