Teams

Create team member

POST
/api/public/v3/teams/{team_id}/team_members

Path Parameters

team_id*integer

Request Body

application/x-www-form-urlencoded

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/api/public/v3/teams/0/team_members" \  -H "Content-Type: application/x-www-form-urlencoded" \  -d 'user_id=string'
{  "data": {    "id": 0,    "team_id": 0,    "user_id": 0,    "created_at": "string",    "updated_at": "string"  }}