Skip to content

MngGetWorkflowRule

Returns one workflow rule by id.

Access

Manager sessions: SESSION_MANAGER, SESSION_ADMIN, SESSION_DEALER, SESSION_CRM_MANAGER, SESSION_CRM_ADMIN.

Request Parameters

Name Type Required Description
id int Yes Workflow rule id

Request

{
  "command": "MngGetWorkflowRule",
  "extID": "1",
  "data": {
    "id": 1
  }
}

Response Data

{
  "rule": {
    "id": 1,
    "brand": "brand-a",
    "code": "large_deposit_sof",
    "name": "Large Deposit Source Of Funds",
    "scope": 2,
    "status": 0,
    "priority": 100,
    "trigger": "deposit.created",
    "conditions": [],
    "actions": [],
    "stop_processing": 0,
    "created_time": 1778160000,
    "updated_time": 1778160000
  }
}