-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVonageAPIConfig__c.object
113 lines (113 loc) · 4.7 KB
/
VonageAPIConfig__c.object
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="UTF-8"?>
<CustomObject xmlns="http://soap.sforce.com/2006/04/metadata">
<customSettingsType>Hierarchy</customSettingsType>
<description>Vonage API Configuration for Vonage SMS notification and</description>
<enableFeeds>false</enableFeeds>
<fields>
<fullName>API_Key__c</fullName>
<description>Vonage API Key</description>
<externalId>false</externalId>
<inlineHelpText>you can find them here https://dashboard.nexmo.com/settings</inlineHelpText>
<label>API_Key</label>
<length>20</length>
<required>false</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
<fields>
<fullName>API_Secret__c</fullName>
<description>Vonage API Secret</description>
<externalId>false</externalId>
<inlineHelpText>you can find them here https://dashboard.nexmo.com/settings</inlineHelpText>
<label>API_Secret</label>
<length>20</length>
<required>false</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
<fields>
<fullName>MESSAGES_API_SANDBOX_URL__c</fullName>
<defaultValue>("https://messages-sandbox.nexmo.com/v1/messages")</defaultValue>
<description>Messages API Sandbox endptoint. This can be found in the dashboard https://dashboard.nexmo.com.
It is usually set to : https://messages-sandbox.nexmo.com/v1/messages</description>
<externalId>false</externalId>
<label>MESSAGES_API_SANDBOX_URL</label>
<length>100</length>
<required>false</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
<fields>
<fullName>MESSAGES_VONAGE_URL__c</fullName>
<defaultValue>("https://api.nexmo.com/v1/messages")</defaultValue>
<description>Messages API URL default is https://api.nexmo.com/v1/messages</description>
<externalId>false</externalId>
<label>MESSAGES_VONAGE_URL</label>
<length>100</length>
<required>false</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
<fields>
<fullName>SMS_LVN__c</fullName>
<description>SMS LVN</description>
<externalId>false</externalId>
<inlineHelpText>can be ordered in the dashboard : https://dashboard.nexmo.com/your-numbers</inlineHelpText>
<label>SMS_LVN</label>
<length>20</length>
<required>false</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
<fields>
<fullName>SMS_VONAGE_URL__c</fullName>
<defaultValue>("https://rest.nexmo.com/sms/json")</defaultValue>
<description>SMS API : default https://rest.nexmo.com/sms/json
Regional endpoints can also be used</description>
<externalId>false</externalId>
<label>SMS_VONAGE_URL</label>
<length>100</length>
<required>false</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
<fields>
<fullName>USE_MESSAGES_API_FOR_SMS__c</fullName>
<defaultValue>true</defaultValue>
<description>Use Messages API for SMS as opposed to SMS API. allows for simple 2 way interactions over SMS
select Message API under API Key configuration : https://dashboard.nexmo.com/settings</description>
<externalId>false</externalId>
<label>USE_MESSAGES_API_FOR_SMS</label>
<trackTrending>false</trackTrending>
<type>Checkbox</type>
</fields>
<fields>
<fullName>USE_SANDBOX_FOR_MESSAGES_API__c</fullName>
<defaultValue>false</defaultValue>
<description>Tick to use the Messages API Sandbox for testing WhatsApp</description>
<externalId>false</externalId>
<label>USE_SANDBOX_FOR_MESSAGES_API</label>
<trackTrending>false</trackTrending>
<type>Checkbox</type>
</fields>
<fields>
<fullName>WHATSAPP_LVN__c</fullName>
<description>WhatsApp LVN for Vonage API. can be found here : https://dashboard.nexmo.com/messages/social-channels
You can also use the sandbox WhatsApp number</description>
<externalId>false</externalId>
<label>WHATSAPP_LVN</label>
<length>20</length>
<required>false</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
<label>Vonage API Configuration</label>
<visibility>Public</visibility>
</CustomObject>