curl --request GET \
--url https://api.usepylon.com/teams \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"users": [
{
"email": "<string>",
"id": "<string>"
}
]
}
],
"pagination": {
"cursor": "<string>",
"has_next_page": true
},
"request_id": "<string>"
}Get a list of teams
curl --request GET \
--url https://api.usepylon.com/teams \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"users": [
{
"email": "<string>",
"id": "<string>"
}
]
}
],
"pagination": {
"cursor": "<string>",
"has_next_page": true
},
"request_id": "<string>"
}