Event informing that a new bill was discovered, but that we were unable to parse it yet

When bill data is not available instantly, this webhook is sent to allow developers to determine the status of those bills. The webhook contains the customer’s unique identifier(s), the customer’s utility and the expected data velocity for the bill object.

{
    "event": "new_unparsed_bill",
    "object": {
        "external_id": "BILL_123",
        "id": 12345,
        "status": "unparsed",
        "customer_id": 12345,
        "customer_external_id": "MSCOTT123",
        "utility": "con_edison",
        "utility_data_velocity": "24 hours",
        "file_url": "https://private.bayou.energy/bills/12345.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=XYZ&X-Amz-Date=20220701T000000Z&X-Amz-Expires=1800&X-Amz-Signature=ABCEF0123456&X-Amz-SignedHeaders=host"
    }
}