API for marking chat as resolved

Is there an API using which we can mark chat as resolved? @Nisarg_Patel

curl --location -g --request POST ‘https://cloud.yellow.ai/tickets/resolve?bot={{botId}}’
–header ‘x-api-key: {{x-api-key}}’
–header ‘Content-Type: application/json’
–data-raw ‘{
“ticketId”: “100350”
}’

Pls pass in the relevant bot id, ticket id, and x-api-key parameters

Also, if the bot is of a different region than R0, you will have to add that in the above cURL like; https://r2.cloud.yellow.ai/tickets/resolve?bot={{botId}} ,
https://r5.cloud.yellow.ai/tickets/resolve?bot={{botId}} etc.,

Thank you @Sandeep_Rajaram