1. Teams
Pibox public API
  • v1
    • Teams
      • Invite Member
        POST
      • Get File Statuses
        POST
      • Get Teams
        POST
    • Groups
      • Get Groups
      • Get Group Info
      • Create Group
    • Projects
      • Get Project Info
      • Create Project
      • Get Projects by Group
      • Get Non Group Projects
      • Get Chat History
      • Chat Message
    • 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
      • Create Tasks
    • Webhooks
      • Create Webhook Endpoint
      • Get Webhook Endpoints
      • Delete Webhook Endpoint
  • Webhooks
    • file.uploaded
    • file.renamed
    • file.status_changed
    • task.closed
    • List webhook endpoints
      GET
    • Create a webhook endpoint
      POST
    • Delete a webhook endpoint
      DELETE
  • Schemas
    • v1
      • Team
      • Track Info
      • Video Info
      • Image Info
      • AI Tags
      • Empty Schema
    • FileStatus
    • Error
    • ListEnvelope
    • ObjectEnvelope
    • TokenResponse
    • ClientRegistration
    • AuthServerMetadata
  1. Teams

Get File Statuses

POST
https://api.pibox.com/v1/account/teams/get_file_statuses
Return the ordered list of file statuses configured for a team. Useful for decoding old_status / new_status ids in webhook payloads or building UI dropdowns.

Request

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Status list
Bodyapplication/json

🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.pibox.com/v1/account/teams/get_file_statuses' \
--header 'Content-Type: application/json' \
--data '{
    "team_id": 737
}'
Response Response Example
{
    "object": "list",
    "data": [
        {
            "id": 1,
            "title": "Waiting review",
            "color": 6,
            "position": 1
        },
        {
            "id": 2,
            "title": "Revision requested",
            "color": 8,
            "position": 2
        },
        {
            "id": 3,
            "title": "Approved",
            "color": 3,
            "position": 3
        }
    ]
}
Modified at 2026-05-25 15:42:05
Previous
Invite Member
Next
Get Teams
Built with