Access the Utility Bill for a known Deal ID

Use Case:

GIVEN: I know the v2 deal ID.
THEN: I want to access the Utility Bill that has been uploaded to this deal.

📘

For security purposes, signedUrl links have an expiration time. The ttl (time-to-live) value you provide will determine how many seconds the link remains valid before it expires and becomes inaccessible.

query fetchUtilityBillsForADeal {
  fetchUtilityBills(dealId: "1234-deal-id-goes-here-5678") {
    items {
      id
      fileUpload {
        id
        signedUrl(ttl: 300)
      }
    }
  }
}