Teams

featureOS import team members API

This endpoint imports a list of team members. The maximum number of team members that you can import is 50 per call.

POST https://api.featureos.app/api/v3/teams/import

Headers

Parameter Default Description
API-KEY-Generate from organization settings on the admin dashboard.
Authorization-Generate a unique JWT token specific to a user.

Query Parameters

Parameter Required Format Description
teamtrueArrayArray of team members to be imported. Follow the same format as the create team member API.

Sample Response

{
    "team": [
        {
            "id": 23,
            "user": {
                "name": "Developer",
                "email": "[email protected]"
            },
            "admin": false,
            "role": "admin",
            "created_at": "2022-11-03T04:36:02.000Z",
            "updated_at": "2022-11-03T04:36:02.000Z"
        },
        {
            "id": 24,
            "user": {
                "name": "Designer",
                "email": "[email protected]"
            },
            "admin": false,
            "role": "member",
            "created_at": "2022-11-03T04:36:02.000Z",
            "updated_at": "2022-11-03T04:36:02.000Z"
        }
    ],
    "errors": []
}
Previous
Delete Team Member