Products
Create product
Creates a new product
POST
/
products
Create Product
Copy
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."
}'
Copy
{
"message": "Product created successfully"
}
Authorizations
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
.
Create Product
Copy
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."
}'
Copy
{
"message": "Product created successfully"
}
Assistant
Responses are generated using AI and may contain mistakes.