Update Categorized Transaction

Given the request_id of a categorization request, this endpoint updates transactions that were wrongly tagged with a new tag.

StageURL
Staginghttps://stgbackend.kliqr.services/api/tag/categorize/learn

Body (urlencoded)

PropertyDescription
request_idThis is the id of the initial request whose tag is to be changedrequired
tag_idId of the tag to be used for the chosen requestrequired
cu_idCustomer's user idrequired

Sample Request (POST)

POST

/api/tag/categorize/learn

Success Response (200 OK)

{
"success": true
}

Authentication Failure Response (404 Forbidden)

{
"success": false,
"error": "Invalid API key"
}

Validation Failure Response (400 Forbidden)

{
"success": false,
"error": "Please provide a valid request_id"
}
{
"success": false,
"error": "Please provide a valid tag_id"
}
{
"success": false,
"error": "Please provide a valid cu_id"
}
Run in Postman