POST/v1/Anthropic/generate-page

Create Anthropic generate page

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Request body application/json

conversationIdstringnullable
userIdstringnullable
tenantIdstringnullable
userMessagestringnullable
imagesarray of objectAttachedImagenullable
fileNamestringnullable
mediaTypestringnullable
base64Datastringnullable
descriptionstringnullable
purposestringnullable
contextobjectnullable
{key}stringnullable

Responses

No response body.

curl --request POST \
  --url 'https://api.4comply.io/v1/Anthropic/generate-page' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '{
  "conversationId": "00000000-0000-0000-0000-000000000000",
  "userId": "00000000-0000-0000-0000-000000000000",
  "tenantId": "your-tenant-id",
  "userMessage": "string",
  "images": [
    {
      "fileName": "Example name",
      "mediaType": "application/json",
      "base64Data": "ZXhhbXBsZQ==",
      "description": "Example text"
    }
  ],
  "purpose": "string",
  "context": {
    "key": "string"
  }
}'