Skip to main content
PUT
/
v1
/
organisation
/
{id}
/organisation/:id
curl --request PUT \
  --url https://api.tagdeliver.com/v1/organisation/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "ad_tech": false,
  "mar_tech": false,
  "name": "CORE",
  "parent_org": null
}'
{
  "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
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Content-Type
string
required

Path Parameters

id
string
required

Organisation ID

Body

application/json
ad_tech
boolean
required
mar_tech
boolean
required
name
string
required
parent_org
integer | null
required

Response

200 - application/json
results
object
required
success
boolean
required