v1

latestOpenAPI 3.0.0Apache 2.02026-07-2410185524.2 KB
Tags

remove record

Removes an assigned tag from the specified record

For custom components:

RaiselyComponents.api.one('tags', '{uuid}').one('records', '{recordUuid}').delete('{recordUuid}', data = {}, params = {}, headers = {}) => Promise<{result}>

:fa-gears: See Restie Response Data for a more detailed overview of responses through the client wrapper

delete/tags/{uuid}/records/{recordUuid}

Path parameters

uuidstring required

The uuid of the record

recordUuidstring required

The uuid of the record being unassigned from a given tag

Headers

Authorizationstring

A valid HTTP Bearer token, required to access private records.

Response

The resulting tags after the operation was applied

Example response

{
  "data": [
    {
      "recordUuid": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa",
      "tagUuid": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"
    }
  ]
}