Links List

POST https://api-sandbox.slimlinkdev.com/api/v1/links/list

Get links (list)

Request body

{
    "page": 1,
    "itemsPerPage": 20,
    "search": "string",
    "user": [
        "00000000-0000-0000-0000-000000000000"
    ],
    "createdAt": {
        "after": "2024-01-01",
        "before": "2024-12-31"
    },
    "order": {
        "createdAt": "desc"
    }
}

Responses

200 Successful operation
401 Unauthorized

Example response · 200

{
    "data": {
        "items": [
            {
                "id": "06a447a7-5734-48b0-9dab-021576f0e0d1",
                "path": "zgdssgd",
                "shortUrl": "https://short.link/zgdssgd",
                "longUrl": "https://example.com/",
                "title": "example",
                "domain": "06a447a7-5734-48b0-9dab-021576f0e0d1",
                "tags": [],
                "totalNumberOfClick": 0,
                "createdAt": "2024-01-01T00:00:00Z",
                "updatedAt": "2024-01-01T00:00:00Z",
                "expiredAt": "2024-01-01T00:00:00Z"
            }
        ],
        "total": 0
    },
    "error_code": 0,
    "message": "Request successful"
}