Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Organisation ID
curl --request GET \
--url https://api.tagdeliver.com/v1/organisation/{id} \
--header 'Authorization: Bearer <token>'{
"results": {
"id": 3,
"name": "DEMO",
"domain": null,
"parent_org": null,
"managed": false,
"status": 0,
"approved": 1,
"terms_accepted": 1,
"date_added": "2010-01-01 00:00:00",
"meta": {
"currency": "GBP"
}
},
"success": true
}Fetches a single organisation
curl --request GET \
--url https://api.tagdeliver.com/v1/organisation/{id} \
--header 'Authorization: Bearer <token>'{
"results": {
"id": 3,
"name": "DEMO",
"domain": null,
"parent_org": null,
"managed": false,
"status": 0,
"approved": 1,
"terms_accepted": 1,
"date_added": "2010-01-01 00:00:00",
"meta": {
"currency": "GBP"
}
},
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Organisation ID
Was this page helpful?