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. Thettl
(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)
}
}
}
}
Updated 16 days ago