Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

/search/feed/?????

Retrieves a specific channel or all channels available to the user if channel_id is not provided. (TODO: UPDATE)

Possible Methods (TODO: UPDATE)

GET POST PUT DELETE

Arguments 
(TODO: UPDATE)

channel_id(optional)
Channel id to try and return, if not provided returns all channels for current user

Json Object
(TODO: UPDATE)
{
        "channel_id" : "531733e8b8e08e9d2197b0b0",
        "events" : [],
        "locations" : [],
        "name" : "abc123"
}

 

Example 
(TODO: UPDATE)
curl -b cookies.txt -X GET "http://localhost:8185/channel" > response.txt
curl -b cookies.txt -X GET "http://localhost:8185/channel/531733e8b8e08e9d2197b0b0" > response.txt
curl -b cookies.txt -X POST -d '{"name":"abc123"}'  "http://localhost:8185/channel" > response.txt
curl -b cookies.txt -X PUT-d '{"name":"renamed my channel"}'  "http://localhost:8185/channel/531733e8b8e08e9d2197b0b0" > response.txt
curl -b cookies.txt -X PUT-d '{"channel_id":"531733e8b8e08e9d2197b0b0", "name":"renamed my channel"}'  "http://localhost:8185/channel" > response.txt
curl -b cookies.txt -X DELETE -d '{"channel":"531733e8b8e08e9d2197b0b0"}'  "http://localhost:8185/channel" > response.txt
curl -b cookies.txt -X DELETE "http://localhost:8185/channel/531733e8b8e08e9d2197b0b0" > response.txt

 

Example Response
(TODO: UPDATE)
 
  • No labels