Skip to main content
POST
/
api
/
public
/
tendlc
/
brands
Create a brand draft
curl --request POST \
  --url https://astrasend-mocha.vercel.app/api/public/tendlc/brands \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "legal_name": "<string>",
  "entity_type": "<string>",
  "brand_name": "<string>",
  "tax_id": "<string>",
  "vertical": "<string>",
  "website": "<string>",
  "country_code": "<string>",
  "street": "<string>",
  "city": "<string>",
  "state": "<string>",
  "zip_code": "<string>",
  "support_email": "<string>",
  "support_phone": "<string>",
  "stock_symbol": "<string>",
  "stock_exchange": "<string>"
}
'
{
  "ok": true
}

Authorizations

Authorization
string
header
required

Your API key (as_live_…), created under Settings → API keys.

Body

application/json
entity_type
string
required
brand_name
string
tax_id
string
vertical
string
website
string
country_code
string
street
string
city
string
state
string
zip_code
string
support_email
string
support_phone
string
stock_symbol
string
stock_exchange
string

Response

Success

ok
boolean
Example:

true