curl --request POST \
--url https://cloud.kaneo.app/api/auth/organization/add-team-member \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"teamId": "<string>",
"userId": "<string>",
"organizationId": "<string>"
}
'{
"id": "<string>",
"userId": "<string>",
"teamId": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}The newly created member
curl --request POST \
--url https://cloud.kaneo.app/api/auth/organization/add-team-member \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"teamId": "<string>",
"userId": "<string>",
"organizationId": "<string>"
}
'{
"id": "<string>",
"userId": "<string>",
"teamId": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}Bearer token authentication
Team member created successfully
Was this page helpful?