channel.claims.act

Approve, reject (reason + file) or raise an issue on a marketplace claim; restock per policy.

Machine-readable body schema: /schemas/routes/channel.claims.act.json.

Body

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "approve",
        "reject",
        "issue"
      ]
    },
    "claimItemIds": {
      "maxItems": 50,
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 64
      }
    },
    "reasonId": {
      "type": "string",
      "maxLength": 16
    },
    "note": {
      "type": "string",
      "maxLength": 500
    },
    "restock": {
      "type": "boolean"
    }
  },
  "required": [
    "action"
  ],
  "additionalProperties": false
}
Generated from the live platform registries at build time — reference pages cannot go stale. Markdown variant: /reference/routes/channel.claims.act.md