organization
Search for teams within an organization
get/orgs/{org}/teams/search
Path parameters
orgstring required
name of the organization
Query parameters
qstring
keywords to search
include_descboolean
include search within team description (defaults to true)
pageinteger
page number of results to return (1-based)
limitinteger
page size of results
Response
SearchResults of a successful search
Example response
{
"data": [
{
"units": [
"repo.code",
"repo.issues",
"repo.ext_issues",
"repo.wiki",
"repo.pulls",
"repo.releases",
"repo.projects",
"repo.ext_wiki"
],
"units_map": {
"repo.code": "read",
"repo.ext_issues": "none",
"repo.ext_wiki": "none",
"repo.issues": "write",
"repo.projects": "none",
"repo.pulls": "owner",
"repo.releases": "none",
"repo.wiki": "admin"
}
}
]
}