Skip to main content
POST
/
stores
Create Store
curl --request POST \
  --url https://api-dev.monyfix.tech/stores \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "short_desc": "<string>",
  "detail_desc": "<string>",
  "web_site": "<string>",
  "logo_url": "<string>",
  "address": "<string>",
  "email": "<string>",
  "phone_number": "<string>"
}
'
{
"name": "<string>",
"short_desc": "<string>",
"detail_desc": "<string>",
"web_site": "<string>",
"logo_url": "<string>",
"address": "<string>",
"email": "<string>",
"phone_number": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required
short_desc
string | null
detail_desc
string | null
web_site
string | null
logo_url
string | null
address
string | null
email
string | null
phone_number
string | null

Response

Successful Response

name
string
required
short_desc
string | null
detail_desc
string | null
web_site
string | null
logo_url
string | null
address
string | null
email
string | null
phone_number
string | null