최근 검색
최근 검색 없음

Victor Kurushin
가입한 날짜: 2021년 10월 16일
·
마지막 활동: 2021년 10월 20일
팔로잉
0
팔로워
0
총 활동 수
3
투표 수
0
가입 플랜
1
활동 개요
배지
문서
게시물
커뮤니티 댓글
문서 댓글
활동 개요
님의 최근 활동 Victor Kurushin
Victor Kurushin님이 에 댓글을 입력함
Tipene Hughes Thank you for you answer!
But what if I don't want to update an already created ticket and want to create a new ticket with the same email address?
Besides, a new ticket is created with new ID, only the text of the ticket is duplicated.
댓글 보기 · 2021년 10월 12일에 게시됨 · Victor Kurushin
0
팔로워
0
투표 수
0
댓글
Victor Kurushin님이 에 게시물을 만듦
Hey! I have a problem.
I am using zendesk for support in my game.
When a user wants to contact support, he fills in the form fields and I send a POST request to /api/v2/requests.json.
The data in the request is pretty simple.
{
"request": {
"requester": {
"name": "{{userName}}",
"email": "{{userEmail}}"
},
"subject" : "Help me!",
"comment": {
"body": "{{userMessage}}"
}
}
}
where userName, userEmail and userMessage are the fields that the user fills in
So the problem is that when a user sends more than 1 message with the same email address, I get different tickets with a text (body) inside, similar to the first message.
Example:
User send
{
"request": {
"requester": {
"name": "John",
"email": "john@test.com"
},
"subject" : "Help me!",
"comment": {
"body": "Help me please!"
}
}
}
I receive a ticket with ID 10 and the text "Help me please!"
After that user send another request
{
"request": {
"requester": {
"name": "John",
"email": "john@test.com"
},
"subject" : "Help me!",
"comment": {
"body": "I change my mind"
}
}
}
I receive a ticket with ID 11 and the text "Help me please!"
And all the next tickets with the email address john@test.com will be new, with a new ID, but with the text “Help me please!”.
Am I doing something wrong?
2021년 10월 01일에 게시됨 · Victor Kurushin
0
팔로워
3
투표 수
3
댓글