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 attritbute | Field type | Description | Filter string |
---|---|---|---|
id | number | Pull details about a specific workspace its id | ?id[is]="21" |
name | string | Look for a workspace by its name | ?name[is]="Test Workspace" |
Updated about 2 years ago