POST https://frency-api-ofjpwfxlpa-et.a.run.app/users
- Content-Type: application/json
{
"name" : "Franchisee 2",
"email" : "franchisee2@frency.io",
"password" : "franchisee2",
"role" : "Franchisee" // [Franchisee, Franchisor]
}POST https://frency-api-ofjpwfxlpa-et.a.run.app/users/login
- Content-Type: application/json
{
"email" : "franchisor@frency.io",
"password" : "franchisor"
}GET https://frency-api-ofjpwfxlpa-et.a.run.app/users
- Authorization: 4d13ae85-5656-4d69-8747-59fe57f481fd
GET https://frency-api-ofjpwfxlpa-et.a.run.app/users/current
- Authorization: 4d13ae85-5656-4d69-8747-59fe57f481fd
PUT https://frency-api-ofjpwfxlpa-et.a.run.app/users/current
- Authorization: 4d13ae85-5656-4d69-8747-59fe57f481fd
{
"name" : "string",
"email" : "string",
"password" : "string",
"role" : "string"
}DELETE https://frency-api-ofjpwfxlpa-et.a.run.app/users/logout
- Authorization: 4d13ae85-5656-4d69-8747-59fe57f481fd
GET https://frency-api-ofjpwfxlpa-et.a.run.app/franchises
- Authorization: 4d13ae85-5656-4d69-8747-59fe57f481fd
GET https://frency-api-ofjpwfxlpa-et.a.run.app/franchises/(:franchise_id)
- Authorization: 4d13ae85-5656-4d69-8747-59fe57f481fd
POST https://frency-api-ofjpwfxlpa-et.a.run.app/franchises
- Content-Type: application/json
- Authorization: 4d13ae85-5656-4d69-8747-59fe57f481fd
{
"franchise_name" : "string",
"address" : "string",
"description" : "string",
"category" : "string",
"whatsapp_number" : "string",
"franchiseType": [1, 2, 3] // franchise_type_id
}POST https://frency-api-ofjpwfxlpa-et.a.run.app/franchises/(:franchise_id)/upload
- Content-Type: multipart/form-data
- Authorization: 4d13ae85-5656-4d69-8747-59fe57f481fd
{
"gallery" : ["img1.jpg", "img2.jpg", "img2.jpg"] // multiple_upload
}GET https://frency-api-ofjpwfxlpa-et.a.run.app/my_franchises
- Authorization: 4d13ae85-5656-4d69-8747-59fe57f481fd
PUT https://frency-api-ofjpwfxlpa-et.a.run.app/franchises/(:franchise_id)
- Content-Type: application/json
- Authorization: 4d13ae85-5656-4d69-8747-59fe57f481fd
{
"franchise_name" : "string 1",
"address" : "string 1",
"description" : "string 1",
"category" : "string 1",
"whatsapp_number" : "string 1",
"franchiseType": [1, 3]
}DELETE https://frency-api-ofjpwfxlpa-et.a.run.app/franchises/(:franchise_id)
- Authorization: 4d13ae85-5656-4d69-8747-59fe57f481fd