Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel1
maxLevel7

Get Access Token

The access token is used in the request header Authorization: Bearer <COPY ACCESS CODE HERE>

...

Code Block
curl --location \
  --request DELETE 'https://<domain>/api/tables/<TABLE_ID>/related?object_id=<TAG_ID>&relationship=TAGGED_BY' \
  --header "Authorization: Bearer ${ACCESS_TOKEN}"

Adding a property to a object

A property name is unique for a given object

<OBJECT ID> can be found from the Get object APIs.

Code Block
curl --location \
  --request PUT 'https://<domain>/api/additionalproperties/<OBJECT ID>' \
  --header "Authorization: Bearer ${ACCESS_TOKEN}" \
  --header 'Content-Type: application/json' \
  --data-raw '[
    {
        "operation": "ADD_OR_UPDATE",
        "name": "new property 123",
        "type": "STRING",
        "value": "PASS",
        "description": "Add a property description here"
    },
    {
        "operation": "CLEAR",
        "name": "existing property",
        "type": "STRING",
        "value": "",
        "description": ""
    }
]'

Get a collection template

...