For the complete documentation index, see llms.txt. This page is also available as Markdown.

Sends Data to specified Block by Tag

Sends data to the specified block.

post

Sends data to the specified block.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
policyIdstringRequired

Policy Id

Example: 000000000000000000000001
tagNamestringRequired

Block name (Tag)

Example: block-tag
Body
object · ObjectOptional
Responses
200

Successful operation.

application/json
idstringRequired
blockTypestringRequired
post/policies/{policyId}/tag/{tagName}/blocks
POST /api/v1/policies/{policyId}/tag/{tagName}/blocks HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 2

{}
{
  "id": "text",
  "blockType": "text",
  "blocks": [
    {
      "id": "text",
      "blockType": "text",
      "blocks": [
        {
          "id": "text",
          "blockType": "text",
          "blocks": [
            "[Circular Reference]"
          ]
        }
      ]
    }
  ]
}

Was this helpful?