Workspaces

This documentation is for LiquidPlanner New: next.liquidplanner.com

Retrieve a list of all the workspaces (workspace name and workspace id) that the Token Owner is authorized to access in the Org. The data returned is in JSON format.

https://next.liquidplanner.com/api/workspaces/v1

Supported Methods

GET

Sample Response

{
    "recordLimit": 500,
    "recordCount": 1,
    "data": [
        {
            "id": 21,
            "organizationId": 21,
            "name": "Sample Workspace"
        }
    ]
}

Filter Options

Apply the filter string to the endpoint URL.

Filter attritbuteField typeDescriptionFilter string
idnumberPull details about a specific workspace its id?id[is]="21"
namestringLook for a workspace by its name?name[is]="Test Workspace"