-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfieldNames.py
More file actions
89 lines (88 loc) · 2.95 KB
/
fieldNames.py
File metadata and controls
89 lines (88 loc) · 2.95 KB
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
# this is all the standard Marketo REST API field names (plus id)
# see https://developers.marketo.com/rest-api/lead-database/fields/list-of-standard-fields/
# run the createFieldNames.py file to output all of the Marketo REST API field
# names in your instance
address = 'Address'
annualRevenue = 'annualRevenue'
anonymousIP = 'anonymousIP'
billingCity = 'billingCity'
billingCountry = 'billingCountry'
billingPostalCode = 'billingPostalCode'
billingState = 'billingState'
billingStreet = 'billingStreet'
city = 'city'
company = 'company'
country = 'country'
createdAt = 'createdAt'
dateOfBirth = 'dateOfBirth'
department = 'department'
doNotCall = 'doNotCall'
doNotCallReason = 'doNotCallReason'
email = 'email'
emailInvalid = 'emailInvalid'
emailInvalidCause = 'emailInvalidCause'
facebookDisplayName = 'facebookDisplayName'
facebookId = 'facebookId'
facebookPhotoURL = 'facebookPhotoURL'
facebookProfileURL = 'facebookProfileURL'
facebookReach = 'facebookReach'
facebookReferredEnrollments = 'facebookReferredEnrollments'
facebookReferredVisits = 'facebookReferredVisits'
fax = 'fax'
firstName = 'firstName'
gender = 'gender'
id = 'id'
industry = 'industry'
inferredCity = 'inferredCity'
inferredCompany = 'inferredCompany'
inferredCountry = 'inferredCountry'
inferredMetropolitanArea = 'inferredMetropolitanArea'
inferredPhoneAreaCode = 'inferredPhoneAreaCode'
inferredPostalCode = 'inferredPostalCode'
inferredStateRegion = 'inferredStateRegion'
isAnonymous = 'isAnonymous'
jigsawContactId = 'jigsawContactId'
jigsawContactStatus = 'jigsawContactStatus'
lastName = 'lastName'
lastReferredEnrollment = 'lastReferredEnrollment'
lastReferredVisit = 'lastReferredVisit'
leadRole = 'leadRole'
leadScore = 'leadScore'
leadSource = 'leadSource'
leadStatus = 'leadStatus'
linkedInDisplayName = 'linkedInDisplayName'
linkedInId = 'linkedInId'
linkedInPhotoURL = 'linkedInPhotoURL'
linkedInProfileURL = 'linkedInProfileURL'
linkedInReach = 'linkedInReach'
linkedInReferredEnrollments = 'linkedInReferredEnrollments'
linkedInReferredVisits = 'linkedInReferredVisits'
mainPhone = 'mainPhone'
middleName = 'middleName'
mobilePhone = 'mobilePhone'
numberOfEmployees = 'numberOfEmployees'
phone = 'phone'
postalCode = 'postalCode'
priority = 'priority'
rating = 'rating'
relativeScore = 'relativeScore'
salutation = 'salutation'
sicCode = 'sicCode'
site = 'site'
state = 'state'
syndicationId = 'syndicationId'
title = 'title'
totalReferredEnrollments = 'totalReferredEnrollments'
totalReferredVisits = 'totalReferredVisits'
twitterDisplayName = 'twitterDisplayName'
twitterId = 'twitterId'
twitterPhotoURL = 'twitterPhotoURL'
twitterProfileURL = 'twitterProfileURL'
twitterReach = 'twitterReach'
twitterReferredEnrollments = 'twitterReferredEnrollments'
twitterReferredVisits = 'twitterReferredVisits'
unsubscribed = 'unsubscribed'
unsubscribedReason = 'unsubscribedReason'
updatedAt = 'updatedAt'
urgency = 'urgency'
website = 'website'