get https://hover.to/api/v2/deliverables?wallet_id=
View the list of available deliverable IDs for a new job or capture request
Overview
This endpoint returns a list of the allowed deliverables, scoped to a (required) wallet_id
query parameter. This will provide an integration a list of deliverables that can be associated with a property when creating a new job or capture request.
To view a list of all of the available wallet IDs with the authenticated org, your integration can call the List Available Wallets endpoint.
A successful request will return a deliverables
array with the allowed deliverable name and corresponding id
value.
Sample Response Body
{
deliverables: [
{ name: 'roof', 2 },
{ name: 'complete', 3 },
{ name: 'interior', 8 }
]
}