curl --request POST \
--url https://api.openworklabs.com/v1/teams \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"memberIds": [
"<string>"
]
}
'{
"team": {
"id": "<string>",
"organizationId": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"memberIds": [
"<string>"
]
}
}Creates a team inside an organization and can optionally attach existing organization members to it.
curl --request POST \
--url https://api.openworklabs.com/v1/teams \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"memberIds": [
"<string>"
]
}
'{
"team": {
"id": "<string>",
"organizationId": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"memberIds": [
"<string>"
]
}
}Was this page helpful?