Request
Body Params  application/json
{
    "p": 0,
    "limit": 0,
    "asc": true,
    "orderby": "string",
    "query": "string",
    "person_id": 0
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/team/list' \
--header 'Content-Type: application/json' \
--data-raw '{
    "p": 0,
    "limit": 0,
    "asc": true,
    "orderby": "string",
    "query": "string",
    "person_id": 0
}'
Responses
application/json {
    "error": {
        "code": "InvalidParameter",
        "message": "string"
    },
    "data": {
        "items": [
            {
                "team_id": 0,
                "team_name": "string",
                "description": "string",
                "created_at": 0,
                "updated_at": 0,
                "updated_by": 0,
                "updated_by_name": "string",
                "creator_id": 0,
                "ref_id": "string",
                "person_ids": [
                    0
                ]
            }
        ],
        "p": 0,
        "limit": 0,
        "total": 0
    }
}
Modified at 2025-04-01 04:15:13