Skip to main content
GET
/
deployments
/
{org}
/
{env_name}
/
{fingerprint}
Get Deployment
curl --request GET \
  --url https://app.kosli.com/api/v2/deployments/{org}/{env_name}/{fingerprint} \
  --header 'Authorization: Bearer <token>'
{
  "fingerprint": "<string>",
  "deployed_at": 123,
  "artifact_name": "<string>",
  "env_name": "<string>",
  "snapshot_index": 123,
  "artifact": {
    "flow_name": "<string>",
    "trail_name": "<string>",
    "template_reference_name": "<string>",
    "git_commit": "<string>",
    "git_commit_info": {
      "sha1": "<string>",
      "message": "<string>",
      "author": "<string>",
      "branch": "<string>",
      "timestamp": 123,
      "url": "<string>"
    },
    "repo_info": {
      "name": "<string>",
      "repo_id": "<string>"
    }
  },
  "replaced_artifact": {
    "fingerprint": "<string>",
    "artifact_name": "<string>",
    "snapshot_index": 123,
    "artifact": {
      "flow_name": "<string>",
      "trail_name": "<string>",
      "template_reference_name": "<string>",
      "git_commit": "<string>",
      "git_commit_info": {
        "sha1": "<string>",
        "message": "<string>",
        "author": "<string>",
        "branch": "<string>",
        "timestamp": 123,
        "url": "<string>"
      },
      "repo_info": {
        "name": "<string>",
        "repo_id": "<string>"
      }
    }
  },
  "diff_url": "<string>",
  "_links": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

env_name
string
required
fingerprint
string
required
org
string
required

Response

Successful Response

fingerprint
string
required
deployed_at
number
required
artifact_name
string | null
env_name
string | null
snapshot_index
integer | null
artifact
DeploymentArtifactResponse · object
replaced_artifact
ReplacedArtifactResponse · object
diff_url
string | null
Last modified on April 28, 2026