Cluster reassignment (legacy handleFeedUpdate)

POST /task/v1/actions/{feed-key}/reassign

Operation id: reassignFeedCluster

Tags: MyWorkFeedActions

Parameters

Path parameters

NameTypeRequiredDescription
feed-keyintegerYesUnique numeric feed identifier

Security

  • ApiKeyHeader (apiKey)
    • APIGEE API key header validated by VerifyAPIKey policy.
  • AuthTokenHeader (apiKey)
    • Session authentication token validated server-side against the user session store.

Responses

200 — Success — {status: OK, response: "Reassignment done successfully"}

Content type: application/json

401 — Missing or invalid X-reflexis-csrf-token-X session token

Content type: application/json

500 — Unexpected server-side error

Content type: application/json

Request body

application/x-www-form-urlencoded

Schema

PropertyTypeRequiredDescription
cluster_idstringYesCluster identifier (mandatory in controller validation)
cluster_child_idstringNoChild cluster identifier
where_feed_statusstringNoCurrent status filter for update
feed_statusstringNoTarget status
panel_idstringNoPanel identifier
reset_status_flagstringNoReset status flag
{
  "type": "object",
  "required": [
    "cluster_id"
  ],
  "properties": {
    "cluster_id": {
      "type": "string",
      "description": "Cluster identifier (mandatory in controller validation)"
    },
    "cluster_child_id": {
      "type": "string",
      "description": "Child cluster identifier"
    },
    "where_feed_status": {
      "type": "string",
      "description": "Current status filter for update"
    },
    "feed_status": {
      "type": "string",
      "description": "Target status"
    },
    "panel_id": {
      "type": "string",
      "description": "Panel identifier"
    },
    "reset_status_flag": {
      "type": "string",
      "description": "Reset status flag"
    }
  }
}

Response models

200 — Success — {status: OK, response: "Reassignment done successfully"}

Content type: application/json

Schema

JSON object (structure varies by endpoint).

{
  "type": "object",
  "description": "JSON object (structure varies by endpoint)."
}

401 — Missing or invalid X-reflexis-csrf-token-X session token

Content type: application/json

Schema

PropertyTypeRequiredDescription
statusstringYesAlways "ER" for error responses
errorCodestringYesApplication-level error code (e.g. E202, E105, E404)
responsestringYesHuman-readable error message
{
  "type": "object",
  "example": {
    "status": "ER",
    "errorCode": "E202",
    "response": "User session is invalid"
  },
  "required": [
    "status",
    "errorCode",
    "response"
  ],
  "properties": {
    "status": {
      "type": "string",
      "description": "Always \"ER\" for error responses",
      "enum": [
        "ER"
      ]
    },
    "errorCode": {
      "type": "string",
      "description": "Application-level error code (e.g. E202, E105, E404)"
    },
    "response": {
      "type": "string",
      "description": "Human-readable error message"
    }
  }
}

Example:

{
  "status": "ER",
  "errorCode": "E202",
  "response": "User session is invalid"
}

500 — Unexpected server-side error

Content type: application/json

Schema

PropertyTypeRequiredDescription
statusstringYesAlways "ER" for error responses
errorCodestringYesApplication-level error code (e.g. E202, E105, E404)
responsestringYesHuman-readable error message
{
  "type": "object",
  "example": {
    "status": "ER",
    "errorCode": "E202",
    "response": "User session is invalid"
  },
  "required": [
    "status",
    "errorCode",
    "response"
  ],
  "properties": {
    "status": {
      "type": "string",
      "description": "Always \"ER\" for error responses",
      "enum": [
        "ER"
      ]
    },
    "errorCode": {
      "type": "string",
      "description": "Application-level error code (e.g. E202, E105, E404)"
    },
    "response": {
      "type": "string",
      "description": "Human-readable error message"
    }
  }
}

Example:

{
  "status": "ER",
  "errorCode": "E302",
  "response": "Internal server error"
}