We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ability to have collections of items of one resource type
POST /_stashes/realeses { name:"my stash", is_public:false, color:"e4f6c0" }
set one key
PUT /_stashes/realeses/1/name 'new name'
set multiple keys
PATCH /_stashes/realeses/1 '{ 'name':'another new name', is_public:true }'
PUT /_stashes/realeses/1/items '[1,2,3,4,5,6]'
DELETE /_stashes/realeses/1/items '[2,6]'
DELETE /_stashes/realeses/1/items
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ability to have collections of items of one resource type
proposed api
create stash
modify stash
set one key
set multiple keys
append to stash
remove from stash
remove all items from stash
The text was updated successfully, but these errors were encountered: