Skip to main content
PATCH
/
api
/
brands
/
{id}
Update brand
curl --request PATCH \
  --url http://localhost:8000/api/brands/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "website": "<string>",
  "description": "<string>",
  "industry": "<string>"
}
'

Authorizations

Authorization
string
header
required

JWT token from login. Use: Authorization: Bearer <token>

Path Parameters

id
string
required

Body

application/json
name
string
website
string
description
string
industry
string

Response

Updated