Teams

featureOS add team member API

This endpoint creates a new team member.

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

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
emailtrueEmailValid email of the team member
roletrueStringValid roles (supports 'admin', 'member' and 'csm')

Sample Response

{
    "id": 23,
    "user": {
        "name": "Developer",
        "email": "[email protected]"
    },
    "admin": false,
    "role": "member",
    "created_at": "2022-11-03T04:36:02.000Z",
    "updated_at": "2022-11-03T04:36:02.000Z"
}
Previous
List All Team Members