List attached files

Path Parameters
  • spaceId
    Type: integer
    required

    ID of space

Query Parameters
  • filter
    Type: string

    Filter expression to narrow results. Format: field operator value. Multiple conditions are joined with ; or & (AND) or | (OR). Conditions can be grouped with parentheses. Supported operators: = (equals; also matches NULL when value is empty), != (not equals), >, >=, <, <=, ~ (LIKE, use % as wildcard; empty value matches NULL/empty), !~ (NOT LIKE), ... (IN set, comma-separated: statusId...1,2,3). OR across values for one field: status=(active|pending). Examples: filter=name=Acme, filter=created>=2024-01-01;assigneeId=, filter=name~%smith%;statusId...1,2,3, filter=(status=active|status=pending)&spaceId=5.

  • offset
    Type: integer
    min:  
    0

    Zero-based index of the first record to return. Use together with limit for pagination. Example: offset=20&limit=10 returns records 21–30.

  • limit
    Type: integer
    min:  
    1

    Maximum number of records to return. Use together with offset for pagination.

  • order
    Type: string

    Sort order for results. Comma-separated list of field;DIRECTION pairs. Direction is ASC or DESC (default DESC when omitted). Example: order=name;ASC or order=id;ASC,name;DESC.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/space/{spaceId}/file/
curl https://test.boost.space/api/space/1/file/ \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
[
  {
    "id": 42,
    "created": "2026-01-15T09:30:00Z",
    "createdUserId": 42,
    "updated": "2026-01-15T09:30:00Z",
    "updatedUserId": 42,
    "statusId": 42,
    "statusSystemId": 42,
    "path": "string",
    "fileName": "Sample fileName",
    "name": "Sample name",
    "type": "string",
    "customType": 1,
    "storage": 1,
    "filesize": "string",
    "boostId": "string",
    "customFieldsValues": [
      {
        "id": 42,
        "created": "2026-01-15T09:30:00Z",
        "valueWysiwyg": "string",
        "valueInt": 1,
        "valueFloat": 1.5,
        "valueDatetime": "2026-01-15T09:30:00Z",
        "valueModule": "string",
        "value": "string",
        "fileId": 42,
        "customFieldInputId": 42,
        "module": "activities",
        "table": "string",
        "entityId": 42,
        "customFieldInputName": "Sample customFieldInputName",
        "selected": true,
        "ipAddress": "string",
        "translatable": true,
        "translations": {
          "en": {
            "field1": "translation1",
            "field2": "translation2"
          },
          "it": {
            "field1": "translation1",
            "field2": "translation2"
          },
          "cs": {
            "field1": "translation1",
            "field2": "translation2"
          }
        }
      }
    ],
    "publicUrl": "https://acme.boost.space",
    "resize": [
      {
        "id": 42,
        "created": "2026-01-15T09:30:00Z",
        "path": "string"
      }
    ],
    "status": {
      "id": 42,
      "created": "2026-01-15T09:30:00Z",
      "created_user_id": 42,
      "name": "Sample name",
      "color": "#1f6feb",
      "icon": "string",
      "icon_prefix": "string",
      "weight": 1,
      "status_system_id": 42,
      "boostId": "string",
      "spaces": [
        1
      ],
      "statusSystem": {}
    },
    "statusSystem": {
      "id": 42,
      "color": "#1f6feb",
      "icon_prefix": "string",
      "icon": "string",
      "module": "string",
      "weight": 1,
      "name": "Sample name",
      "system_name": "Sample system_name",
      "activated": 1,
      "custom": true,
      "allow_move": "string",
      "boostId": "string"
    },
    "labels": [
      []
    ],
    "isFeaturedImage": true,
    "usage": [
      []
    ]
  }
]