Lists files attached to an accepted/responded offer (cursor-paged, newest first). Includes the offer's private files plus shared files from its linked room. Pending invitation envelopes do not expose files through this route.
Path Parameters
- Type: stringidrequired
Offer identifier.
Query Parameters
- Type: integer | string Format: int32page
_size Number of files per page (1-100, default 50)
- Type: stringcursor
Opaque cursor token from a previous response for pagination.
Responses
- application/json
- application/problem+json
- application/problem+json
- application/problem+json
- application/problem+json
- application/problem+json
Request Example for get/api/v1/offers/{id}/files
curl 'https://app.propstreet.com/api/v1/offers/{id}/files' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"data": [
{
"id": "string",
"fileName": "string",
"contentType": "string",
"contentLength": 1,
"uploadedUtc": "2026-09-14T08:01:13.732Z",
"url": "string",
"uploadedBy": {
"id": "string",
"name": "string"
},
"source": {
"kind": "string",
"refId": null,
"label": null,
"projectId": null,
"projectName": null
}
}
],
"page": {
"nextCursor": null,
"pageSize": 1,
"hasMore": true
}
}