Contact API
Use Contact APIs to create, update, retrieve, and delete contact records in Twozo CRM.
Endpoint Guides
API Endpoints
| Operation | Method | Endpoint |
|---|---|---|
| Create Contact | POST | https://crm.twozo.io/rest/api/v1/contact |
| Get Contact | GET | https://crm.twozo.io/rest/api/v1/contact/{id} |
| Update Contact | PUT/PATCH | https://crm.twozo.io/rest/api/v1/contact/{id} |
| Delete Contact | DELETE | https://crm.twozo.io/rest/api/v1/contact/{id} |
| List Contacts | GET | https://crm.twozo.io/rest/api/v1/contact/view/list?filter=firstName:like(w)&sort=firstName:asc |
| Dropdown Values | GET | https://crm.twozo.io/rest/api/v1/field/dropdown?name={INTERNAL_NAME} |
| Field List | GET | https://crm.twozo.io/rest/api/v1/field/list?source=contact |
List API (GET)
GET: https://crm.twozo.io/rest/api/v1/contact/view/list?filter={intername}:like(w)&sort={intername}:asc
Ex:
GET: https://crm.twozo.io/rest/api/v1/contact/view/list?filter=firstName:like(w)&sort=firstName:asc
Pagination Parameters
| Parameter | Description | Example |
|---|---|---|
| page | Page number | page=1 |
| pageSize | Number of records per page | size=25 |
Filter Parameters
Format:
filter=<field>:<operator>(<value>)
Supported Filter Operators
| Operator | Meaning | Example Request | Equivalent Condition |
|---|---|---|---|
eq | Equals | filter=status:eq(active) | status = 'active' |
neq | Not Equals | filter=status:neq(archived) | status != 'archived' |
in | In List | filter=status:in(active,pending) | status IN ('active','pending') |
nin | Not In List | filter=status:nin(deleted,archived) | status NOT IN ('deleted','archived') |
lt | Less Than | filter=amount:lt(500) | amount < 500 |
lte | Less Than or Equal | filter=amount:lte(1000) | amount <= 1000 |
gt | Greater Than | filter=amount:gt(100) | amount > 100 |
gte | Greater Than or Equal | filter=amount:gte(250) | amount >= 250 |
between | Range | filter=createdAt:between(1771936945416,1771936947532) | createdAt BETWEEN value1 AND value2 |
like | Contains Text | filter=name:like(john) | name LIKE '%john%' |
Filter Examples
&filter=status:eq(active)
&filter=status:neq(archived)
&filter=status:in(active,pending)
&filter=status:nin(deleted,archived)
&filter=amount:lt(500)
&filter=amount:lte(1000)
&filter=amount:gt(100)
&filter=amount:gte(250)
&filter=createdAt:between(1771936945416,1771936947532)
&filter=name:like(john)
&filter=deletedAt:isnull(true)
&filter=deletedAt:notnull(true)
&filter=metadata.notes:exists(true)
Sort Parameters
Format:
sort=<field>:<direction>
Multiple sort fields can be separated by commas.
Supported Sort Directions
| Direction | Meaning |
|---|---|
asc | Ascending Order |
desc | Descending Order |
Sort Examples
| Request | Description |
|---|---|
sort=createdAt:desc | Sort by created date descending |
sort=name:asc | Sort by name ascending |
sort=createdAt:desc,name:asc | Sort by created date descending, then name ascending |
Example
&sort=createdAt:desc,name:asc
The same format will be followed for remaining modules.
FieldList
GET: https://crm.twozo.io/rest/api/v1/field/list?source=contact
{
"code": 0,
"data": {
"source": {
"is_enabled": true,
"name": "Contact",
"id": 2
},
"fields": [
[
{
"internal_name": "first_name",
"is_active": true,
"source_id": 2,
"id": 25,
"type": "SINGLE_STRING",
"config": {
"min_length": 1,
"max_length": 255
},
"field_name": "First Name"
}
],
[
{
"internal_name": "last_name",
"is_active": true,
"source_id": 2,
"id": 26,
"type": "SINGLE_STRING",
"config": {
"min_length": 1,
"max_length": 255
},
"field_name": "Last Name"
}
],
[
{
"internal_name": "emails",
"is_active": true,
"sub_fields": [
{
"name": "EMAIL_TYPE",
"input_type": "DROPDOWN",
"id": 32,
"type": "EMAILS",
"display_name": "Email Type",
"config": {
"dropdown": "EMAIL_TYPE"
}
},
{
"name": "EMAIL_VALUE",
"input_type": "SINGLE_STRING",
"id": 33,
"type": "EMAILS",
"display_name": "Email"
}
],
"source_id": 2,
"id": 27,
"type": "EMAILS",
"config": {
"max_limit": 10
},
"field_name": "Emails"
}
],
[
{
"internal_name": "phones",
"is_active": true,
"sub_fields": [
{
"name": "PHONE_TYPE",
"input_type": "DROPDOWN",
"id": 29,
"type": "PHONES",
"display_name": "Phone Type",
"config": {
"dropdown": "PHONE_TYPE"
}
},
{
"name": "COUNTRY_CODE",
"input_type": "DROPDOWN",
"id": 30,
"type": "PHONES",
"display_name": "Country Code",
"config": {
"dropdown": "countryList"
}
},
{
"name": "PHONE_NUMBER",
"input_type": "SINGLE_NUMBER",
"id": 31,
"type": "PHONES",
"display_name": "Phone Number"
}
],
"source_id": 2,
"id": 28,
"type": "PHONES",
"config": {
"max_limit": 10
},
"field_name": "Phones"
}
],
[
{
"internal_name": "company",
"is_active": true,
"related_field": {
"id": 71,
"source": "Company"
},
"source_id": 2,
"id": 29,
"type": "COMPANY_ONBOARD",
"config": {},
"field_name": "Company"
}
],
[
{
"internal_name": "designation",
"is_active": true,
"source_id": 2,
"id": 30,
"type": "SINGLE_STRING",
"config": {
"min_length": 1,
"max_length": 255
},
"field_name": "Designation"
}
],
[
{
"internal_name": "sales_owner",
"is_active": true,
"source_id": 2,
"id": 31,
"type": "OWNER",
"config": {},
"field_name": "Sales Owner"
}
],
[
{
"internal_name": "lifecycle_stage",
"is_active": true,
"source_id": 2,
"id": 32,
"type": "DROPDOWN",
"config": {},
"field_name": "Lifecycle Stage"
},
{
"internal_name": "lifecycle_status",
"is_active": true,
"source_id": 2,
"id": 33,
"type": "DROPDOWN",
"config": {},
"field_name": "Lifecycle Status"
},
{
"internal_name": "lost_reason",
"is_active": true,
"options": [
{
"name": "Junk Lead",
"id": 751
},
{
"name": "Not able to reach",
"id": 752
},
{
"name": "Not interested",
"id": 753
},
{
"name": "Budget",
"id": 754
},
{
"name": "Lost of competitor",
"id": 755
}
],
"source_id": 2,
"id": 34,
"type": "DROPDOWN",
"config": {},
"field_name": "Lost Reason"
}
],
[
{
"internal_name": "source",
"is_active": true,
"options": [
{
"name": "Web",
"id": 737
},
{
"name": "Organic Search",
"id": 738
},
{
"name": "Email",
"id": 739
},
{
"name": "Phone",
"id": 740
},
{
"name": "Chat",
"id": 741
},
{
"name": "Web Form",
"id": 742
},
{
"name": "Referral",
"id": 743
},
{
"name": "Direct",
"id": 744
},
{
"name": "Paid Search",
"id": 745
},
{
"name": "Blogs",
"id": 746
},
{
"name": "Social Media",
"id": 747
},
{
"name": "Display Ads",
"id": 748
},
{
"name": "Events",
"id": 749
},
{
"name": "Webinar",
"id": 750
}
],
"source_id": 2,
"id": 35,
"type": "DROPDOWN",
"config": {},
"field_name": "Source"
}
],
[
{
"internal_name": "territory",
"is_active": true,
"source_id": 2,
"id": 36,
"type": "TERRITORY",
"config": {},
"field_name": "Territory"
}
],
[
{
"internal_name": "tags",
"is_active": true,
"source_id": 2,
"id": 37,
"type": "TAGS",
"config": {
"max_limit": 10,
"max_length": 255
},
"field_name": "Tags"
}
],
[
{
"internal_name": "date_of_birth",
"is_active": true,
"source_id": 2,
"id": 38,
"type": "DATE",
"config": {
"max_date": 362572159
},
"field_name": "Date Of Birth"
}
],
[
{
"internal_name": "department",
"is_active": true,
"source_id": 2,
"id": 39,
"type": "SINGLE_STRING",
"config": {
"min_length": 1,
"max_length": 255
},
"field_name": "Department"
}
],
[
{
"internal_name": "address",
"is_active": true,
"sub_fields": [
{
"name": "CITY",
"input_type": "SINGLE_STRING",
"id": 14,
"type": "ADDRESS",
"display_name": "City",
"config": {
"maxLength": 125,
"maxLengthMessage": "i18n.fields.violation.message.max.length"
}
},
{
"name": "STATE",
"input_type": "SINGLE_STRING",
"id": 15,
"type": "ADDRESS",
"display_name": "State",
"config": {
"maxLength": 125,
"maxLengthMessage": "i18n.fields.violation.message.max.length"
}
},
{
"name": "COUNTRY",
"input_type": "DROPDOWN",
"id": 16,
"type": "ADDRESS",
"display_name": "Country",
"config": {
"dropdown": "countryList"
}
},
{
"name": "ZIPCODE",
"input_type": "SINGLE_STRING",
"id": 17,
"type": "ADDRESS",
"display_name": "Pincode",
"config": {
"maxLength": 25,
"maxLengthMessage": "i18n.fields.violation.message.max.length"
}
},
{
"name": "ADDRESS_LINE1",
"input_type": "TEXT",
"id": 18,
"type": "ADDRESS",
"display_name": "AddressLine1",
"config": {
"isFilterable": false,
"maxLength": 300,
"maxLengthMessage": "i18n.fields.violation.message.max.length",
"isDuplicateCheckEnabled": true
}
},
{
"name": "ADDRESS_LINE2",
"input_type": "TEXT",
"id": 19,
"type": "ADDRESS",
"display_name": "AddressLine2",
"config": {
"isFilterable": false,
"maxLength": 300,
"maxLengthMessage": "i18n.fields.violation.message.max.length",
"isDuplicateCheckEnabled": true
}
},
{
"name": "LATITUDE",
"input_type": "SINGLE_NUMBER",
"id": 20,
"type": "ADDRESS",
"display_name": "Latitude",
"config": {
"isWholeNumber": false,
"isFilterable": false
}
},
{
"name": "LONGITUDE",
"input_type": "SINGLE_NUMBER",
"id": 21,
"type": "ADDRESS",
"display_name": "Longitude",
"config": {
"isWholeNumber": false,
"isFilterable": false
}
}
],
"source_id": 2,
"id": 40,
"type": "ADDRESS",
"config": {},
"field_name": "Address"
}
],
[
{
"internal_name": "facebook",
"is_active": true,
"source_id": 2,
"id": 41,
"type": "SINGLE_STRING",
"config": {
"min_length": 1,
"max_length": 32000
},
"field_name": "Facebook"
}
],
[
{
"internal_name": "twitter",
"is_active": true,
"source_id": 2,
"id": 42,
"type": "SINGLE_STRING",
"config": {
"min_length": 1,
"max_length": 32000
},
"field_name": "Twitter"
}
],
[
{
"internal_name": "linkedIn",
"is_active": true,
"source_id": 2,
"id": 43,
"type": "SINGLE_STRING",
"config": {
"min_length": 1,
"max_length": 32000
},
"field_name": "LinkedIn"
}
],
[
{
"internal_name": "subscription_status",
"is_active": true,
"options": [
{
"name": "Subscribed",
"id": 124
},
{
"name": "Unsubscribed",
"id": 125
},
{
"name": "Not Subscribed",
"id": 126
},
{
"name": "Reported as spam",
"id": 127
},
{
"name": "Bounced",
"id": 128
}
],
"source_id": 2,
"id": 44,
"type": "DROPDOWN",
"config": {},
"field_name": "Subscription Status"
},
{
"internal_name": "subscription_types",
"is_active": true,
"options": [
{
"name": "Newsletter",
"id": 119
},
{
"name": "Promotional",
"id": 120
},
{
"name": "Product updates",
"id": 121
},
{
"name": "Conference and events",
"id": 122
},
{
"name": "Non marketing emails from our company",
"id": 123
}
],
"source_id": 2,
"id": 45,
"type": "MULTI_SELECT",
"config": {},
"field_name": "Subscription Types"
},
{
"internal_name": "unsubscribe_reason",
"is_active": true,
"options": [
{
"name": "I no longer want to receive emails from you",
"id": 129
},
{
"name": "I receive too many emails from you",
"id": 130
},
{
"name": "The emails are inappropriate",
"id": 131
},
{
"name": "The emails are spam",
"id": 132
},
{
"name": "Other unsubscribe reason",
"id": 133
}
],
"source_id": 2,
"id": 46,
"type": "DROPDOWN",
"config": {},
"field_name": "Unsubscribe Reason"
},
{
"internal_name": "other_unsubscribe_reason",
"is_active": true,
"source_id": 2,
"id": 47,
"type": "SINGLE_STRING",
"config": {
"min_length": 1,
"max_length": 255
},
"field_name": "Other Unsubscribe Reason"
}
],
[
{
"internal_name": "marketing_list",
"is_active": true,
"source_id": 2,
"id": 70,
"type": "MARKETING_LIST",
"config": {
"max_length": 100
},
"field_name": "Marketing List"
}
],
[
{
"internal_name": "created_by",
"is_active": true,
"source_id": 2,
"id": 48,
"type": "OWNER",
"config": {},
"field_name": "Created By"
}
],
[
{
"internal_name": "created_at",
"is_active": true,
"source_id": 2,
"id": 68,
"type": "DATE_TIME",
"config": {},
"field_name": "Created At"
}
],
[
{
"internal_name": "updated_by",
"is_active": true,
"source_id": 2,
"id": 49,
"type": "OWNER",
"config": {},
"field_name": "Updated By"
}
],
[
{
"internal_name": "updated_at",
"is_active": true,
"source_id": 2,
"id": 50,
"type": "DATE_TIME",
"config": {},
"field_name": "Updated At"
}
],
[
{
"internal_name": "last_assigned_at",
"is_active": true,
"source_id": 2,
"id": 51,
"type": "DATE_TIME",
"config": {},
"field_name": "Last Assigned At"
}
],
[
{
"internal_name": "id",
"is_active": true,
"source_id": 2,
"id": 52,
"type": "SINGLE_NUMBER",
"config": {},
"field_name": "ID"
}
],
[
{
"internal_name": "timezone",
"is_active": true,
"options": [
{
"name": "(UTC+00:00) Africa/Abidjan",
"id": 134
},
{
"name": "(UTC+00:00) Africa/Accra",
"id": 135
},
{
"name": "(UTC+03:00) Africa/Addis_Ababa",
"id": 136
},
{
"name": "(UTC+01:00) Africa/Algiers",
"id": 137
},
{
"name": "(UTC+03:00) Africa/Asmara",
"id": 138
},
{
"name": "(UTC+03:00) Africa/Asmera",
"id": 139
},
{
"name": "(UTC+00:00) Africa/Bamako",
"id": 140
},
{
"name": "(UTC+01:00) Africa/Bangui",
"id": 141
},
{
"name": "(UTC+00:00) Africa/Banjul",
"id": 142
},
{
"name": "(UTC+00:00) Africa/Bissau",
"id": 143
},
{
"name": "(UTC+02:00) Africa/Blantyre",
"id": 144
},
{
"name": "(UTC+01:00) Africa/Brazzaville",
"id": 145
},
{
"name": "(UTC+02:00) Africa/Bujumbura",
"id": 146
},
{
"name": "(UTC+02:00) Africa/Cairo",
"id": 147
},
{
"name": "(UTC+00:00) Africa/Casablanca",
"id": 148
},
{
"name": "(UTC+01:00) Africa/Ceuta",
"id": 149
},
{
"name": "(UTC+00:00) Africa/Conakry",
"id": 150
},
{
"name": "(UTC+00:00) Africa/Dakar",
"id": 151
},
{
"name": "(UTC+03:00) Africa/Dar_es_Salaam",
"id": 152
},
{
"name": "(UTC+03:00) Africa/Djibouti",
"id": 153
},
{
"name": "(UTC+01:00) Africa/Douala",
"id": 154
},
{
"name": "(UTC+00:00) Africa/El_Aaiun",
"id": 155
},
{
"name": "(UTC+00:00) Africa/Freetown",
"id": 156
},
{
"name": "(UTC+02:00) Africa/Gaborone",
"id": 157
},
{
"name": "(UTC+02:00) Africa/Harare",
"id": 158
},
{
"name": "(UTC+02:00) Africa/Johannesburg",
"id": 159
},
{
"name": "(UTC+02:00) Africa/Juba",
"id": 160
},
{
"name": "(UTC+03:00) Africa/Kampala",
"id": 161
},
{
"name": "(UTC+02:00) Africa/Khartoum",
"id": 162
},
{
"name": "(UTC+02:00) Africa/Kigali",
"id": 163
},
{
"name": "(UTC+01:00) Africa/Kinshasa",
"id": 164
},
{
"name": "(UTC+01:00) Africa/Lagos",
"id": 165
},
{
"name": "(UTC+01:00) Africa/Libreville",
"id": 166
},
{
"name": "(UTC+00:00) Africa/Lome",
"id": 167
},
{
"name": "(UTC+01:00) Africa/Luanda",
"id": 168
},
{
"name": "(UTC+02:00) Africa/Lubumbashi",
"id": 169
},
{
"name": "(UTC+02:00) Africa/Lusaka",
"id": 170
},
{
"name": "(UTC+01:00) Africa/Malabo",
"id": 171
},
{
"name": "(UTC+02:00) Africa/Maputo",
"id": 172
},
{
"name": "(UTC+02:00) Africa/Maseru",
"id": 173
},
{
"name": "(UTC+02:00) Africa/Mbabane",
"id": 174
},
{
"name": "(UTC+03:00) Africa/Mogadishu",
"id": 175
},
{
"name": "(UTC+00:00) Africa/Monrovia",
"id": 176
},
{
"name": "(UTC+03:00) Africa/Nairobi",
"id": 177
},
{
"name": "(UTC+01:00) Africa/Ndjamena",
"id": 178
},
{
"name": "(UTC+01:00) Africa/Niamey",
"id": 179
},
{
"name": "(UTC+00:00) Africa/Nouakchott",
"id": 180
},
{
"name": "(UTC+00:00) Africa/Ouagadougou",
"id": 181
},
{
"name": "(UTC+01:00) Africa/Porto-Novo",
"id": 182
},
{
"name": "(UTC+00:00) Africa/Sao_Tome",
"id": 183
},
{
"name": "(UTC+00:00) Africa/Timbuktu",
"id": 184
},
{
"name": "(UTC+02:00) Africa/Tripoli",
"id": 185
},
{
"name": "(UTC+01:00) Africa/Tunis",
"id": 186
},
{
"name": "(UTC+02:00) Africa/Windhoek",
"id": 187
},
{
"name": "(UTC-09:00) America/Adak",
"id": 188
},
{
"name": "(UTC-09:00) America/Anchorage",
"id": 189
},
{
"name": "(UTC-04:00) America/Anguilla",
"id": 190
},
{
"name": "(UTC-04:00) America/Antigua",
"id": 191
},
{
"name": "(UTC-03:00) America/Araguaina",
"id": 192
},
{
"name": "(UTC-03:00) America/Argentina/Buenos_Aires",
"id": 193
},
{
"name": "(UTC-03:00) America/Argentina/Catamarca",
"id": 194
},
{
"name": "(UTC-03:00) America/Argentina/ComodRivadavia",
"id": 195
},
{
"name": "(UTC-03:00) America/Argentina/Cordoba",
"id": 196
},
{
"name": "(UTC-03:00) America/Argentina/Jujuy",
"id": 197
},
{
"name": "(UTC-03:00) America/Argentina/La_Rioja",
"id": 198
},
{
"name": "(UTC-03:00) America/Argentina/Mendoza",
"id": 199
},
{
"name": "(UTC-03:00) America/Argentina/Rio_Gallegos",
"id": 200
},
{
"name": "(UTC-03:00) America/Argentina/Salta",
"id": 201
},
{
"name": "(UTC-03:00) America/Argentina/San_Juan",
"id": 202
},
{
"name": "(UTC-03:00) America/Argentina/San_Luis",
"id": 203
},
{
"name": "(UTC-03:00) America/Argentina/Tucuman",
"id": 204
},
{
"name": "(UTC-03:00) America/Argentina/Ushuaia",
"id": 205
},
{
"name": "(UTC-04:00) America/Aruba",
"id": 206
},
{
"name": "(UTC-04:00) America/Asuncion",
"id": 207
},
{
"name": "(UTC-05:00) America/Atikokan",
"id": 208
},
{
"name": "(UTC-10:00) America/Atka",
"id": 209
},
{
"name": "(UTC-03:00) America/Bahia",
"id": 210
},
{
"name": "(UTC-06:00) America/Bahia_Banderas",
"id": 211
},
{
"name": "(UTC-04:00) America/Barbados",
"id": 212
},
{
"name": "(UTC-03:00) America/Belem",
"id": 213
},
{
"name": "(UTC-06:00) America/Belize",
"id": 214
},
{
"name": "(UTC-04:00) America/Blanc-Sablon",
"id": 215
},
{
"name": "(UTC-04:00) America/Boa_Vista",
"id": 216
},
{
"name": "(UTC-05:00) America/Bogota",
"id": 217
},
{
"name": "(UTC-07:00) America/Boise",
"id": 218
},
{
"name": "(UTC-03:00) America/Buenos_Aires",
"id": 219
},
{
"name": "(UTC-07:00) America/Cambridge_Bay",
"id": 220
},
{
"name": "(UTC-04:00) America/Campo_Grande",
"id": 221
},
{
"name": "(UTC-05:00) America/Cancun",
"id": 222
},
{
"name": "(UTC-04:00) America/Caracas",
"id": 223
},
{
"name": "(UTC-03:00) America/Catamarca",
"id": 224
},
{
"name": "(UTC-03:00) America/Cayenne",
"id": 225
},
{
"name": "(UTC-05:00) America/Cayman",
"id": 226
},
{
"name": "(UTC-06:00) America/Chicago",
"id": 227
},
{
"name": "(UTC-06:00) America/Chihuahua",
"id": 228
},
{
"name": "(UTC-07:00) America/Ciudad_Juarez",
"id": 229
},
{
"name": "(UTC-05:00) America/Coral_Harbour",
"id": 230
},
{
"name": "(UTC-03:00) America/Cordoba",
"id": 231
},
{
"name": "(UTC-06:00) America/Costa_Rica",
"id": 232
},
{
"name": "(UTC-07:00) America/Creston",
"id": 233
},
{
"name": "(UTC-04:00) America/Cuiaba",
"id": 234
},
{
"name": "(UTC-04:00) America/Curacao",
"id": 235
},
{
"name": "(UTC+00:00) America/Danmarkshavn",
"id": 236
},
{
"name": "(UTC-07:00) America/Dawson",
"id": 237
},
{
"name": "(UTC-07:00) America/Dawson_Creek",
"id": 238
},
{
"name": "(UTC-07:00) America/Denver",
"id": 239
},
{
"name": "(UTC-05:00) America/Detroit",
"id": 240
},
{
"name": "(UTC-04:00) America/Dominica",
"id": 241
},
{
"name": "(UTC-07:00) America/Edmonton",
"id": 242
},
{
"name": "(UTC-05:00) America/Eirunepe",
"id": 243
},
{
"name": "(UTC-06:00) America/El_Salvador",
"id": 244
},
{
"name": "(UTC-08:00) America/Ensenada",
"id": 245
},
{
"name": "(UTC-07:00) America/Fort_Nelson",
"id": 246
},
{
"name": "(UTC-05:00) America/Fort_Wayne",
"id": 247
},
{
"name": "(UTC-03:00) America/Fortaleza",
"id": 248
},
{
"name": "(UTC-04:00) America/Glace_Bay",
"id": 249
},
{
"name": "(UTC-02:00) America/Godthab",
"id": 250
},
{
"name": "(UTC-04:00) America/Goose_Bay",
"id": 251
},
{
"name": "(UTC-05:00) America/Grand_Turk",
"id": 252
},
{
"name": "(UTC-04:00) America/Grenada",
"id": 253
},
{
"name": "(UTC-04:00) America/Guadeloupe",
"id": 254
},
{
"name": "(UTC-06:00) America/Guatemala",
"id": 255
},
{
"name": "(UTC-05:00) America/Guayaquil",
"id": 256
},
{
"name": "(UTC-04:00) America/Guyana",
"id": 257
},
{
"name": "(UTC-04:00) America/Halifax",
"id": 258
},
{
"name": "(UTC-05:00) America/Havana",
"id": 259
},
{
"name": "(UTC-07:00) America/Hermosillo",
"id": 260
},
{
"name": "(UTC-05:00) America/Indiana/Indianapolis",
"id": 261
},
{
"name": "(UTC-06:00) America/Indiana/Knox",
"id": 262
},
{
"name": "(UTC-05:00) America/Indiana/Marengo",
"id": 263
},
{
"name": "(UTC-05:00) America/Indiana/Petersburg",
"id": 264
},
{
"name": "(UTC-06:00) America/Indiana/Tell_City",
"id": 265
},
{
"name": "(UTC-05:00) America/Indiana/Vevay",
"id": 266
},
{
"name": "(UTC-05:00) America/Indiana/Vincennes",
"id": 267
},
{
"name": "(UTC-05:00) America/Indiana/Winamac",
"id": 268
},
{
"name": "(UTC-05:00) America/Indianapolis",
"id": 269
},
{
"name": "(UTC-07:00) America/Inuvik",
"id": 270
},
{
"name": "(UTC-05:00) America/Iqaluit",
"id": 271
},
{
"name": "(UTC-05:00) America/Jamaica",
"id": 272
},
{
"name": "(UTC-03:00) America/Jujuy",
"id": 273
},
{
"name": "(UTC-09:00) America/Juneau",
"id": 274
},
{
"name": "(UTC-05:00) America/Kentucky/Louisville",
"id": 275
},
{
"name": "(UTC-05:00) America/Kentucky/Monticello",
"id": 276
},
{
"name": "(UTC-06:00) America/Knox_IN",
"id": 277
},
{
"name": "(UTC-04:00) America/Kralendijk",
"id": 278
},
{
"name": "(UTC-04:00) America/La_Paz",
"id": 279
},
{
"name": "(UTC-05:00) America/Lima",
"id": 280
},
{
"name": "(UTC-08:00) America/Los_Angeles",
"id": 281
},
{
"name": "(UTC-05:00) America/Louisville",
"id": 282
},
{
"name": "(UTC-04:00) America/Lower_Princes",
"id": 283
},
{
"name": "(UTC-03:00) America/Maceio",
"id": 284
},
{
"name": "(UTC-06:00) America/Managua",
"id": 285
},
{
"name": "(UTC-04:00) America/Manaus",
"id": 286
},
{
"name": "(UTC-04:00) America/Marigot",
"id": 287
},
{
"name": "(UTC-04:00) America/Martinique",
"id": 288
},
{
"name": "(UTC-06:00) America/Matamoros",
"id": 289
},
{
"name": "(UTC-07:00) America/Mazatlan",
"id": 290
},
{
"name": "(UTC-03:00) America/Mendoza",
"id": 291
},
{
"name": "(UTC-06:00) America/Menominee",
"id": 292
},
{
"name": "(UTC-06:00) America/Merida",
"id": 293
},
{
"name": "(UTC-09:00) America/Metlakatla",
"id": 294
},
{
"name": "(UTC-06:00) America/Mexico_City",
"id": 295
},
{
"name": "(UTC-03:00) America/Miquelon",
"id": 296
},
{
"name": "(UTC-04:00) America/Moncton",
"id": 297
},
{
"name": "(UTC-06:00) America/Monterrey",
"id": 298
},
{
"name": "(UTC-03:00) America/Montevideo",
"id": 299
},
{
"name": "(UTC-05:00) America/Montreal",
"id": 300
},
{
"name": "(UTC-04:00) America/Montserrat",
"id": 301
},
{
"name": "(UTC-05:00) America/Nassau",
"id": 302
},
{
"name": "(UTC-05:00) America/New_York",
"id": 303
},
{
"name": "(UTC-05:00) America/Nipigon",
"id": 304
},
{
"name": "(UTC-09:00) America/Nome",
"id": 305
},
{
"name": "(UTC-02:00) America/Noronha",
"id": 306
},
{
"name": "(UTC-06:00) America/North_Dakota/Beulah",
"id": 307
},
{
"name": "(UTC-06:00) America/North_Dakota/Center",
"id": 308
},
{
"name": "(UTC-06:00) America/North_Dakota/New_Salem",
"id": 309
},
{
"name": "(UTC-02:00) America/Nuuk",
"id": 310
},
{
"name": "(UTC-06:00) America/Ojinaga",
"id": 311
},
{
"name": "(UTC-05:00) America/Panama",
"id": 312
},
{
"name": "(UTC-05:00) America/Pangnirtung",
"id": 313
},
{
"name": "(UTC-03:00) America/Paramaribo",
"id": 314
},
{
"name": "(UTC-07:00) America/Phoenix",
"id": 315
},
{
"name": "(UTC-05:00) America/Port-au-Prince",
"id": 316
},
{
"name": "(UTC-04:00) America/Port_of_Spain",
"id": 317
},
{
"name": "(UTC-05:00) America/Porto_Acre",
"id": 318
},
{
"name": "(UTC-04:00) America/Porto_Velho",
"id": 319
},
{
"name": "(UTC-04:00) America/Puerto_Rico",
"id": 320
},
{
"name": "(UTC-03:00) America/Punta_Arenas",
"id": 321
},
{
"name": "(UTC-06:00) America/Rainy_River",
"id": 322
},
{
"name": "(UTC-06:00) America/Rankin_Inlet",
"id": 323
},
{
"name": "(UTC-03:00) America/Recife",
"id": 324
},
{
"name": "(UTC-06:00) America/Regina",
"id": 325
},
{
"name": "(UTC-06:00) America/Resolute",
"id": 326
},
{
"name": "(UTC-05:00) America/Rio_Branco",
"id": 327
},
{
"name": "(UTC-03:00) America/Rosario",
"id": 328
},
{
"name": "(UTC-08:00) America/Santa_Isabel",
"id": 329
},
{
"name": "(UTC-03:00) America/Santarem",
"id": 330
},
{
"name": "(UTC-04:00) America/Santiago",
"id": 331
},
{
"name": "(UTC-04:00) America/Santo_Domingo",
"id": 332
},
{
"name": "(UTC-03:00) America/Sao_Paulo",
"id": 333
},
{
"name": "(UTC-01:00) America/Scoresbysund",
"id": 334
},
{
"name": "(UTC-07:00) America/Shiprock",
"id": 335
},
{
"name": "(UTC-09:00) America/Sitka",
"id": 336
},
{
"name": "(UTC-04:00) America/St_Barthelemy",
"id": 337
},
{
"name": "(UTC-03:30) America/St_Johns",
"id": 338
},
{
"name": "(UTC-04:00) America/St_Kitts",
"id": 339
},
{
"name": "(UTC-04:00) America/St_Lucia",
"id": 340
},
{
"name": "(UTC-04:00) America/St_Thomas",
"id": 341
},
{
"name": "(UTC-04:00) America/St_Vincent",
"id": 342
},
{
"name": "(UTC-06:00) America/Swift_Current",
"id": 343
},
{
"name": "(UTC-06:00) America/Tegucigalpa",
"id": 344
},
{
"name": "(UTC-04:00) America/Thule",
"id": 345
},
{
"name": "(UTC-05:00) America/Thunder_Bay",
"id": 346
},
{
"name": "(UTC-08:00) America/Tijuana",
"id": 347
},
{
"name": "(UTC-05:00) America/Toronto",
"id": 348
},
{
"name": "(UTC-04:00) America/Tortola",
"id": 349
},
{
"name": "(UTC-08:00) America/Vancouver",
"id": 350
},
{
"name": "(UTC-04:00) America/Virgin",
"id": 351
},
{
"name": "(UTC-07:00) America/Whitehorse",
"id": 352
},
{
"name": "(UTC-06:00) America/Winnipeg",
"id": 353
},
{
"name": "(UTC-09:00) America/Yakutat",
"id": 354
},
{
"name": "(UTC-07:00) America/Yellowknife",
"id": 355
},
{
"name": "(UTC+11:00) Antarctica/Casey",
"id": 356
},
{
"name": "(UTC+07:00) Antarctica/Davis",
"id": 357
},
{
"name": "(UTC+10:00) Antarctica/DumontDUrville",
"id": 358
},
{
"name": "(UTC+10:00) Antarctica/Macquarie",
"id": 359
},
{
"name": "(UTC+05:00) Antarctica/Mawson",
"id": 360
},
{
"name": "(UTC+12:00) Antarctica/McMurdo",
"id": 361
},
{
"name": "(UTC-03:00) Antarctica/Palmer",
"id": 362
},
{
"name": "(UTC-03:00) Antarctica/Rothera",
"id": 363
},
{
"name": "(UTC+12:00) Antarctica/South_Pole",
"id": 364
},
{
"name": "(UTC+03:00) Antarctica/Syowa",
"id": 365
},
{
"name": "(UTC+00:00) Antarctica/Troll",
"id": 366
},
{
"name": "(UTC+06:00) Antarctica/Vostok",
"id": 367
},
{
"name": "(UTC+01:00) Arctic/Longyearbyen",
"id": 368
},
{
"name": "(UTC+03:00) Asia/Aden",
"id": 369
},
{
"name": "(UTC+06:00) Asia/Almaty",
"id": 370
},
{
"name": "(UTC+03:00) Asia/Amman",
"id": 371
},
{
"name": "(UTC+12:00) Asia/Anadyr",
"id": 372
},
{
"name": "(UTC+05:00) Asia/Aqtau",
"id": 373
},
{
"name": "(UTC+05:00) Asia/Aqtobe",
"id": 374
},
{
"name": "(UTC+05:00) Asia/Ashgabat",
"id": 375
},
{
"name": "(UTC+05:00) Asia/Ashkhabad",
"id": 376
},
{
"name": "(UTC+05:00) Asia/Atyrau",
"id": 377
},
{
"name": "(UTC+03:00) Asia/Baghdad",
"id": 378
},
{
"name": "(UTC+03:00) Asia/Bahrain",
"id": 379
},
{
"name": "(UTC+04:00) Asia/Baku",
"id": 380
},
{
"name": "(UTC+07:00) Asia/Bangkok",
"id": 381
},
{
"name": "(UTC+07:00) Asia/Barnaul",
"id": 382
},
{
"name": "(UTC+02:00) Asia/Beirut",
"id": 383
},
{
"name": "(UTC+06:00) Asia/Bishkek",
"id": 384
},
{
"name": "(UTC+08:00) Asia/Brunei",
"id": 385
},
{
"name": "(UTC+05:30) Asia/Calcutta",
"id": 386
},
{
"name": "(UTC+09:00) Asia/Chita",
"id": 387
},
{
"name": "(UTC+08:00) Asia/Choibalsan",
"id": 388
},
{
"name": "(UTC+08:00) Asia/Chongqing",
"id": 389
},
{
"name": "(UTC+08:00) Asia/Chungking",
"id": 390
},
{
"name": "(UTC+05:30) Asia/Colombo",
"id": 391
},
{
"name": "(UTC+06:00) Asia/Dacca",
"id": 392
},
{
"name": "(UTC+03:00) Asia/Damascus",
"id": 393
},
{
"name": "(UTC+06:00) Asia/Dhaka",
"id": 394
},
{
"name": "(UTC+09:00) Asia/Dili",
"id": 395
},
{
"name": "(UTC+04:00) Asia/Dubai",
"id": 396
},
{
"name": "(UTC+05:00) Asia/Dushanbe",
"id": 397
},
{
"name": "(UTC+02:00) Asia/Famagusta",
"id": 398
},
{
"name": "(UTC+02:00) Asia/Gaza",
"id": 399
},
{
"name": "(UTC+08:00) Asia/Harbin",
"id": 400
},
{
"name": "(UTC+02:00) Asia/Hebron",
"id": 401
},
{
"name": "(UTC+07:00) Asia/Ho_Chi_Minh",
"id": 402
},
{
"name": "(UTC+08:00) Asia/Hong_Kong",
"id": 403
},
{
"name": "(UTC+07:00) Asia/Hovd",
"id": 404
},
{
"name": "(UTC+08:00) Asia/Irkutsk",
"id": 405
},
{
"name": "(UTC+03:00) Asia/Istanbul",
"id": 406
},
{
"name": "(UTC+07:00) Asia/Jakarta",
"id": 407
},
{
"name": "(UTC+09:00) Asia/Jayapura",
"id": 408
},
{
"name": "(UTC+02:00) Asia/Jerusalem",
"id": 409
},
{
"name": "(UTC+04:30) Asia/Kabul",
"id": 410
},
{
"name": "(UTC+12:00) Asia/Kamchatka",
"id": 411
},
{
"name": "(UTC+05:00) Asia/Karachi",
"id": 412
},
{
"name": "(UTC+06:00) Asia/Kashgar",
"id": 413
},
{
"name": "(UTC+05:45) Asia/Kathmandu",
"id": 414
},
{
"name": "(UTC+05:45) Asia/Katmandu",
"id": 415
},
{
"name": "(UTC+09:00) Asia/Khandyga",
"id": 416
},
{
"name": "(UTC+05:30) Asia/Kolkata",
"id": 417
},
{
"name": "(UTC+07:00) Asia/Krasnoyarsk",
"id": 418
},
{
"name": "(UTC+08:00) Asia/Kuala_Lumpur",
"id": 419
},
{
"name": "(UTC+08:00) Asia/Kuching",
"id": 420
},
{
"name": "(UTC+03:00) Asia/Kuwait",
"id": 421
},
{
"name": "(UTC+08:00) Asia/Macao",
"id": 422
},
{
"name": "(UTC+08:00) Asia/Macau",
"id": 423
},
{
"name": "(UTC+11:00) Asia/Magadan",
"id": 424
},
{
"name": "(UTC+08:00) Asia/Makassar",
"id": 425
},
{
"name": "(UTC+08:00) Asia/Manila",
"id": 426
},
{
"name": "(UTC+04:00) Asia/Muscat",
"id": 427
},
{
"name": "(UTC+02:00) Asia/Nicosia",
"id": 428
},
{
"name": "(UTC+07:00) Asia/Novokuznetsk",
"id": 429
},
{
"name": "(UTC+07:00) Asia/Novosibirsk",
"id": 430
},
{
"name": "(UTC+06:00) Asia/Omsk",
"id": 431
},
{
"name": "(UTC+05:00) Asia/Oral",
"id": 432
},
{
"name": "(UTC+07:00) Asia/Phnom_Penh",
"id": 433
},
{
"name": "(UTC+07:00) Asia/Pontianak",
"id": 434
},
{
"name": "(UTC+09:00) Asia/Pyongyang",
"id": 435
},
{
"name": "(UTC+03:00) Asia/Qatar",
"id": 436
},
{
"name": "(UTC+06:00) Asia/Qostanay",
"id": 437
},
{
"name": "(UTC+05:00) Asia/Qyzylorda",
"id": 438
},
{
"name": "(UTC+06:30) Asia/Rangoon",
"id": 439
},
{
"name": "(UTC+03:00) Asia/Riyadh",
"id": 440
},
{
"name": "(UTC+07:00) Asia/Saigon",
"id": 441
},
{
"name": "(UTC+11:00) Asia/Sakhalin",
"id": 442
},
{
"name": "(UTC+05:00) Asia/Samarkand",
"id": 443
},
{
"name": "(UTC+09:00) Asia/Seoul",
"id": 444
},
{
"name": "(UTC+08:00) Asia/Shanghai",
"id": 445
},
{
"name": "(UTC+08:00) Asia/Singapore",
"id": 446
},
{
"name": "(UTC+11:00) Asia/Srednekolymsk",
"id": 447
},
{
"name": "(UTC+08:00) Asia/Taipei",
"id": 448
},
{
"name": "(UTC+05:00) Asia/Tashkent",
"id": 449
},
{
"name": "(UTC+04:00) Asia/Tbilisi",
"id": 450
},
{
"name": "(UTC+03:30) Asia/Tehran",
"id": 451
},
{
"name": "(UTC+02:00) Asia/Tel_Aviv",
"id": 452
},
{
"name": "(UTC+06:00) Asia/Thimbu",
"id": 453
},
{
"name": "(UTC+06:00) Asia/Thimphu",
"id": 454
},
{
"name": "(UTC+09:00) Asia/Tokyo",
"id": 455
},
{
"name": "(UTC+07:00) Asia/Tomsk",
"id": 456
},
{
"name": "(UTC+08:00) Asia/Ujung_Pandang",
"id": 457
},
{
"name": "(UTC+08:00) Asia/Ulaanbaatar",
"id": 458
},
{
"name": "(UTC+08:00) Asia/Ulan_Bator",
"id": 459
},
{
"name": "(UTC+06:00) Asia/Urumqi",
"id": 460
},
{
"name": "(UTC+10:00) Asia/Ust-Nera",
"id": 461
},
{
"name": "(UTC+07:00) Asia/Vientiane",
"id": 462
},
{
"name": "(UTC+10:00) Asia/Vladivostok",
"id": 463
},
{
"name": "(UTC+09:00) Asia/Yakutsk",
"id": 464
},
{
"name": "(UTC+06:30) Asia/Yangon",
"id": 465
},
{
"name": "(UTC+05:00) Asia/Yekaterinburg",
"id": 466
},
{
"name": "(UTC+04:00) Asia/Yerevan",
"id": 467
},
{
"name": "(UTC-01:00) Atlantic/Azores",
"id": 468
},
{
"name": "(UTC-04:00) Atlantic/Bermuda",
"id": 469
},
{
"name": "(UTC+00:00) Atlantic/Canary",
"id": 470
},
{
"name": "(UTC-01:00) Atlantic/Cape_Verde",
"id": 471
},
{
"name": "(UTC+00:00) Atlantic/Faeroe",
"id": 472
},
{
"name": "(UTC+00:00) Atlantic/Faroe",
"id": 473
},
{
"name": "(UTC+01:00) Atlantic/Jan_Mayen",
"id": 474
},
{
"name": "(UTC+00:00) Atlantic/Madeira",
"id": 475
},
{
"name": "(UTC+00:00) Atlantic/Reykjavik",
"id": 476
},
{
"name": "(UTC-02:00) Atlantic/South_Georgia",
"id": 477
},
{
"name": "(UTC+00:00) Atlantic/St_Helena",
"id": 478
},
{
"name": "(UTC-03:00) Atlantic/Stanley",
"id": 479
},
{
"name": "(UTC+10:00) Australia/ACT",
"id": 480
},
{
"name": "(UTC+09:30) Australia/Adelaide",
"id": 481
},
{
"name": "(UTC+10:00) Australia/Brisbane",
"id": 482
},
{
"name": "(UTC+09:30) Australia/Broken_Hill",
"id": 483
},
{
"name": "(UTC+10:00) Australia/Canberra",
"id": 484
},
{
"name": "(UTC+10:00) Australia/Currie",
"id": 485
},
{
"name": "(UTC+09:30) Australia/Darwin",
"id": 486
},
{
"name": "(UTC+08:45) Australia/Eucla",
"id": 487
},
{
"name": "(UTC+10:00) Australia/Hobart",
"id": 488
},
{
"name": "(UTC+10:30) Australia/LHI",
"id": 489
},
{
"name": "(UTC+10:00) Australia/Lindeman",
"id": 490
},
{
"name": "(UTC+10:30) Australia/Lord_Howe",
"id": 491
},
{
"name": "(UTC+10:00) Australia/Melbourne",
"id": 492
},
{
"name": "(UTC+10:00) Australia/NSW",
"id": 493
},
{
"name": "(UTC+09:30) Australia/North",
"id": 494
},
{
"name": "(UTC+08:00) Australia/Perth",
"id": 495
},
{
"name": "(UTC+10:00) Australia/Queensland",
"id": 496
},
{
"name": "(UTC+09:30) Australia/South",
"id": 497
},
{
"name": "(UTC+10:00) Australia/Sydney",
"id": 498
},
{
"name": "(UTC+10:00) Australia/Tasmania",
"id": 499
},
{
"name": "(UTC+10:00) Australia/Victoria",
"id": 500
},
{
"name": "(UTC+08:00) Australia/West",
"id": 501
},
{
"name": "(UTC+09:30) Australia/Yancowinna",
"id": 502
},
{
"name": "(UTC-05:00) Brazil/Acre",
"id": 503
},
{
"name": "(UTC-02:00) Brazil/DeNoronha",
"id": 504
},
{
"name": "(UTC-03:00) Brazil/East",
"id": 505
},
{
"name": "(UTC-04:00) Brazil/West",
"id": 506
},
{
"name": "(UTC+01:00) CET",
"id": 507
},
{
"name": "(UTC-06:00) CST6CDT",
"id": 508
},
{
"name": "(UTC-04:00) Canada/Atlantic",
"id": 509
},
{
"name": "(UTC-06:00) Canada/Central",
"id": 510
},
{
"name": "(UTC-05:00) Canada/Eastern",
"id": 511
},
{
"name": "(UTC-07:00) Canada/Mountain",
"id": 512
},
{
"name": "(UTC-03:30) Canada/Newfoundland",
"id": 513
},
{
"name": "(UTC-08:00) Canada/Pacific",
"id": 514
},
{
"name": "(UTC-06:00) Canada/Saskatchewan",
"id": 515
},
{
"name": "(UTC-07:00) Canada/Yukon",
"id": 516
},
{
"name": "(UTC-04:00) Chile/Continental",
"id": 517
},
{
"name": "(UTC-06:00) Chile/EasterIsland",
"id": 518
},
{
"name": "(UTC-05:00) Cuba",
"id": 519
},
{
"name": "(UTC+02:00) EET",
"id": 520
},
{
"name": "(UTC-05:00) EST5EDT",
"id": 521
},
{
"name": "(UTC+02:00) Egypt",
"id": 522
},
{
"name": "(UTC+00:00) Eire",
"id": 523
},
{
"name": "(UTC+00:00) Etc/GMT",
"id": 524
},
{
"name": "(UTC+00:00) Etc/GMT+0",
"id": 525
},
{
"name": "(UTC-01:00) Etc/GMT+1",
"id": 526
},
{
"name": "(UTC-10:00) Etc/GMT+10",
"id": 527
},
{
"name": "(UTC-11:00) Etc/GMT+11",
"id": 528
},
{
"name": "(UTC-12:00) Etc/GMT+12",
"id": 529
},
{
"name": "(UTC-02:00) Etc/GMT+2",
"id": 530
},
{
"name": "(UTC-03:00) Etc/GMT+3",
"id": 531
},
{
"name": "(UTC-04:00) Etc/GMT+4",
"id": 532
},
{
"name": "(UTC-05:00) Etc/GMT+5",
"id": 533
},
{
"name": "(UTC-06:00) Etc/GMT+6",
"id": 534
},
{
"name": "(UTC-07:00) Etc/GMT+7",
"id": 535
},
{
"name": "(UTC-08:00) Etc/GMT+8",
"id": 536
},
{
"name": "(UTC-09:00) Etc/GMT+9",
"id": 537
},
{
"name": "(UTC+00:00) Etc/GMT-0",
"id": 538
},
{
"name": "(UTC+01:00) Etc/GMT-1",
"id": 539
},
{
"name": "(UTC+10:00) Etc/GMT-10",
"id": 540
},
{
"name": "(UTC+11:00) Etc/GMT-11",
"id": 541
},
{
"name": "(UTC+12:00) Etc/GMT-12",
"id": 542
},
{
"name": "(UTC+13:00) Etc/GMT-13",
"id": 543
},
{
"name": "(UTC+14:00) Etc/GMT-14",
"id": 544
},
{
"name": "(UTC+02:00) Etc/GMT-2",
"id": 545
},
{
"name": "(UTC+03:00) Etc/GMT-3",
"id": 546
},
{
"name": "(UTC+04:00) Etc/GMT-4",
"id": 547
},
{
"name": "(UTC+05:00) Etc/GMT-5",
"id": 548
},
{
"name": "(UTC+06:00) Etc/GMT-6",
"id": 549
},
{
"name": "(UTC+07:00) Etc/GMT-7",
"id": 550
},
{
"name": "(UTC+08:00) Etc/GMT-8",
"id": 551
},
{
"name": "(UTC+09:00) Etc/GMT-9",
"id": 552
},
{
"name": "(UTC+00:00) Etc/GMT0",
"id": 553
},
{
"name": "(UTC+00:00) Etc/Greenwich",
"id": 554
},
{
"name": "(UTC+00:00) Etc/UCT",
"id": 555
},
{
"name": "(UTC+00:00) Etc/UTC",
"id": 556
},
{
"name": "(UTC+00:00) Etc/Universal",
"id": 557
},
{
"name": "(UTC+00:00) Etc/Zulu",
"id": 558
},
{
"name": "(UTC+01:00) Europe/Amsterdam",
"id": 559
},
{
"name": "(UTC+01:00) Europe/Andorra",
"id": 560
},
{
"name": "(UTC+04:00) Europe/Astrakhan",
"id": 561
},
{
"name": "(UTC+02:00) Europe/Athens",
"id": 562
},
{
"name": "(UTC+00:00) Europe/Belfast",
"id": 563
},
{
"name": "(UTC+01:00) Europe/Belgrade",
"id": 564
},
{
"name": "(UTC+01:00) Europe/Berlin",
"id": 565
},
{
"name": "(UTC+01:00) Europe/Bratislava",
"id": 566
},
{
"name": "(UTC+01:00) Europe/Brussels",
"id": 567
},
{
"name": "(UTC+02:00) Europe/Bucharest",
"id": 568
},
{
"name": "(UTC+01:00) Europe/Budapest",
"id": 569
},
{
"name": "(UTC+01:00) Europe/Busingen",
"id": 570
},
{
"name": "(UTC+02:00) Europe/Chisinau",
"id": 571
},
{
"name": "(UTC+01:00) Europe/Copenhagen",
"id": 572
},
{
"name": "(UTC+00:00) Europe/Dublin",
"id": 573
},
{
"name": "(UTC+01:00) Europe/Gibraltar",
"id": 574
},
{
"name": "(UTC+00:00) Europe/Guernsey",
"id": 575
},
{
"name": "(UTC+02:00) Europe/Helsinki",
"id": 576
},
{
"name": "(UTC+00:00) Europe/Isle_of_Man",
"id": 577
},
{
"name": "(UTC+03:00) Europe/Istanbul",
"id": 578
},
{
"name": "(UTC+00:00) Europe/Jersey",
"id": 579
},
{
"name": "(UTC+02:00) Europe/Kaliningrad",
"id": 580
},
{
"name": "(UTC+02:00) Europe/Kiev",
"id": 581
},
{
"name": "(UTC+03:00) Europe/Kirov",
"id": 582
},
{
"name": "(UTC+02:00) Europe/Kyiv",
"id": 583
},
{
"name": "(UTC+00:00) Europe/Lisbon",
"id": 584
},
{
"name": "(UTC+01:00) Europe/Ljubljana",
"id": 585
},
{
"name": "(UTC+00:00) Europe/London",
"id": 586
},
{
"name": "(UTC+01:00) Europe/Luxembourg",
"id": 587
},
{
"name": "(UTC+01:00) Europe/Madrid",
"id": 588
},
{
"name": "(UTC+01:00) Europe/Malta",
"id": 589
},
{
"name": "(UTC+02:00) Europe/Mariehamn",
"id": 590
},
{
"name": "(UTC+03:00) Europe/Minsk",
"id": 591
},
{
"name": "(UTC+01:00) Europe/Monaco",
"id": 592
},
{
"name": "(UTC+03:00) Europe/Moscow",
"id": 593
},
{
"name": "(UTC+02:00) Europe/Nicosia",
"id": 594
},
{
"name": "(UTC+01:00) Europe/Oslo",
"id": 595
},
{
"name": "(UTC+01:00) Europe/Paris",
"id": 596
},
{
"name": "(UTC+01:00) Europe/Podgorica",
"id": 597
},
{
"name": "(UTC+01:00) Europe/Prague",
"id": 598
},
{
"name": "(UTC+02:00) Europe/Riga",
"id": 599
},
{
"name": "(UTC+01:00) Europe/Rome",
"id": 600
},
{
"name": "(UTC+04:00) Europe/Samara",
"id": 601
},
{
"name": "(UTC+01:00) Europe/San_Marino",
"id": 602
},
{
"name": "(UTC+01:00) Europe/Sarajevo",
"id": 603
},
{
"name": "(UTC+04:00) Europe/Saratov",
"id": 604
},
{
"name": "(UTC+03:00) Europe/Simferopol",
"id": 605
},
{
"name": "(UTC+01:00) Europe/Skopje",
"id": 606
},
{
"name": "(UTC+02:00) Europe/Sofia",
"id": 607
},
{
"name": "(UTC+01:00) Europe/Stockholm",
"id": 608
},
{
"name": "(UTC+02:00) Europe/Tallinn",
"id": 609
},
{
"name": "(UTC+01:00) Europe/Tirane",
"id": 610
},
{
"name": "(UTC+02:00) Europe/Tiraspol",
"id": 611
},
{
"name": "(UTC+04:00) Europe/Ulyanovsk",
"id": 612
},
{
"name": "(UTC+02:00) Europe/Uzhgorod",
"id": 613
},
{
"name": "(UTC+01:00) Europe/Vaduz",
"id": 614
},
{
"name": "(UTC+01:00) Europe/Vatican",
"id": 615
},
{
"name": "(UTC+01:00) Europe/Vienna",
"id": 616
},
{
"name": "(UTC+02:00) Europe/Vilnius",
"id": 617
},
{
"name": "(UTC+03:00) Europe/Volgograd",
"id": 618
},
{
"name": "(UTC+01:00) Europe/Warsaw",
"id": 619
},
{
"name": "(UTC+01:00) Europe/Zagreb",
"id": 620
},
{
"name": "(UTC+02:00) Europe/Zaporozhye",
"id": 621
},
{
"name": "(UTC+01:00) Europe/Zurich",
"id": 622
},
{
"name": "(UTC+00:00) GB",
"id": 623
},
{
"name": "(UTC+00:00) GB-Eire",
"id": 624
},
{
"name": "(UTC+00:00) GMT",
"id": 625
},
{
"name": "(UTC+00:00) GMT0",
"id": 626
},
{
"name": "(UTC+00:00) Greenwich",
"id": 627
},
{
"name": "(UTC+08:00) Hongkong",
"id": 628
},
{
"name": "(UTC+00:00) Iceland",
"id": 629
},
{
"name": "(UTC+03:00) Indian/Antananarivo",
"id": 630
},
{
"name": "(UTC+06:00) Indian/Chagos",
"id": 631
},
{
"name": "(UTC+07:00) Indian/Christmas",
"id": 632
},
{
"name": "(UTC+06:30) Indian/Cocos",
"id": 633
},
{
"name": "(UTC+03:00) Indian/Comoro",
"id": 634
},
{
"name": "(UTC+05:00) Indian/Kerguelen",
"id": 635
},
{
"name": "(UTC+04:00) Indian/Mahe",
"id": 636
},
{
"name": "(UTC+05:00) Indian/Maldives",
"id": 637
},
{
"name": "(UTC+04:00) Indian/Mauritius",
"id": 638
},
{
"name": "(UTC+03:00) Indian/Mayotte",
"id": 639
},
{
"name": "(UTC+04:00) Indian/Reunion",
"id": 640
},
{
"name": "(UTC+03:30) Iran",
"id": 641
},
{
"name": "(UTC+02:00) Israel",
"id": 642
},
{
"name": "(UTC-05:00) Jamaica",
"id": 643
},
{
"name": "(UTC+09:00) Japan",
"id": 644
},
{
"name": "(UTC+12:00) Kwajalein",
"id": 645
},
{
"name": "(UTC+02:00) Libya",
"id": 646
},
{
"name": "(UTC+01:00) MET",
"id": 647
},
{
"name": "(UTC-07:00) MST7MDT",
"id": 648
},
{
"name": "(UTC-08:00) Mexico/BajaNorte",
"id": 649
},
{
"name": "(UTC-07:00) Mexico/BajaSur",
"id": 650
},
{
"name": "(UTC-06:00) Mexico/General",
"id": 651
},
{
"name": "(UTC+12:00) NZ",
"id": 652
},
{
"name": "(UTC+12:45) NZ-CHAT",
"id": 653
},
{
"name": "(UTC-07:00) Navajo",
"id": 654
},
{
"name": "(UTC+08:00) PRC",
"id": 655
},
{
"name": "(UTC-08:00) PST8PDT",
"id": 656
},
{
"name": "(UTC+13:00) Pacific/Apia",
"id": 657
},
{
"name": "(UTC+12:00) Pacific/Auckland",
"id": 658
},
{
"name": "(UTC+11:00) Pacific/Bougainville",
"id": 659
},
{
"name": "(UTC+12:45) Pacific/Chatham",
"id": 660
},
{
"name": "(UTC+10:00) Pacific/Chuuk",
"id": 661
},
{
"name": "(UTC-06:00) Pacific/Easter",
"id": 662
},
{
"name": "(UTC+11:00) Pacific/Efate",
"id": 663
},
{
"name": "(UTC+13:00) Pacific/Enderbury",
"id": 664
},
{
"name": "(UTC+13:00) Pacific/Fakaofo",
"id": 665
},
{
"name": "(UTC+12:00) Pacific/Fiji",
"id": 666
},
{
"name": "(UTC+12:00) Pacific/Funafuti",
"id": 667
},
{
"name": "(UTC-06:00) Pacific/Galapagos",
"id": 668
},
{
"name": "(UTC-09:00) Pacific/Gambier",
"id": 669
},
{
"name": "(UTC+11:00) Pacific/Guadalcanal",
"id": 670
},
{
"name": "(UTC+10:00) Pacific/Guam",
"id": 671
},
{
"name": "(UTC-10:00) Pacific/Honolulu",
"id": 672
},
{
"name": "(UTC-10:00) Pacific/Johnston",
"id": 673
},
{
"name": "(UTC+13:00) Pacific/Kanton",
"id": 674
},
{
"name": "(UTC+14:00) Pacific/Kiritimati",
"id": 675
},
{
"name": "(UTC+11:00) Pacific/Kosrae",
"id": 676
},
{
"name": "(UTC+12:00) Pacific/Kwajalein",
"id": 677
},
{
"name": "(UTC+12:00) Pacific/Majuro",
"id": 678
},
{
"name": "(UTC-9:30) Pacific/Marquesas",
"id": 679
},
{
"name": "(UTC-11:00) Pacific/Midway",
"id": 680
},
{
"name": "(UTC+12:00) Pacific/Nauru",
"id": 681
},
{
"name": "(UTC-11:00) Pacific/Niue",
"id": 682
},
{
"name": "(UTC+11:00) Pacific/Norfolk",
"id": 683
},
{
"name": "(UTC+11:00) Pacific/Noumea",
"id": 684
},
{
"name": "(UTC-11:00) Pacific/Pago_Pago",
"id": 685
},
{
"name": "(UTC+09:00) Pacific/Palau",
"id": 686
},
{
"name": "(UTC-08:00) Pacific/Pitcairn",
"id": 687
},
{
"name": "(UTC+11:00) Pacific/Pohnpei",
"id": 688
},
{
"name": "(UTC+11:00) Pacific/Ponape",
"id": 689
},
{
"name": "(UTC+10:00) Pacific/Port_Moresby",
"id": 690
},
{
"name": "(UTC-10:00) Pacific/Rarotonga",
"id": 691
},
{
"name": "(UTC+10:00) Pacific/Saipan",
"id": 692
},
{
"name": "(UTC-11:00) Pacific/Samoa",
"id": 693
},
{
"name": "(UTC-10:00) Pacific/Tahiti",
"id": 694
},
{
"name": "(UTC+12:00) Pacific/Tarawa",
"id": 695
},
{
"name": "(UTC+13:00) Pacific/Tongatapu",
"id": 696
},
{
"name": "(UTC+10:00) Pacific/Truk",
"id": 697
},
{
"name": "(UTC+12:00) Pacific/Wake",
"id": 698
},
{
"name": "(UTC+12:00) Pacific/Wallis",
"id": 699
},
{
"name": "(UTC+10:00) Pacific/Yap",
"id": 700
},
{
"name": "(UTC+01:00) Poland",
"id": 701
},
{
"name": "(UTC+00:00) Portugal",
"id": 702
},
{
"name": "(UTC+09:00) ROK",
"id": 703
},
{
"name": "(UTC+08:00) Singapore",
"id": 704
},
{
"name": "(UTC-04:00) SystemV/AST4",
"id": 705
},
{
"name": "(UTC-04:00) SystemV/AST4ADT",
"id": 706
},
{
"name": "(UTC-06:00) SystemV/CST6",
"id": 707
},
{
"name": "(UTC-06:00) SystemV/CST6CDT",
"id": 708
},
{
"name": "(UTC-05:00) SystemV/EST5",
"id": 709
},
{
"name": "(UTC-05:00) SystemV/EST5EDT",
"id": 710
},
{
"name": "(UTC-10:00) SystemV/HST10",
"id": 711
},
{
"name": "(UTC-07:00) SystemV/MST7",
"id": 712
},
{
"name": "(UTC-07:00) SystemV/MST7MDT",
"id": 713
},
{
"name": "(UTC-08:00) SystemV/PST8",
"id": 714
},
{
"name": "(UTC-08:00) SystemV/PST8PDT",
"id": 715
},
{
"name": "(UTC-09:00) SystemV/YST9",
"id": 716
},
{
"name": "(UTC-09:00) SystemV/YST9YDT",
"id": 717
},
{
"name": "(UTC+03:00) Turkey",
"id": 718
},
{
"name": "(UTC+00:00) UCT",
"id": 719
},
{
"name": "(UTC-09:00) US/Alaska",
"id": 720
},
{
"name": "(UTC-10:00) US/Aleutian",
"id": 721
},
{
"name": "(UTC-07:00) US/Arizona",
"id": 722
},
{
"name": "(UTC-06:00) US/Central",
"id": 723
},
{
"name": "(UTC-05:00) US/East-Indiana",
"id": 724
},
{
"name": "(UTC-05:00) US/Eastern",
"id": 725
},
{
"name": "(UTC-10:00) US/Hawaii",
"id": 726
},
{
"name": "(UTC-06:00) US/Indiana-Starke",
"id": 727
},
{
"name": "(UTC-05:00) US/Michigan",
"id": 728
},
{
"name": "(UTC-07:00) US/Mountain",
"id": 729
},
{
"name": "(UTC-08:00) US/Pacific",
"id": 730
},
{
"name": "(UTC-11:00) US/Samoa",
"id": 731
},
{
"name": "(UTC+00:00) UTC",
"id": 732
},
{
"name": "(UTC+00:00) Universal",
"id": 733
},
{
"name": "(UTC+03:00) W-SU",
"id": 734
},
{
"name": "(UTC+00:00) WET",
"id": 735
},
{
"name": "(UTC+00:00) Zulu",
"id": 736
}
],
"source_id": 2,
"id": 53,
"type": "DROPDOWN",
"config": {},
"field_name": "Time Zone"
}
],
[
{
"internal_name": "web_forms",
"is_active": true,
"source_id": 2,
"id": 54,
"type": "SINGLE_STRING",
"config": {
"max_length": 255
},
"field_name": "Web Form"
}
],
[
{
"internal_name": "recent_note",
"is_active": true,
"source_id": 2,
"id": 69,
"type": "TEXT",
"config": {},
"field_name": "Recent Note"
}
],
[
{
"internal_name": "open_deals",
"is_active": true,
"source_id": 2,
"id": 55,
"type": "DEAL",
"config": {},
"field_name": "Open Deals"
}
],
[
{
"internal_name": "closed_deals",
"is_active": true,
"source_id": 2,
"id": 56,
"type": "DEAL",
"config": {},
"field_name": "Closed Deals"
}
],
[
{
"internal_name": "won_deals",
"is_active": true,
"source_id": 2,
"id": 57,
"type": "DEAL",
"config": {},
"field_name": "Won Deals"
}
],
[
{
"internal_name": "lost_deals",
"is_active": true,
"source_id": 2,
"id": 58,
"type": "DEAL",
"config": {},
"field_name": "Lost Deals"
}
],
[
{
"internal_name": "last_activity_date",
"is_active": true,
"source_id": 2,
"id": 59,
"type": "DATE",
"config": {},
"field_name": "Last Activity Date"
}
],
[
{
"internal_name": "next_activity_date",
"is_active": true,
"source_id": 2,
"id": 60,
"type": "DATE",
"config": {},
"field_name": "Next Activity Date"
}
],
[
{
"internal_name": "last_activity_type",
"is_active": true,
"source_id": 2,
"id": 61,
"type": "SINGLE_STRING",
"config": {},
"field_name": "Last Activity Type"
}
],
[
{
"internal_name": "done_activities",
"is_active": true,
"source_id": 2,
"id": 62,
"type": "SINGLE_NUMBER",
"config": {},
"field_name": "Done Activities"
}
],
[
{
"internal_name": "upcoming_activities",
"is_active": true,
"source_id": 2,
"id": 63,
"type": "SINGLE_NUMBER",
"config": {},
"field_name": "Upcoming Activities"
}
],
[
{
"internal_name": "total_activities",
"is_active": true,
"source_id": 2,
"id": 64,
"type": "SINGLE_NUMBER",
"config": {},
"field_name": "Total Activities"
}
],
[
{
"internal_name": "email_message_count",
"is_active": true,
"source_id": 2,
"id": 65,
"type": "SINGLE_NUMBER",
"config": {},
"field_name": "Email Messages Count"
}
],
[
{
"internal_name": "last_email_received",
"is_active": true,
"source_id": 2,
"id": 66,
"type": "DATE_TIME",
"config": {},
"field_name": "Last Email Received"
}
],
[
{
"internal_name": "last_email_sent",
"is_active": true,
"source_id": 2,
"id": 67,
"type": "DATE_TIME",
"config": {},
"field_name": "Last Email Sent"
}
],
[
{
"internal_name": "cf_company_custom",
"is_active": true,
"source_id": 2,
"id": 178,
"type": "COMPANY",
"config": {},
"field_name": "company custom"
}
],
[
{
"internal_name": "cf_string",
"is_active": true,
"source_id": 2,
"id": 251,
"type": "TEXT",
"config": {
"max_length": 32000
},
"field_name": "string"
}
],
[
{
"internal_name": "cf_dropdown",
"is_active": true,
"options": [
{
"name": "one",
"id": 851
},
{
"name": "two",
"id": 852
}
],
"source_id": 2,
"id": 252,
"type": "DROPDOWN",
"config": {},
"field_name": "dropdown"
}
]
]
}
}
Contact Fields
| Field | Type | Required | Description |
|---|---|---|---|
first_name | string | Required | The contact's first name. Example: "john" |
last_name | string | Optional | The contact's last name / family name. Example: "wick" |
phones | array | Required | List of phone numbers associated with the contact. |
emails | array | Required | List of email addresses associated with the contact. |
address | array | Optional | Mailing or physical address of the contact. |
designation | string | Optional | Job title or role of the contact within their organization. Example: "Engineer" |
department | string | Optional | Department or business unit the contact belongs to. Example: "COD" |
sales_owner | number | Required | ID of the sales representative or owner assigned to this contact. Example: 71591 |
lifecycle_stage | number | Optional | ID representing the contact's current stage in the sales lifecycle (e.g. lead). Example: 79068 |
lifecycle_status | number or name | Optional | ID or name representing the contact's current status in the sales lifecycle (e.g. new). Example: 76755 |
company | number | Optional | 1. Existing Company: Provide the Company ID to associate an existing company with the deal, Example: 1174909.2. New Company* If the company does not already exist, provide the Company Creation Request Payload. The system will create a new company using the provided payload and associate the newly created company with the deal. Refer to the Create Company API Request Body for the supported fields and payload structure. |
source | number or string | Optional | ID or name representing where the contact originated (e.g. website, referral, campaign). Example: 10413591, Web |
territory | number | Optional | ID of the sales territory assigned to this contact. Example: 63063 |
tags | array<number> | Optional | List of tag IDs to categorize or label the contact. Multiple tags can be applied. Example: [71258] |
subscription_status | number or string | Optional | ID or name representing the contact's current email/marketing subscription status. Example: 10413615, subscribed |
subscription_types | array<number> | Optional | List of subscription type IDs and name the contact is enrolled in (e.g. newsletter, product updates). Example: [10413610, 10413611] |
facebook | string | Optional | URL of the contact's Facebook profile. Example: "https://www.facebook.com/johnsmith" |
twitter | string | Optional | URL of the contact's Twitter profile. Example: "https://twitter.com/ssscom" |
timezone | number or string | Optional | ID or name representing the contact's timezone. Refer to the Timezones reference list in your system. Example: 10412988 |
date_of_birth | datetime | Optional | Date of birth in ISO 8601 format. Example: "2026-07-01T12:55:00Z" |
Nested Object — phones
Each item in the phones array represents one phone number entry.
| Field | Type | Required | Description |
|---|---|---|---|
phone_type | number or string | Required | Enum ID or name indicating the phone type.1 work2 phone3 mobile4 whatsapp5 telegram6 personal7 other |
phone_number | string | Required | The phone number as a string. Include country code where applicable. Example: "10101010101010101" |
If an invalid field type is provided, the field type will default to Work.
Nested Object — emails
Each item in the emails array represents one email address entry.
| Field | Type | Required | Description |
|---|---|---|---|
email_type | number or string | Required | Enum ID or name indicating the email type.1 work2 personal3 home4 other |
email_value | string | Required | A valid email address string. Example: "sss@hvu.in" |
If an invalid field type is provided, the field type will default to Work.
Nested Object — address
A single object describing the contact's primary address.
| Field | Type | Required | Description |
|---|---|---|---|
address_line1 | string | Optional | Primary street address line. Example: "123 Maple Street" |
address_line2 | string | Optional | Secondary street address line. Example: "Suite 405, Downtown District" |
city | string | Optional | City of the contact's address. Example: "Austin" |
state | string | Optional | State or province of the contact's address. Example: "Texas" |
country | number or string | Optional | Numeric ID or name representing the country. Refer to the Countries reference list in your system. Example: 165, United States.Dropdown Option list - Overview |
zipcode | string | Optional | Postal / ZIP code of the address. Stored as string to preserve leading zeros. Example: "78701" |
Dropdown field types
Within the dropdown type, there are 3 ways options can be sourced:
- Static — fixed list of options.
- Hybrid — a fixed base list plus account-specific additions; use the static list below for the base options, and call the API for any extra ones.
- Dynamic — entirely account-specific; always fetch the options via API call.
| Field | Type | Required | Options |
|---|---|---|---|
| Subscription status | number or string | Optional | 1 Subscribed2 Unsubscribed3 Not Subscribed4 Reported As Spam5 Bounced |
| Subscription types | number or string | Optional | 1 Newsletter2 Promotional3 Product Updates4 Conference and Events5 Non-Marketing Emails From Our Company. |
| Unsubscribe reason | number or string | Optional | 1 I No Longer want to receive emails from you2 I receive too many emails from you3 The emails are inappropriate4 The emails are spam5 Others |
| Timezone | number | Optional | Time zone list - Overview |
Mandatory fields required to create a contact:
- First Name
- Sales Owner
- At least one of Email or Phone Number
Either Email or Phone Number must be provided while creating a contact.
If no value is provided for the following fields, the system automatically assigns their default values:
- Lifecycle Stage
- Lifecycle Stage Status
- Subscription Status
- Subscription Types
Dependent Fields
- Lifecycle Stage → Lost Reason
- When the Lifecycle Stage is set to Lost, the Lost Reason field becomes mandatory.
- The contact cannot be saved or updated until a Lost Reason is provided.
If a default value has been configured for any field under Modules & Fields, the system automatically populates that value when it is not included in the request.
Any custom or system field marked as Required in Modules & Fields must be included in the request. If a required field is missing, the API returns a validation error.
Custom Field Data Structure
{
"cf_custom_text_field": "custom text",
"cf_custom_large_txt_field": "sdkfj",
"cf_custom_number_field": 10,
"cf_custom_dropdown_field": 10413746,
"cf_custom_multiselect_field": [10413746, 10413747],
"cf_custom_owner_field": 71591,
"cf_custom_company_field": 121728,
"cf_custom_contact_field": 1186422,
"cf_custom_monetory_field": {
"currency": 1,
"value": 1.2345678901234568e12
},
"cf_custom_phone_field": [
{
"phone_type": 1,
"phone_number": "10101010101010101"
}
],
"cf_custom_email_field": [
{
"email_type": 2,
"email_value": "sss@hvu.in"
}
]
}