Skip to main content
POST
/
patches
/
{patch_id}
/
check
/
{target_resource_id}
Check Patch Compatibility
curl --request POST \
  --url https://api.example.com/patches/{patch_id}/check/{target_resource_id}
{
  "compatible": true,
  "failed_constraints": []
}

Path Parameters

patch_id
string
required
target_resource_id
string
required

Response

Successful Response

Result of a patch compatibility check against a target resource.

Attributes: compatible: Whether all constraints are satisfied. failed_constraints: Constraints that did not pass, with reasons.

compatible
boolean
required
failed_constraints
FailedConstraint · object[]