Teammitglieder

GET https://condooai.com/api/team-members/{team_id}
curl --request GET \
--url 'https://condooai.com/api/team-members/{team_id}' \
--header 'Authorization: Bearer {api_key}' \
{
    "data": [
        {
            "id": 1,
            "team_id": 1,
            "user_email": "hello@example.com",
            "access": {
                "read": true,
                "create": true,
                "update": true,
                "delete": false
            },
            "status": 1,
            "datetime": "2025-09-16 11:19:21",
            "last_datetime": null
        }
    ]
}
POST https://condooai.com/api/teams
Parameter Details Beschreibung
team_id Erforderlich Integer -
user_email Erforderlich String -
access Optional String Array read.all
create.documents , create.images , create.upscaled_images , create.removed_background_images , create.replaced_background_images , create.transcriptions , create.chats , create.syntheses
update.documents , update.images , update.upscaled_images , update.removed_background_images , update.replaced_background_images , update.transcriptions , update.chats , update.syntheses
delete.documents , delete.images , delete.upscaled_images , delete.removed_background_images , delete.replaced_background_images , delete.transcriptions , delete.chats , delete.syntheses
curl --request POST \
--url 'https://condooai.com/api/team-members' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'team_id=1' \
--form 'user_email=hello@example.com' \
{
    "data": {
        "id": 1
    }
}
POST https://condooai.com/api/team-members/{team_member_id}
Parameter Details Beschreibung
access Optional String Array read.all
create.documents , create.images , create.upscaled_images , create.removed_background_images , create.replaced_background_images , create.transcriptions , create.chats , create.syntheses
update.documents , update.images , update.upscaled_images , update.removed_background_images , update.replaced_background_images , update.transcriptions , update.chats , update.syntheses
delete.documents , delete.images , delete.upscaled_images , delete.removed_background_images , delete.replaced_background_images , delete.transcriptions , delete.chats , delete.syntheses
curl --request POST \
--url 'https://condooai.com/api/team-members/{team_member_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'access[]=create' \
--form 'access[]=update' \
{
    "data": {
        "id": 1
    }
}
DELETE https://condooai.com/api/team-members/{team_member_id}
curl --request DELETE \
--url 'https://condooai.com/api/team-members/{team_member_id}' \
--header 'Authorization: Bearer {api_key}' \