Domina REST API
  1. Tikets
Domina REST API
  • Documentation
  • Auth
    • registration
      POST
    • login
      POST
    • logout
      POST
    • password-reset/initiate
      POST
    • password-reset/verify
      POST
    • password-reset/complete
      POST
  • User
    • Booking
      • index
    • LoyaltyCard
      • show
    • LoyaltyPoints
      • index
    • Tikets
      • index
        GET
      • show
        GET
      • create
        POST
      • update
        PATCH
    • show
      GET
    • update
      PATCH
  • Venue
    • index
      GET
    • show
      GET
    • facets
      GET
  • Page
    • show
      GET
  • Post
    • index
      GET
    • show
      GET
  • Property
    • index
      GET
    • show
      GET
  • Program
    • index
  • Location
    • index
  • Navigation
    • index
  • Awards
    • index
  • Request
    • create
  • Spa
    • index
    • show
  • Special
    • index
    • show
  • Schemas
    • Meta
      • MetaPagination
      • MetaFile
      • MetaImage
      • MetaImageData
    • Response
      • ResponseError
    • Page
    • Property
    • Program
    • Venue
    • Special
    • Spa
    • Post
    • Navigation
    • Location
    • Tag
    • Award
    • User
    • Booking
    • LoyaltyCard
    • LoyaltyLevel
    • LoyaltyPoint
    • Ticket
    • TicketComment
  1. Tikets

index

Developing
GET
/v1/user/tikets
Получение списка обращений авторизированного пользователя

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
or

Responses

🟢200Success
application/json
Body

🟠401Unauthorized
🟠429Too many requests
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/user/tikets' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
[
    {
        "id": "string",
        "profile_id": "string",
        "description": "string",
        "status": 0,
        "comments": [
            {
                "id": "string",
                "profile_id": "string",
                "message": "string",
                "date_create": "string"
            }
        ],
        "date_create": "string"
    }
]
Modified at 2025-10-22 12:18:26
Previous
index
Next
show
Built with