GET
/
v1
/
renovations
/
{renovation_id}
/
reports
curl --request GET \
  --url https://public-api.setle.app/v1/renovations/{renovation_id}/reports \
  --header 'Authorization: Bearer <token>'
[
  {
    "url": "https://cdn.setle.app/app/renovation_reports/xxx/xxx/xxx.pdf",
    "is_outdated": true,
    "id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "name": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

renovation_id
string
required

Response

200
application/json
Successfully processed request.
url
string
required

A url pointing to the PDF on our Setle CDN, please note it is possible that you have a private CDN setup. Contact Setle in this case to verify your CDN domain

Example:

"https://cdn.setle.app/app/renovation_reports/xxx/xxx/xxx.pdf"

is_outdated
boolean
required

Indicates if the report is outdated based on the current data

Example:

true

id
string
required
created_at
string
required
name
string
required