最近搜索
没有最近搜索

Olve Auråker
已加入2021年5月28日
·
最后活动2021年11月10日
关注
0
关注者
0
活动总数
6
投票
1
订阅
2
活动概览
标记
文章
帖子
社区评论
文章评论
活动概览
的最新活动 Olve Auråker
Olve Auråker 进行了评论,
The only place I have seen multiselect referenced is here: Ticket Fields | Zendesk Developer Docs
BUT you seem to be completely right, it does work using custom_fields, I was just not able to figure out how to get multiple values parsed correctly using PowerShell.
I was trying to construct the array as a string and input that, instead of inputting the array object directly. Well, actually I had tried that earlier, but forgot to match the values to the field tag values instead of the display value which had a capital letter.
So adding a ".ToLower()" at the end of the array variable was all it took.
Thanks for getting me back on track!
查看评论 · 已于 2021年11月10日 发布 · Olve Auråker
0
关注者
0
投票
0
评论
Olve Auråker 创建了一个帖子,
Hi,
I'm trying to create a ticket via /api/v2/requests, using a specific form which has a multi-select dropdown field.
So far I've not been able to figure out how I can insert values into this field.
I've tried with (following the docs):
"custom_field_options": [
{"name": "Displayname of field", "value": "tag value"},
{"name": "Displayname of field", "value": "tag value2"}
]
"ticket_field": {
"custom_field_options": [
{"name": "Displayname of field", "value": "tag value"},
{"name": "Displayname of field", "value": "tag value2"}
]
}
Any ideas?
已于 2021年11月09日 编辑 · Olve Auråker
0
关注者
3
投票
3
评论
Olve Auråker 进行了评论,
@..., were you able to create a ticket through the request API using an OAuth token on behalf of a user using their email address?
Edit. Never mind, I managed it about 30 seconds after posting :)
{"request": {"subject": "Test","comment": { "body": "Some question" },"requester": {"email": "customer@example.com"}}}
查看评论 · 已于 2021年3月22日 发布 · Olve Auråker
0
关注者
0
投票
0
评论