Support-Category

Get Ticket Categories

get
/support-ticket/ticket-category

This API retrieves a list of support ticket categories based on the query parameters.

Query parameters
limitnumberOptional

Limit the number of results.

Example: 10
offsetnumberOptional

The offset from where to start the results.

Example: 0
keywordstringOptional

Search keyword for filtering categories.

Example: shipping
parentCategoryIdstringOptional

Filter by parent category ID.

Example: 1
statusstringOptional

Filter by category status.

Example: 1
Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Responses
get
/support-ticket/ticket-category

Create Ticket Category

post
/support-ticket/ticket-category

This API creates a new support ticket category.

Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Body
categoryNamestringOptionalExample: Shipping Issues
parentCategoryIdintegerOptionalExample: 1
isActivebooleanOptionalExample: true
isDeletebooleanOptionalExample: false
Responses
chevron-right
201

Ticket category created successfully

application/json
post
/support-ticket/ticket-category

Get Ticket Category by ID

get
/support-ticket/ticket-category/{id}

This API retrieves a specific support ticket category based on the provided category ID.

Path parameters
idintegerRequired

The unique ID of the ticket category.

Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Responses
get
/support-ticket/ticket-category/{id}

Update Ticket Category

put
/support-ticket/ticket-category/{id}

This API allows users to update a specific support ticket category based on the provided category ID.

Path parameters
idintegerRequired

The unique ID of the ticket category to be updated.

Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Body
categoryNamestringOptionalExample: Updated Category Name
statusnumberOptionalExample: 1
parentCategoryIdintegerOptionalExample: 1
Responses
put
/support-ticket/ticket-category/{id}

Delete Ticket Category

delete
/support-ticket/ticket-category/{id}

This API allows users to delete a specific support ticket category based on the provided category ID.

Path parameters
idintegerRequired

The unique ID of the ticket category to be deleted.

Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Responses
delete
/support-ticket/ticket-category/{id}

Last updated