To obtain a list of all teams within your organization, you can use the following API endpoint:
Endpoint: GET /teams/
Query String Parameters:
- None
Response Example:
"count":3,
"next":null,
"previous":null,
"results": [
{
"uuid":"13883b5b-7066-47aa-ad0c-63bbc89eb986",
"name":"General",
"active":true,
"is_default":true
},
...
]
}
Payload Parameters:
-
uuid
: [String] Unique identifier for the team. -
name
: [String] Name of the team. -
active
: [Boolean] Indicates whether the team is active. -
is_default
: [Boolean] Indicates whether the team is set as the default.
How to Use:
-
Access Team Information: Use the
GET
method on/teams/
to retrieve a list of all teams in your organization. -
Review Response: The response will include a count of teams, along with detailed information for each team. Information provided includes the team's UUID, name, activity status, and whether it is set as the default team.
-
Utilize Team Data: Use the retrieved information as needed for managing and understanding the teams within your organization.
Feel free to integrate this API endpoint into your applications or systems to keep track of teams within your organization. If you have any questions or require further assistance, please reach out to our support team at support@dailybot.com.
Comments
0 comments
Article is closed for comments.