Skip to main content

Organization

Get all the organizations that belong to the user

you need to send an HTTP GET request to the API Endpoint, with the authentication Header, to list all the organizations belonging to the user.

https://app.tpstreams.com/api/v1/organizations/
curl --request GET \
--url https://app.tpstreams.com/api/v1/organizations/ \
--header 'authorization: token 378ad87dc80534b75dcb674da1e7a0145b27461c936c4091c17546fdca6baac1' \
--header 'cache-control: no-cache'

Response


{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"name": "Testpress",
"uuid": "6dnpyx"
},
{
"name": "Streams",
"uuid": "7coqzy"
}
]
}