SlackBot-Links


This is a simple REST API allowing consumers to search links shared on Slack.

To install this bot, follow installation instructions.

All Links

REQUEST

Parameters
limit number

The maximum number of results to return.

offset number

Return results from this offset.

search string

Search by term.

url string

Search by url.

sharedby string

Filter links shared by this user.

RESPONSE

Headers
Content-Type application/json
200 application/json
                        {
    "data" : [
        {
            "id": "bc8f2c4e-dbd0-4fa5-8890-7c9fc28b3e61",
            "url": "http://marcelpociot.com/blog/2016-10-19-write-your-own-slack-bot-using-laravel"
            "title": "Write a Slack bot using Laravel and PHP",
            "author": null,
            "published_at": "2016-10-19 00:00:00",
            "excerpt": "This guide will [...]",
            "image_url": "http://marcelpociot.com/user/pages/blog/2016-10-19-write-your-own-slack-bot-using-laravel/Screen%20Shot%202016-10-19%20at%2010.36.15.png",

            "shared_at": "2016-11-21 21:04:34",
            "shared_by": {
                "id": "U2W0LTL4Q",
                "name": "julien"
            },
            "shared_on": {
                "id": "C2W0LTM4G",
                "name": "general"
            },
            "links": {
                "self": "/links/bc8f2c4e-dbd0-4fa5-8890-7c9fc28b3e61"
            },
        }
    ],
    "meta": {
        "cursor": {
            "current": 0,
            "next": 50,
            "per_page": 50,
            "previous": null
        },
        "total": 120
    }
}

                      
                        
                      
A Link

REQUEST

RESPONSE

Headers
Content-Type application/json
200 application/json
                        {
    "data" : {
        "id": "bc8f2c4e-dbd0-4fa5-8890-7c9fc28b3e61",
        "url": "http://marcelpociot.com/blog/2016-10-19-write-your-own-slack-bot-using-laravel"
        "title": "Write a Slack bot using Laravel and PHP",
        "author": null,
        "published_at": "2016-10-19 00:00:00",
        "excerpt": "This guide will [...]",
        "image_url": "http://marcelpociot.com/user/pages/blog/2016-10-19-write-your-own-slack-bot-using-laravel/Screen%20Shot%202016-10-19%20at%2010.36.15.png",

        "shared_at": "2016-11-21 21:04:34",
        "shared_by": {
            "id": "U2W0LTL4Q",
            "name": "julien"
        },
        "shared_on": {
            "id": "C2W0LTM4G",
            "name": "general"
        },
        "links": {
            "self": "/links/bc8f2c4e-dbd0-4fa5-8890-7c9fc28b3e61"
        },
    }
}

                      
                        
                      

REQUEST

RESPONSE

Headers