Batch

Webhook events related to an InsCipher batch, which can be thought of as a transaction import for multiple transactions. These events are still in BETA and open for customer testing.

Batch Status Updated to 'Processed'

Receive a webhook event when there is a status change of an individual batch containing transactions to the 'Processed' status within InsCipher.

Limitations

This webhook can only be created at the Agency Admin level.

Use Cases

  1. Connect clients: Batch CSV Import
    A user uploads a CSV file via the Batch Importer tool within the portal.
  2. Connect and Filing Services Clients: Batches imported via Integration or API
    A batch is imported via Integration or via Transaction Import API call.

Request Examples

{
  "event_id": 12,
  "event": "webhook.batch.status.processed",
  "timestamp": "2024-09-10 07:51:27",
  "batch_id": "e455acef2249e49bb04476226750f9fc",
  "status": "processed",
  "transactions": [
    {
      "policy_number": "AAM05001801",
      "transaction_id": 167254,
      "status_message": "Submitted",
      "warnings": [
        "Required document is missing",
        "Total values don't match. Provided - 6569.78. Calculated - 6574.06",
        "Description of risk not provided or not found",
        "Missing Insurance Company",
        "Line of business is invalid",
        "Stamping fee values don't match. Provided - 11.20. Calculated - 15.50",
        "Retail producer not provided"
      ]
    },
    {
      "policy_number": "AAM05001802",
      "transaction_id": 167255,
      "status_message": "Submitted",
      "warnings": [
        "Required document is missing",
        "Transaction total values don't match. Provided - 6569.78. Calculated - 6574.10",
        "Description of risk not provided or not found",
        "Missing Insurance Company",
        "Line of business is invalid",
        "Stamping fee values don't match. Provided - 11.10. Calculated - 15.40",
        "Retail producer not provided",
        "Layered risk not provided",
        "Risk retention group not provided"
      ]
    }
  ]
}