Route Strategy

Update

Update an existing Route Strategy record by ID.

put/api/cp/route-strategy/{id}

Path parameters

idinteger required

Id identifier

Request body

idinteger

Id

account_idinteger

Account Id (references account.id)

namestring required

Name

strategystring

Strategy

cardsobject

Cards

override_routinginteger required

Override Routing

Example request

{
  "id": 12345,
  "account_id": 1,
  "name": "Example Name",
  "strategy": "example_strategy",
  "cards": "example_cards",
  "override_routing": 1
}

Response

Operation completed successfully

statusstring

Operation status

Example response

{
  "status": "OK"
}

Changes