Get list of teams
curl --request GET \
--url https://api.bundle.social/api/v1/team/ \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bundle.social/api/v1/team/"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.bundle.social/api/v1/team/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bundle.social/api/v1/team/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.bundle.social/api/v1/team/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.bundle.social/api/v1/team/")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bundle.social/api/v1/team/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"id": "<string>",
"name": "<string>",
"organizationId": "<string>",
"createdById": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"organization": {
"id": "<string>",
"createdById": "<string>",
"apiAccess": true,
"analyticsDisabled": true,
"analyticsPostsDisabled": true,
"uploadsCompressionEnabled": true,
"showVerboseErrors": true,
"disconnectCheckEnabled": true,
"deleteAccountAfter": 84,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"promotionCodeId": "<string>",
"name": "<string>",
"avatarUrl": "<string>",
"ref": "<string>",
"dailyPostLimit": {
"TWITTER": 123,
"FACEBOOK": 123,
"INSTAGRAM": 123,
"LINKEDIN": 123,
"YOUTUBE": 123,
"TIKTOK": 123,
"THREADS": 123,
"PINTEREST": 123,
"REDDIT": 123,
"DISCORD": 123,
"SLACK": 123,
"MASTODON": 123,
"BLUESKY": 123,
"GOOGLE_BUSINESS": 123,
"SNAPCHAT": 123
},
"dailyCommentLimit": {
"TWITTER": 123,
"FACEBOOK": 123,
"INSTAGRAM": 123,
"LINKEDIN": 123,
"YOUTUBE": 123,
"TIKTOK": 123,
"THREADS": 123,
"PINTEREST": 123,
"REDDIT": 123,
"DISCORD": 123,
"SLACK": 123,
"MASTODON": 123,
"BLUESKY": 123,
"GOOGLE_BUSINESS": 123,
"SNAPCHAT": 123
},
"monthlyImportLimitPerAccount": 123,
"commentImportLimitPerPost": 123,
"monthlyReviewImportLimitPerAccount": 123,
"analyticsInterval": 123,
"analyticsPostsInterval": 123,
"deletedAt": "2023-11-07T05:31:56Z",
"suspended": true
},
"createdBy": {
"id": "<string>",
"externalId": "<string>",
"email": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"emailVerified": "2023-11-07T05:31:56Z",
"firstName": "<string>",
"lastName": "<string>",
"avatarUrl": "<string>",
"timezone": "<string>",
"deletedAt": "2023-11-07T05:31:56Z"
},
"bots": [
{
"id": "<string>",
"name": "<string>",
"teamId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"avatarUrl": "<string>",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"socialAccounts": [
{
"id": "<string>",
"teamId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"username": "<string>",
"displayName": "<string>",
"bio": "<string>",
"avatarUrl": "<string>",
"externalId": "<string>",
"userUsername": "<string>",
"userDisplayName": "<string>",
"userId": "<string>",
"channels": [
{
"id": "<string>",
"name": "<string>",
"username": "<string>",
"address": "<string>",
"avatarUrl": "<string>",
"webhook": {
"id": "<string>",
"name": "<string>",
"avatar": "<string>",
"url": "<string>"
},
"metadata": {
"allowImages": true,
"allowVideos": true,
"allowGalleries": true,
"linkFlairEnabled": true
}
}
],
"mastodonServerId": "<string>",
"isTiktokBusinessAccount": true,
"disconnectedCheckTryAt": "2023-11-07T05:31:56Z",
"deleteOn": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"avatarUrl": "<string>",
"deletedAt": "2023-11-07T05:31:56Z",
"bio": {
"id": "<string>",
"username": "<string>",
"name": "<string>",
"description": "<string>",
"avatarUrl": "<string>",
"socials": {},
"teamId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"items": [
{
"id": "<string>",
"bioId": "<string>",
"name": "<string>",
"link": "<string>",
"enabled": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"analytics": [
{
"id": "<string>",
"count": 123,
"bioItemId": "<string>",
"deviceType": {},
"country": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"icon": "<string>",
"order": 123
}
]
}
}
],
"total": 123
}{
"message": "<string>",
"statusCode": 123,
"issues": [
{
"message": "<string>",
"path": [
"<string>"
]
}
]
}{
"message": "<string>",
"statusCode": 123
}{
"message": "<string>",
"statusCode": 123
}{
"message": "<string>",
"statusCode": 123
}{
"message": "<string>",
"statusCode": 123
}{
"message": "<string>",
"statusCode": 123
}team
Get list of teams
GET
/
api
/
v1
/
team
/
Get list of teams
curl --request GET \
--url https://api.bundle.social/api/v1/team/ \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bundle.social/api/v1/team/"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.bundle.social/api/v1/team/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bundle.social/api/v1/team/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.bundle.social/api/v1/team/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.bundle.social/api/v1/team/")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bundle.social/api/v1/team/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"id": "<string>",
"name": "<string>",
"organizationId": "<string>",
"createdById": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"organization": {
"id": "<string>",
"createdById": "<string>",
"apiAccess": true,
"analyticsDisabled": true,
"analyticsPostsDisabled": true,
"uploadsCompressionEnabled": true,
"showVerboseErrors": true,
"disconnectCheckEnabled": true,
"deleteAccountAfter": 84,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"promotionCodeId": "<string>",
"name": "<string>",
"avatarUrl": "<string>",
"ref": "<string>",
"dailyPostLimit": {
"TWITTER": 123,
"FACEBOOK": 123,
"INSTAGRAM": 123,
"LINKEDIN": 123,
"YOUTUBE": 123,
"TIKTOK": 123,
"THREADS": 123,
"PINTEREST": 123,
"REDDIT": 123,
"DISCORD": 123,
"SLACK": 123,
"MASTODON": 123,
"BLUESKY": 123,
"GOOGLE_BUSINESS": 123,
"SNAPCHAT": 123
},
"dailyCommentLimit": {
"TWITTER": 123,
"FACEBOOK": 123,
"INSTAGRAM": 123,
"LINKEDIN": 123,
"YOUTUBE": 123,
"TIKTOK": 123,
"THREADS": 123,
"PINTEREST": 123,
"REDDIT": 123,
"DISCORD": 123,
"SLACK": 123,
"MASTODON": 123,
"BLUESKY": 123,
"GOOGLE_BUSINESS": 123,
"SNAPCHAT": 123
},
"monthlyImportLimitPerAccount": 123,
"commentImportLimitPerPost": 123,
"monthlyReviewImportLimitPerAccount": 123,
"analyticsInterval": 123,
"analyticsPostsInterval": 123,
"deletedAt": "2023-11-07T05:31:56Z",
"suspended": true
},
"createdBy": {
"id": "<string>",
"externalId": "<string>",
"email": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"emailVerified": "2023-11-07T05:31:56Z",
"firstName": "<string>",
"lastName": "<string>",
"avatarUrl": "<string>",
"timezone": "<string>",
"deletedAt": "2023-11-07T05:31:56Z"
},
"bots": [
{
"id": "<string>",
"name": "<string>",
"teamId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"avatarUrl": "<string>",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"socialAccounts": [
{
"id": "<string>",
"teamId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"username": "<string>",
"displayName": "<string>",
"bio": "<string>",
"avatarUrl": "<string>",
"externalId": "<string>",
"userUsername": "<string>",
"userDisplayName": "<string>",
"userId": "<string>",
"channels": [
{
"id": "<string>",
"name": "<string>",
"username": "<string>",
"address": "<string>",
"avatarUrl": "<string>",
"webhook": {
"id": "<string>",
"name": "<string>",
"avatar": "<string>",
"url": "<string>"
},
"metadata": {
"allowImages": true,
"allowVideos": true,
"allowGalleries": true,
"linkFlairEnabled": true
}
}
],
"mastodonServerId": "<string>",
"isTiktokBusinessAccount": true,
"disconnectedCheckTryAt": "2023-11-07T05:31:56Z",
"deleteOn": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"avatarUrl": "<string>",
"deletedAt": "2023-11-07T05:31:56Z",
"bio": {
"id": "<string>",
"username": "<string>",
"name": "<string>",
"description": "<string>",
"avatarUrl": "<string>",
"socials": {},
"teamId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"items": [
{
"id": "<string>",
"bioId": "<string>",
"name": "<string>",
"link": "<string>",
"enabled": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"analytics": [
{
"id": "<string>",
"count": 123,
"bioItemId": "<string>",
"deviceType": {},
"country": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"icon": "<string>",
"order": 123
}
]
}
}
],
"total": 123
}{
"message": "<string>",
"statusCode": 123,
"issues": [
{
"message": "<string>",
"path": [
"<string>"
]
}
]
}{
"message": "<string>",
"statusCode": 123
}{
"message": "<string>",
"statusCode": 123
}{
"message": "<string>",
"statusCode": 123
}{
"message": "<string>",
"statusCode": 123
}{
"message": "<string>",
"statusCode": 123
}Was this page helpful?
⌘I