ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
### Event CSV Import Template ###
2
3
# Fill in this file with details on the events you want to import.
4
5
# identifier: string, optional column. an Unique identifier for event which is used to address the event, prevent duplicates
6
# email*: string, required column. Email of the member you are logging points for
7
# event_code*: string, required column. The API code for the custom event created in the AdvocateHub
8
# points*: number, required column. Points that are to be awarded to the member. If a stage code is provided, members will earn the number of points configured into the challenge.
9
# stage_code: string, optional column. The "stage code" for an api integrated stage in a challenge. The member must be able to perform the stage for the challenge to progress. The stage code is optional as events and points can be recognized without having a corresponding stage within a challenge.
10
# advocacy_type: string, optional column. The code of the advocacy type you want to create. A complete list can be found at https://support.influitive.com/article/619-acts-of-advocacy-types-and-reporting-category#types
11
# content: string, optional column. The details of the what the contact did that will be displayed in the Influitive app and anywhere Acts of Advocacy are connected to.
12
# source_title: string, optional column. The name of where this advocacy happened used as they hyperlink text for the source_url
13
# source_url: string, optional column. Link to the source of where this advocacy happened (Must include "https://...")
14
# occurred_at: date, optional column. The Date the advocacy happened, the format is year, month, day ie. 2022-10-18. If not provided, the date will be today's date
15
16
# Note:** You cannot send **advocacy** along with **stage** parameter
17
# Any fields with a '#' character in front will be ignored in the import. If any of your records are invalid, we'll send you an e-mail after the import is complete with this file indicating which fields were in error.
18
19
20
21
identifieremailevent_codepointsstage_codeadvocacy_typecontentsource_titlesource_urloccurred_at
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