Get Collections

Get all users collection ids and collection names

Get Collections List

GET https://api.linkish.io/get-collections-list

This endpoint allows you to get all the collections in a list format

Headers

NameTypeDescription

Authorization

string

[
    {
        "name": "<FOLDER_NAME>",
        id: "<FOLDER_ID>"
    },
    {
        "name": "<FOLDER_NAME>",
        id: "<FOLDER_ID>"
    }
]

Get Collections Nested

GET https://api.linkish.io/get-collections-nested

This endpoint allows you to get all the collections in a nested format

Headers

NameTypeDescription

Authorization

string

format - Bearer ACCESS_TOKEN

{
    "folder_name": "<FOLDER_NAME>",
    "id": "<FOLDER_ID>",
    "children": [
        {
            "folder_name": "<FOLDER_NAME>",
            "id": "<FOLDER_ID>",
            "children": [
                ...
            ]
        }
        ...
    ]
}
    

Last updated