post https://api.classifyit.co/biz/api/v2//items/
This API is used to push new items for the project
NOTE
Following two details will be shared with you for the integration
{project-name}
: This is what forms the API endpoint.- A set of mandatory keys that should be present inside the
data
object posted in the request.
Single Create
The following is a sample request payload. The response returned would contain the same data as sent.
{
"data": {
"Category": "Cars & Bikes",
"Description": "single owner less mileage driven nov 2009 no technical and mechanical work required 4 tyres and battery new driven by service class",
"Title": "Alto LXI nov 2009 excellent condition single owner",
"Brand": "Maruti Suzuki Alto",
"Phone": 8800576985,
"SubCategory": "Bikes"
},
"request_id": "example_1"
}
{
"data": {
"Category": "Cars & Bikes",
"Description": "single owner less mileage driven nov 2009 no technical and mechanical work required 4 tyres and battery new driven by service class",
"Title": "Alto LXI nov 2009 excellent condition single owner",
"Brand": "Maruti Suzuki Alto",
"Phone": 8800576985,
"SubCategory": "Bikes"
},
"request_id": "example_1"
}
Multiple Create
The following is a sample request payload. The response returned would contain the same data as sent.
[{
"data": {
"text": "first"
},
"request_id": "58216"
}, {
"data": {
"text": "second"
},
"request_id": "58215"
}]
[{
"data": {
"text": "first"
},
"request_id": "58216"
}, {
"data": {
"text": "second"
},
"request_id": "58215"
}]