forked from clientIO/appmixer-connectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent.json
68 lines (68 loc) · 3.06 KB
/
component.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "appmixer.freshdesk.tickets.GetTicket",
"author": "Camilo Manrique <[email protected]>",
"description": "Get a ticket in Freshdesk.",
"private": false,
"auth": {
"service": "appmixer:freshdesk"
},
"quota": {
"manager": "appmixer:freshdesk",
"resources": "requests",
"scope": {
"userId": "{{userId}}"
}
},
"inPorts": [
{
"name": "in",
"schema": {
"type": "object",
"properties": {
"ticketId": { "type": "string" },
"embed": { "type": "array" }
},
"required": [
"ticketId"
]
},
"inspector": {
"inputs": {
"ticketId": {
"type": "text",
"label": "Ticket ID",
"index": 1
},
"embed": {
"type": "multiselect",
"label": "Embed fields",
"index": 2,
"tooltip": "Additional fields to include on retrieved ticket. Note that each additional field will spend additional API credits",
"options": [
{ "label": "conversations", "value": "conversations" },
{ "label": "requester", "value": "requester" },
{ "label": "company", "value": "company" },
{ "label": "stats", "value": "stats" }
]
}
}
}
}
],
"outPorts": [
{
"name": "ticket",
"source": {
"url": "/component/appmixer/freshdesk/tickets/GenerateTicketsOutput?outPort=out",
"data": {
"properties": {
"operation": 2,
"embedFields": "inputs/in/embed"
},
"transform": "./GenerateTicketsOutput#getTicketComponentOutput"
}
}
}
],
"icon": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NCIgaGVpZ2h0PSI2NCI+PHBhdGggZD0iTTMxLjkgMGgyNC4wMzZBOCA4IDAgMCAxIDY0IDguMDczVjMyLjFDNjQgNDkuNzIyIDQ5LjcyMiA2NCAzMi4xIDY0aC0uMTgyQTMxLjg5IDMxLjg5IDAgMCAxIDAgMzIuMTA5QzAgMTQuNDM3IDE0LjI1NC4xODIgMzEuOSAweiIgZmlsbD0iIzI1YzE2ZiIvPjxwYXRoIGQ9Ik0zMS45IDE0LjI1NWMtOC4wOTMgMC0xNC42NTQgNi41Ni0xNC42NTQgMTQuNjU0djkuOTY0Yy4wNTggMi42NjcgMi4yMDYgNC44MTUgNC44NzMgNC44NzNoNC4xNDVWMzIuM2gtNS42di0zLjJjLjM0LTYuMDI2IDUuMzI3LTEwLjc0IDExLjM2NC0xMC43NFM0My4wNCAyMy4wNjUgNDMuMzggMjkuMXYzLjJIMzcuN3YxMS40NTRoMy43NDV2LjE4MmMtLjA0IDIuNDc0LTIuMDM1IDQuNDctNC41IDQuNWgtNC40NzNjLS4zNjQgMC0uNzY0LjE4Mi0uNzY0LjU0NWEuOC44IDAgMCAwIC43NjQuNzY0aDQuNWMzLjIwNS0uMDIgNS43OTgtMi42MTMgNS44MTgtNS44MTh2LS4zNjRhNC44IDQuOCAwIDAgMCAzLjc0NS00LjcyN1YyOS4xYy4xODItOC4yNTQtNi4zNjQtMTQuODM2LTE0LjY1NC0xNC44MzZ6IiBmaWxsPSIjZmZmIi8+PC9zdmc+"
}