My Project
  1. Tickets
My Project
  • Default module
    • Schemas
      • Sample Schemas
        • Pet
        • Category
        • Tag
  • Tirelire
    • Gorups
      • Get groups
      • Create group
      • update group
      • leave group
      • delete group
    • Tickets
      • create ticket
        POST
      • get ticket by group
        GET
      • update status
        PUT
    • chat
      • send message to chat
      • New Request
    • Auth
      • login
      • Register
  1. Tickets

update status

PUT
/api/tickets/68ee68652d57524cf815aa04

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/api/tickets/68ee68652d57524cf815aa04' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "status":"not resolved"
}'
Response Response Example
{}
Modified at 2025-10-17 14:52:15
Previous
get ticket by group
Next
send message to chat
Built with