For all operations listed below you will need to provide HTTP Request Header Authorization param. For more details see Login/Auth page.

Get the list of portal profiles

Route: /portal_profile

Method: GET

Example result

{
    "entities": [
        {
            "fullname": "name of the Profle",
            "is_active": "1",
            "branch_id": "1",
            "setting_id": "1",
            "id": "1",
            "branch_name": "Name of the Branch",
        },
        {
            ...
        }
        ...
    "total": 123,
    "result": true

Get portal profile by internal ID

Route: /portal_profile/{internal_id}

Method: GET

Example result

{
    "entity": {
        "fullname": "name of the Profle",
        "is_active": "1",
        "branch_id": "1",
        "setting_id": "1",
        "id": "1",
        "branch_name": "Name of the Branch",
    },
    "result": true
}