1. Projects
Pibox public API
0.6.3
  • 0.6.2
  • 0.6.3
  • v1
    • Teams
      • Get Teams
    • Groups
      • Get Groups
      • Get Group Info
    • Projects
      • Get Project Info
        POST
      • Create Project
        POST
      • Get Projects by Group
        POST
      • Get Non Group Projects
        POST
      • Get Chat History
        POST
      • Chat Message
        POST
    • Account
      • Get Account Info
    • Files
      • Find Files
      • Get File Info
      • Create Folder
      • Get Files by Folder
      • Get Folder URL
      • Update Folder Properties
      • Delete File
      • Upload from External Source
      • Generate Track Tags
      • File Upload
    • Tasks
      • Get Task Template
      • Load Tasks from Template
      • Get Tasks by Folder
    • Webhooks
      • Create Webhook Endpoint
      • Get Webhook Endpoints
      • Delete Webhook Endpoint
  • Schemas
    • v1
      • Team
      • Track Info
      • Video Info
      • Image Info
      • AI Tags
      • Empty Schema
  1. Projects

Get Projects by Group

POST
/v1/account/projects/get_list_by_group

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/account/projects/get_list_by_group' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
     "group_id":1797
}'
Response Response Example
{
    "data": [
        {
            "avatar_url": null,
            "created": "2020-09-14T11:17:37Z",
            "group_id": 1797,
            "id": 158402,
            "is_private": false,
            "members": [
                378
            ],
            "object": "project",
            "root_directory": 620907,
            "title": "API PROJ 1"
        },
        {
            "avatar_url": null,
            "created": "2020-09-14T11:17:48Z",
            "group_id": 1797,
            "id": 158403,
            "is_private": false,
            "members": [
                378
            ],
            "object": "project",
            "root_directory": 620908,
            "title": "API PROJ 2"
        }
    ],
    "object": "list"
}
Modified at 2026-03-16 09:02:23
Previous
Create Project
Next
Get Non Group Projects
Built with