LiveDocCompletedV1

Occurs when the requested format is generated from a LiveDoc template or there are failures during generating a LiveDoc.

⚠️

End of Life

This service is scheduled for deprecation on 2024-07-29. Please work with your CSM to be part of the change management initiative.

Webhook Payload

The webhook event is encapsulated within a common wrapper structure providing general information about the event.

PropertyTypeDescription
idstringThe unique Id for the event
versionstringThe version of the event
occurredAtstringThe time when the event occured
tenantIdstringTenant Id
tenantNamestringTenant name
dataobjectThe container of the event details data object details
applicationstringApplication
productAreastringProduct Area

data object details

PropertyTypeDescription
requestIdstringThe unique Id for the LiveDoc generating process
createTimestringThe time when the request was created
updateTimestringThe time when the request was updated
statusstringThe final status of the LiveDoc generating process. [Generated
outputobjectThe output information of the generated LiveDoc output object details
propertiesarray of objectsAdditional LiveDoc generating information (name/value pairs). e.g. The generating process status. e.g. the form options. properties array object details
errorsarray of objectsErrors errors array object details

output object details

PropertyTypeDescription
formatstringThe file format of the generated LiveDoc. [PPTX
blobobjectThe blob information where the generated LiveDoc is stored blob object details
propertiesarray of objectsAdditional output information (name/value pairs) properties array object details

blob object details

PropertyTypeDescription
containerstringBlob container name
idstringBlob container Id
lengthstringBlob data length

properties array object details

PropertyTypeDescription
namestringName
valuestringValue

properties array object details

PropertyTypeDescription
namestringName
valuestringValue

errors array object details

PropertyTypeDescription
messagestringMessage

Example

{
  "id": "GUID",
  "version": "LiveDocCompletedV1",
  "occurredAt": "2023-06-27T21:13:25.268Z",
  "tenantId": "524cb548-d9d2-4cfb-8e4a-8498cfc5aa1b",
  "tenantName": "slivedoctest",
  "data": {
    "requestId": "[guid]",
    "createTime": "[long-unixDateTimeMilliseconds]",
    "updateTime": "[long-unixDateTimeMilliseconds]",
    "status": "[Generated|Failed]",
    "output": {
      "format": "[PPTX|DOCX|PDF|GLISES|GDOC|EXCEL]",
      "blob": {
        "container": "slivedoctest",
        "id": "[blodId]",
        "length": "[long]",
        "fragments": [
          1234,
          4567
        ]
      },
      "properties": [
        {
          "name": "[propName1]",
          "value": "[propValue1]"
        },
        {
          "name": "[propName2]",
          "value": "[propValue2]"
        }
      ]
    },
    "properties": [
      {
        "name": "[propName1]",
        "value": "[propValue1]"
      },
      {
        "name": "[propName2]",
        "value": "[propValue2]"
      }
    ],
    "errors": [
      {
        "message": "error message when status is failed"
      }
    ]
  },
  "application": "[clientDetails.Application]",
  "productArea": "[clientDetails.ProductArea]"
}