-
Notifications
You must be signed in to change notification settings - Fork 2
Street Art Orlando API Documentation
Axel Rivera edited this page Sep 5, 2018
·
5 revisions
Staging: https://sao-api-staging.herokuapp.com/api
Production: https://sao-api.herokuapp.com/api
Accept = application/json
Content-Type = application/json
Authorization = [AUTH_TOKEN] // Used in Authenticated Endpoints
POST /users/register
{
"name": "Test User (Optional)",
"email": "[email protected]",
"password": "password"
}
Response Code: 201
{ "success": true }
POST /authenticate
{
"email": "[email protected]",
"password: "password"
}
Response Code: 200
{ "auth_token": "auth_token_string" }
TODO
TODO
TODO
TODO
GET /submissions
-
page
- Page Number (i.e. 1,2,3); Empty Responds First Page
Response Code: 200
{
"submissions": [
{
"id": 1,
"status": "approved",
"title": "Title String (Optional)",
"description": "Description Text (Optional)",
"photo_url": "https://street-art-orlando-images-staging.s3.amazonaws.com/uploads/submission/photo/1/display_photo.jpeg",
"thumb_url": "https://street-art-orlando-images-staging.s3.amazonaws.com/uploads/submission/photo/1/thumb_photo.jpeg",
"tiny_url": "https://street-art-orlando-images-staging.s3.amazonaws.com/uploads/submission/photo/1/tiny_photo.jpeg",
"artist": "Artist Name (Optional)",
"location_note": "Location Note (Optional)",
"created_at": "2018-09-05T16:07:37.760Z",
"favorite": false,
"latitude": 18.34008,
"longitude": -66.099282
}
],
"meta": {
"current_page": 1,
"next_page": null,
"total": 1,
"total_pages": 1
}
}
Authenticated: true
POST /submissions
{
"photo": "IMAGE IN BASE64 STRING FORMAT",
"title": "Title String",
"artist": "Artist Name",
"location_note": "Location Note (i.e. Next to Drunken Monkey Coffee Shop)"
"latitude": 12.345,
"longitude": 12.345
}
Status Code: 202
{ "success": true }
TODO
TODO
TODO
TODO