Get Managers

GET /leads/getManagers/{branchID}

Retrieves a list of available project managers

Notes:

  • The branchID parameter is optional

  • If branchID is omitted, the endpoint returns all project managers

  • If branchID is provided, the endpoint returns managers belonging only to the specified branch

Headers

x-api-key* string

API key for authorization

Response

{
  "id": 0,
  "jsonrpc": "2.0",
  "result": [
    {
      "value": 1,
      "label": "ישראל ישראלי"
    },
    ...
  ]
}

Last updated