Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
curl --request POST \
--url https://api.tagdeliver.com/v1/organisation \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"ad_tech": false,
"mar_tech": false,
"name": "CORE",
"parent_org": null
}'{
"results": {
"id": 3,
"name": "CORE",
"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
}Creates a new child organisation under the currently logged in organisation
curl --request POST \
--url https://api.tagdeliver.com/v1/organisation \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"ad_tech": false,
"mar_tech": false,
"name": "CORE",
"parent_org": null
}'{
"results": {
"id": 3,
"name": "CORE",
"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.
Was this page helpful?