Skip to content

Diff Release

GET
/api/v3/projects/{project_id}/releases/{release_id}/diff
curl --request GET \
--url https://example.com/api/v3/projects/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/releases/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/diff

Return an exact semantic diff against an explicit or preceding release.

project_id
required
Project Id
string format: uuid
release_id
required
Release Id
string format: uuid
baseline_release_id
Any of:
string format: uuid
X-Admin-Key
Any of:
string

Successful Response

Media typeapplication/json
ProjectReleaseDiffResponseV3

Semantic diff between one release and an explicit or preceding baseline.

object
baseline_release_id
Any of:
string format: uuid
changes
Changes
Array<object>
ProjectV3SemanticChange

One stable Project-level semantic change shared by CLI and dashboard.

object
action
required
Action
string
Allowed values: created modified removed
authority_effect
required
Authority Effect
string
Allowed values: none reduced expanded changed
category
required
Category
string
Allowed values: project agent capability connection credential_requirement memory_namespace skill soul delegation identity policy
changed_fields
Changed Fields
Array<string>
display_name
required
Display Name
string
>= 1 characters <= 200 characters
reason_code
required
Reason Code
string
>= 1 characters <= 100 characters
subject_id
required
Subject Id
string
>= 1 characters <= 200 characters
release_id
required
Release Id
string format: uuid
semantic_diff_fingerprint
required
Semantic Diff Fingerprint
string
/^[0-9a-f]{64}$/
Example
{
"changes": [
{
"action": "created",
"authority_effect": "none",
"category": "project"
}
]
}

Authentication failed with a resumable next action.

Media typeapplication/json
ManagementErrorEnvelope

FastAPI error envelope shared by v3 management endpoints.

object
detail
required
ManagementErrorResponse

One bounded error with a coding-agent-safe recovery action.

object
affected_resource
Any of:
string
message
required
Message
string
next_action
Any of:
string
operation_id
Any of:
string format: uuid
phase
Any of:
string
reason_code
required
Reason Code
string
Examplegenerated
{
"detail": {
"affected_resource": "example",
"message": "example",
"next_action": "example",
"operation_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"phase": "example",
"reason_code": "example"
}
}

The authenticated actor lacks the required Project authority.

Media typeapplication/json
ManagementErrorEnvelope

FastAPI error envelope shared by v3 management endpoints.

object
detail
required
ManagementErrorResponse

One bounded error with a coding-agent-safe recovery action.

object
affected_resource
Any of:
string
message
required
Message
string
next_action
Any of:
string
operation_id
Any of:
string format: uuid
phase
Any of:
string
reason_code
required
Reason Code
string
Examplegenerated
{
"detail": {
"affected_resource": "example",
"message": "example",
"next_action": "example",
"operation_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"phase": "example",
"reason_code": "example"
}
}

The scoped management resource was not found.

Media typeapplication/json
ManagementErrorEnvelope

FastAPI error envelope shared by v3 management endpoints.

object
detail
required
ManagementErrorResponse

One bounded error with a coding-agent-safe recovery action.

object
affected_resource
Any of:
string
message
required
Message
string
next_action
Any of:
string
operation_id
Any of:
string format: uuid
phase
Any of:
string
reason_code
required
Reason Code
string
Examplegenerated
{
"detail": {
"affected_resource": "example",
"message": "example",
"next_action": "example",
"operation_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"phase": "example",
"reason_code": "example"
}
}

A stable management invariant prevented progress.

Media typeapplication/json
ManagementErrorEnvelope

FastAPI error envelope shared by v3 management endpoints.

object
detail
required
ManagementErrorResponse

One bounded error with a coding-agent-safe recovery action.

object
affected_resource
Any of:
string
message
required
Message
string
next_action
Any of:
string
operation_id
Any of:
string format: uuid
phase
Any of:
string
reason_code
required
Reason Code
string
Examplegenerated
{
"detail": {
"affected_resource": "example",
"message": "example",
"next_action": "example",
"operation_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"phase": "example",
"reason_code": "example"
}
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"ctx": {},
"input": "example",
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}