This implementation of BYOB is designed for use in photo applications, where enthusiasts can provide EXIF details about their photos, and connect photos to locations and cameras.
This is a REST API that uses JWT for endpoint authentication. All responses are returned in a standard JSON format, documented below.
Success 200/201 Responses:
{
status: 'success',
data: <returned data (array format)>
}
Failure 404 Responses:
{
status: 'error',
data: {
error: <error message (string format)>,
}
}
Failure 500 Responses:
{
status: 'error',
data: <error returned from server (object format)>,
}