curl --request GET \
--url https://api.tagdeliver.com/v1/organisation \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": 3,
"name": "DEMO",
"domain": null,
"parent_org": null,
"managed": 0,
"status": 0,
"approved": 1,
"terms_accepted": 1,
"date_added": "2010-01-01 00:00:00"
}
],
"success": true
}Returns a list containing the active organisation, and any child organisations
curl --request GET \
--url https://api.tagdeliver.com/v1/organisation \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": 3,
"name": "DEMO",
"domain": null,
"parent_org": null,
"managed": 0,
"status": 0,
"approved": 1,
"terms_accepted": 1,
"date_added": "2010-01-01 00:00:00"
}
],
"success": true
}Was this page helpful?