Request
Body Params  application/json
{
    "team_id": 0,
    "team_name": "string",
    "ref_id": "string"
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/team/info' \
--header 'Content-Type: application/json' \
--data-raw '{
    "team_id": 0,
    "team_name": "string",
    "ref_id": "string"
}'
Responses
application/json {
    "error": {
        "code": "InvalidParameter",
        "message": "string"
    },
    "data": {
        "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
        ]
    }
}
Modified at 2025-04-01 04:16:17