POST
/
products
Create Product
curl --request POST \
  --url https://api.kakiyo.com/v1/products \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Sales Engagement Pro",
  "description": "Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.\n\nKey benefits include:\n- 3x increase in response rates compared to traditional outreach\n- 70% reduction in time spent on manual follow-ups\n- Seamless integration with existing CRM systems\n- Real-time insights on prospect engagement\n- Smart prioritization of high-potential leads\n\nOur customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation."
}'
{
  "message": "Product created successfully"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Product to create

The body is of type object.

Response

201
application/json

Product created successfully

The response is of type object.