Get File Paths

Retrieve the File Path structure for a domain in your account.

GET https://{region}.getafile.io/api/v1/teams/:team_id/filepath/:domain_id

This endpoint allows you to get the File Path structure for a domain.

Path Parameters

Name
Type
Description

domain_id

integer

ID of the Domain

team_id

integer

ID of the Team

[
    {
        "id": 70,
        "user_id": 1,
        "domain_id": 26,
        "parent_id": null,
        "name": "test",
        "slug": "test",
        "created_at": "2024-03-03T17:14:37.000+10:00",
        "updated_at": "2024-03-03T17:14:37.000+10:00",
        "meta": {
            "fullurl": "test",
            "label": "test (1)",
            "fullname": "test"
        }
    }
]

Last updated

Was this helpful?