Skip to main content
POST
/
tickets
/
{ticketId}
/
reply-member
Reply as author
curl --request POST \
  --url https://api.series.hr/tickets/{ticketId}/reply-member \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --data '
{
  "content": "<string>",
  "authorUserId": 123
}
'
Requires Premium or Enterprise subscription

Overview

Send a reply to a ticket as the ticket author (member/player). Important Notes:
  • Only the original ticket author can use this endpoint
  • Cannot reply to closed or resolved tickets
  • The reply is added to the ticket’s content with type “author_message”

Path Parameters

ticketId
string
required
Ticket ID

Request Body

content
string
required
Reply message content
authorUserId
integer
required
UserId of the ticket author

Response

success
boolean
Whether the request was successful
data
object

Example

curl -X POST "https://api.series.hr/tickets/TICKET-1234567890-ABCD/reply-member" \
  -H "apikey: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "content": "Thank you, I'll join now!",
    "authorUserId": 123456789
  }'

Response Example

{
  "success": true,
  "data": {
    "message": "Reply sent successfully"
  }
}

Error Responses

{
  "success": false,
  "error": {
    "code": 403,
    "message": "You can only reply to your own tickets"
  }
}
{
  "success": false,
  "error": {
    "code": 403,
    "message": "Cannot reply to closed or resolved tickets"
  }
}
{
  "success": false,
  "error": {
    "code": 403,
    "message": "Tickets module requires a Premium or Enterprise subscription"
  }
}
{
  "success": false,
  "error": {
    "code": 404,
    "message": "Ticket not found"
  }
}

Rate Limit

25 requests per second per API key

Authorizations

apikey
string
header
required

Pass your API key in the apikey header. Alternatively, the x-api-key header is also accepted.

Path Parameters

ticketId
string
required

Ticket ID

Body

application/json
content
string
required

Reply message content

authorUserId
integer
required

UserId of the ticket author

Response

Reply sent successfully