swit-project-list
Retrieve a list of projects from Swit workspaces using workspace ID, filters, and pagination parameters for efficient project management and organization.
Instructions
Retrieve list of projects
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activity | No | ||
disclosure | No | ||
limit | No | ||
name | No | ||
offset | No | ||
workspace_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"activity": {
"type": "string"
},
"disclosure": {
"type": "string"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "number"
},
"name": {
"type": "string"
},
"offset": {
"type": "string"
},
"workspace_id": {
"type": "string"
}
},
"required": [
"workspace_id"
],
"type": "object"
}