Created
April 28, 2020 13:05
-
-
Save togramago/4c340951b29716baf04db7b9921ba0d3 to your computer and use it in GitHub Desktop.
Gallery Backend Schema
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*url*: https://polar-bastion-91741.herokuapp.com/images | |
`GET /images?user_id={user_id}` | |
returns all uploaded images for the user | |
response: `[{"url": String, "created_at": timestamp}]` | |
`$ curl 'https://polar-bastion-91741.herokuapp.com/images?user_id=100'` | |
`POST /images/{user_id}` | |
uploads the image for the user id | |
response: `{"url": String, "created_at": timestamp}` | |
`$ curl -H "Content-Type: multipart/form-data" -F '[email protected]' https://polar-bastion-91741.herokuapp.com/images/100` | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment