LogoLogo
Get support
  • Home
  • Make API
  • Make Bridge
  • White Label
  • MCP Server
  • Make API documentation
  • Getting started
    • Make API structure
    • HTTP methods
    • Making your first API request
    • Rate limiting
    • Resources
  • Authentication
    • Make roles and API scopes
    • Creating API token
    • Managing API token
    • Requesting an OAuth 2.0 client
    • OAuth 2.0 flow in the Make API
  • Pagination, sorting and filtering
    • Pagination and sorting
    • Filtering
  • Troubleshooting and error handling
    • HTTP status error codes
    • Troubleshooting
  • Client libraries
  • API Reference
    • Affiliate
    • Agents
    • Analytics
    • Audit logs
    • Cashier
    • Connections
    • Custom properties
    • Custom properties > Structure items
    • Data stores
    • Data stores > Data
    • Data structures
    • Devices
    • Devices > Incomings
    • Devices > Outgoing
    • Incomplete executions
    • Enums
    • Custom functions
    • General
    • Hooks
    • Hooks > Incomings
    • Hooks > Logs
    • Keys
    • Notifications
    • Organizations
    • Organizations > User organization roles
    • Remote procedures
    • Scenarios
    • Scenarios > Logs
    • Scenarios > Blueprints
    • Scenarios > Consumptions
    • Scenarios > Custom properties data
    • Scenarios folders
    • SDK Apps
    • SDK Apps > Invites
    • SDK Apps > Modules
    • SDK Apps > RPCs
    • SDK Apps > Functions
    • SDK Apps > Connections
    • SDK Apps > Webhooks
    • SSO certificates
    • Teams
    • Teams > User team roles
    • Templates
    • Templates > Public
    • Users
    • Users > Me
    • Users > API Tokens
    • Users > User team roles
    • Users > User team notifications
    • Users > User organization roles
    • Users > Roles
    • Users > Unread notifications
    • Users > User email preferences Mailhub
Powered by GitBook

Resources

  • Academy
  • Community
  • Help Center

Useful links

  • Support
  • Privacy Notice
  • Status Page
  • make.com

Follow us

  • LinkedIn
  • X (Twitter)
  • Facebook
  • Instagram

© 2025 make.com

On this page
Export as PDF
  1. API Reference

Enums

PreviousIncomplete executionsNextCustom functions

The parameters with a predefined set of values are called "enums." The enums endpoints list the mappings of a possible parameter values and the IDs of those values. For example, the endpoint /enums/timezones lists the timezone name and code, such as Europe/Berlin, and the timezoneId.

List module types

get

Gets the list of module types.

Authorizations
Responses
200
Successful response
application/json
get
GET /api/v2/enums/module-types HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "moduleTypes": [
    {
      "id": 2,
      "name": "transformer"
    },
    {
      "id": 3,
      "name": "router"
    },
    {
      "id": 5,
      "name": "listener"
    },
    {
      "id": 6,
      "name": "feeder"
    },
    {
      "id": 7,
      "name": "aggregator"
    },
    {
      "id": 8,
      "name": "directive"
    },
    {
      "id": 1,
      "name": "trigger"
    },
    {
      "id": 4,
      "name": "action"
    },
    {
      "id": 9,
      "name": "search"
    },
    {
      "id": 10,
      "name": "instant"
    },
    {
      "id": 11,
      "name": "responder"
    },
    {
      "id": 12,
      "name": "universal"
    }
  ]
}

List timezones

get

Gets the list of timezones and their timezoneId values.

Authorizations
Responses
200
Successful response
application/json
get
GET /api/v2/enums/timezones HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "timezones": [
    {
      "id": 226,
      "name": "(GMT-11:00) Pacific/Niue",
      "code": "Pacific/Niue",
      "offset": "-1100"
    },
    {
      "id": 27,
      "name": "(GMT-11:00) Pacific/Pago_Pago",
      "code": "Pacific/Pago_Pago",
      "offset": "-1100"
    },
    {
      "id": 328,
      "name": "(GMT-10:00) America/Adak",
      "code": "America/Adak",
      "offset": "-1000"
    },
    {
      "id": 329,
      "name": "(GMT-10:00) Pacific/Honolulu",
      "code": "Pacific/Honolulu",
      "offset": "-1000"
    },
    {
      "id": 101,
      "name": "(GMT-10:00) Pacific/Rarotonga",
      "code": "Pacific/Rarotonga",
      "offset": "-1000"
    },
    {
      "id": 231,
      "name": "(GMT-10:00) Pacific/Tahiti",
      "code": "Pacific/Tahiti",
      "offset": "-1000"
    },
    {
      "id": 232,
      "name": "(GMT-09:30) Pacific/Marquesas",
      "code": "Pacific/Marquesas",
      "offset": "-0930"
    },
    {
      "id": 323,
      "name": "(GMT-09:00) America/Anchorage",
      "code": "America/Anchorage",
      "offset": "-0900"
    },
    {
      "id": 324,
      "name": "(GMT-09:00) America/Juneau",
      "code": "America/Juneau",
      "offset": "-0900"
    },
    {
      "id": 327,
      "name": "(GMT-09:00) America/Nome",
      "code": "America/Nome",
      "offset": "-0900"
    },
    {
      "id": 325,
      "name": "(GMT-09:00) America/Sitka",
      "code": "America/Sitka",
      "offset": "-0900"
    },
    {
      "id": 326,
      "name": "(GMT-09:00) America/Yakutat",
      "code": "America/Yakutat",
      "offset": "-0900"
    },
    {
      "id": 233,
      "name": "(GMT-09:00) Pacific/Gambier",
      "code": "Pacific/Gambier",
      "offset": "-0900"
    },
    {
      "id": 97,
      "name": "(GMT-08:00) America/Dawson",
      "code": "America/Dawson",
      "offset": "-0800"
    },
    {
      "id": 321,
      "name": "(GMT-08:00) America/Los_Angeles",
      "code": "America/Los_Angeles",
      "offset": "-0800"
    },
    {
      "id": 322,
      "name": "(GMT-08:00) America/Metlakatla",
      "code": "America/Metlakatla",
      "offset": "-0800"
    },
    {
      "id": 212,
      "name": "(GMT-08:00) America/Santa_Isabel",
      "code": "America/Santa_Isabel",
      "offset": "-0800"
    },
    {
      "id": 211,
      "name": "(GMT-08:00) America/Tijuana",
      "code": "America/Tijuana",
      "offset": "-0800"
    },
    {
      "id": 95,
      "name": "(GMT-08:00) America/Vancouver",
      "code": "America/Vancouver",
      "offset": "-0800"
    },
    {
      "id": 96,
      "name": "(GMT-08:00) America/Whitehorse",
      "code": "America/Whitehorse",
      "offset": "-0800"
    },
    {
      "id": 240,
      "name": "(GMT-08:00) Pacific/Pitcairn",
      "code": "Pacific/Pitcairn",
      "offset": "-0800"
    },
    {
      "id": 319,
      "name": "(GMT-07:00) America/Boise",
      "code": "America/Boise",
      "offset": "-0700"
    },
    {
      "id": 89,
      "name": "(GMT-07:00) America/Cambridge_Bay",
      "code": "America/Cambridge_Bay",
      "offset": "-0700"
    },
    {
      "id": 208,
      "name": "(GMT-07:00) America/Chihuahua",
      "code": "America/Chihuahua",
      "offset": "-0700"
    },
    {
      "id": 92,
      "name": "(GMT-07:00) America/Creston",
      "code": "America/Creston",
      "offset": "-0700"
    },
    {
      "id": 93,
      "name": "(GMT-07:00) America/Dawson_Creek",
      "code": "America/Dawson_Creek",
      "offset": "-0700"
    },
    {
      "id": 318,
      "name": "(GMT-07:00) America/Denver",
      "code": "America/Denver",
      "offset": "-0700"
    },
    {
      "id": 88,
      "name": "(GMT-07:00) America/Edmonton",
      "code": "America/Edmonton",
      "offset": "-0700"
    },
    {
      "id": 94,
      "name": "(GMT-07:00) America/Fort_Nelson",
      "code": "America/Fort_Nelson",
      "offset": "-0700"
    },
    {
      "id": 210,
      "name": "(GMT-07:00) America/Hermosillo",
      "code": "America/Hermosillo",
      "offset": "-0700"
    },
    {
      "id": 91,
      "name": "(GMT-07:00) America/Inuvik",
      "code": "America/Inuvik",
      "offset": "-0700"
    },
    {
      "id": 207,
      "name": "(GMT-07:00) America/Mazatlan",
      "code": "America/Mazatlan",
      "offset": "-0700"
    },
    {
      "id": 209,
      "name": "(GMT-07:00) America/Ojinaga",
      "code": "America/Ojinaga",
      "offset": "-0700"
    },
    {
      "id": 320,
      "name": "(GMT-07:00) America/Phoenix",
      "code": "America/Phoenix",
      "offset": "-0700"
    },
    {
      "id": 90,
      "name": "(GMT-07:00) America/Yellowknife",
      "code": "America/Yellowknife",
      "offset": "-0700"
    },
    {
      "id": 213,
      "name": "(GMT-06:00) America/Bahia_Banderas",
      "code": "America/Bahia_Banderas",
      "offset": "-0600"
    },
    {
      "id": 69,
      "name": "(GMT-06:00) America/Belize",
      "code": "America/Belize",
      "offset": "-0600"
    },
    {
      "id": 203,
      "name": "(GMT-06:00) America/Cancun",
      "code": "America/Cancun",
      "offset": "-0600"
    },
    {
      "id": 311,
      "name": "(GMT-06:00) America/Chicago",
      "code": "America/Chicago",
      "offset": "-0600"
    },
    {
      "id": 107,
      "name": "(GMT-06:00) America/Costa_Rica",
      "code": "America/Costa_Rica",
      "offset": "-0600"
    },
    {
      "id": 281,
      "name": "(GMT-06:00) America/El_Salvador",
      "code": "America/El_Salvador",
      "offset": "-0600"
    },
    {
      "id": 145,
      "name": "(GMT-06:00) America/Guatemala",
      "code": "America/Guatemala",
      "offset": "-0600"
    },
    {
      "id": 313,
      "name": "(GMT-06:00) America/Indiana/Knox",
      "code": "America/Indiana/Knox",
      "offset": "-0600"
    },
    {
      "id": 312,
      "name": "(GMT-06:00) America/Indiana/Tell_City",
      "code": "America/Indiana/Tell_City",
      "offset": "-0600"
    },
    {
      "id": 221,
      "name": "(GMT-06:00) America/Managua",
      "code": "America/Managua",
      "offset": "-0600"
    },
    {
      "id": 206,
      "name": "(GMT-06:00) America/Matamoros",
      "code": "America/Matamoros",
      "offset": "-0600"
    },
    {
      "id": 314,
      "name": "(GMT-06:00) America/Menominee",
      "code": "America/Menominee",
      "offset": "-0600"
    },
    {
      "id": 204,
      "name": "(GMT-06:00) America/Merida",
      "code": "America/Merida",
      "offset": "-0600"
    },
    {
      "id": 202,
      "name": "(GMT-06:00) America/Mexico_City",
      "code": "America/Mexico_City",
      "offset": "-0600"
    },
    {
      "id": 205,
      "name": "(GMT-06:00) America/Monterrey",
      "code": "America/Monterrey",
      "offset": "-0600"
    },
    {
      "id": 317,
      "name": "(GMT-06:00) America/North_Dakota/Beulah",
      "code": "America/North_Dakota/Beulah",
      "offset": "-0600"
    },
    {
      "id": 315,
      "name": "(GMT-06:00) America/North_Dakota/Center",
      "code": "America/North_Dakota/Center",
      "offset": "-0600"
    },
    {
      "id": 316,
      "name": "(GMT-06:00) America/North_Dakota/New_Salem",
      "code": "America/North_Dakota/New_Salem",
      "offset": "-0600"
    },
    {
      "id": 85,
      "name": "(GMT-06:00) America/Rainy_River",
      "code": "America/Rainy_River",
      "offset": "-0600"
    },
    {
      "id": 83,
      "name": "(GMT-06:00) America/Rankin_Inlet",
      "code": "America/Rankin_Inlet",
      "offset": "-0600"
    },
    {
      "id": 86,
      "name": "(GMT-06:00) America/Regina",
      "code": "America/Regina",
      "offset": "-0600"
    },
    {
      "id": 81,
      "name": "(GMT-06:00) America/Resolute",
      "code": "America/Resolute",
      "offset": "-0600"
    },
    {
      "id": 87,
      "name": "(GMT-06:00) America/Swift_Current",
      "code": "America/Swift_Current",
      "offset": "-0600"
    },
    {
      "id": 150,
      "name": "(GMT-06:00) America/Tegucigalpa",
      "code": "America/Tegucigalpa",
      "offset": "-0600"
    },
    {
      "id": 84,
      "name": "(GMT-06:00) America/Winnipeg",
      "code": "America/Winnipeg",
      "offset": "-0600"
    },
    {
      "id": 103,
      "name": "(GMT-06:00) Pacific/Easter",
      "code": "Pacific/Easter",
      "offset": "-0600"
    },
    {
      "id": 119,
      "name": "(GMT-06:00) Pacific/Galapagos",
      "code": "Pacific/Galapagos",
      "offset": "-0600"
    },
    {
      "id": 82,
      "name": "(GMT-05:00) America/Atikokan",
      "code": "America/Atikokan",
      "offset": "-0500"
    },
    {
      "id": 106,
      "name": "(GMT-05:00) America/Bogota",
      "code": "America/Bogota",
      "offset": "-0500"
    },
    {
      "id": 175,
      "name": "(GMT-05:00) America/Cayman",
      "code": "America/Cayman",
      "offset": "-0500"
    },
    {
      "id": 302,
      "name": "(GMT-05:00) America/Detroit",
      "code": "America/Detroit",
      "offset": "-0500"
    },
    {
      "id": 64,
      "name": "(GMT-05:00) America/Eirunepe",
      "code": "America/Eirunepe",
      "offset": "-0500"
    },
    {
      "id": 283,
      "name": "(GMT-05:00) America/Grand_Turk",
      "code": "America/Grand_Turk",
      "offset": "-0500"
    },
    {
      "id": 118,
      "name": "(GMT-05:00) America/Guayaquil",
      "code": "America/Guayaquil",
      "offset": "-0500"
    },
    {
      "id": 108,
      "name": "(GMT-05:00) America/Havana",
      "code": "America/Havana",
      "offset": "-0500"
    },
    {
      "id": 305,
      "name": "(GMT-05:00) America/Indiana/Indianapolis",
      "code": "America/Indiana/Indianapolis",
      "offset": "-0500"
    },
    {
      "id": 308,
      "name": "(GMT-05:00) America/Indiana/Marengo",
      "code": "America/Indiana/Marengo",
      "offset": "-0500"
    },
    {
      "id": 309,
      "name": "(GMT-05:00) America/Indiana/Petersburg",
      "code": "America/Indiana/Petersburg",
      "offset": "-0500"
    },
    {
      "id": 310,
      "name": "(GMT-05:00) America/Indiana/Vevay",
      "code": "America/Indiana/Vevay",
      "offset": "-0500"
    },
    {
      "id": 306,
      "name": "(GMT-05:00) America/Indiana/Vincennes",
      "code": "America/Indiana/Vincennes",
      "offset": "-0500"
    },
    {
      "id": 307,
      "name": "(GMT-05:00) America/Indiana/Winamac",
      "code": "America/Indiana/Winamac",
      "offset": "-0500"
    },
    {
      "id": 79,
      "name": "(GMT-05:00) America/Iqaluit",
      "code": "America/Iqaluit",
      "offset": "-0500"
    },
    {
      "id": 165,
      "name": "(GMT-05:00) America/Jamaica",
      "code": "America/Jamaica",
      "offset": "-0500"
    },
    {
      "id": 303,
      "name": "(GMT-05:00) America/Kentucky/Louisville",
      "code": "America/Kentucky/Louisville",
      "offset": "-0500"
    },
    {
      "id": 304,
      "name": "(GMT-05:00) America/Kentucky/Monticello",
      "code": "America/Kentucky/Monticello",
      "offset": "-0500"
    },
    {
      "id": 230,
      "name": "(GMT-05:00) America/Lima",
      "code": "America/Lima",
      "offset": "-0500"
    },
    {
      "id": 66,
      "name": "(GMT-05:00) America/Nassau",
      "code": "America/Nassau",
      "offset": "-0500"
    },
    {
      "id": 301,
      "name": "(GMT-05:00) America/New_York",
      "code": "America/New_York",
      "offset": "-0500"
    },
    {
      "id": 77,
      "name": "(GMT-05:00) America/Nipigon",
      "code": "America/Nipigon",
      "offset": "-0500"
    },
    {
      "id": 229,
      "name": "(GMT-05:00) America/Panama",
      "code": "America/Panama",
      "offset": "-0500"
    },
    {
      "id": 80,
      "name": "(GMT-05:00) America/Pangnirtung",
      "code": "America/Pangnirtung",
      "offset": "-0500"
    },
    {
      "id": 151,
      "name": "(GMT-05:00) America/Port-au-Prince",
      "code": "America/Port-au-Prince",
      "offset": "-0500"
    },
    {
      "id": 65,
      "name": "(GMT-05:00) America/Rio_Branco",
      "code": "America/Rio_Branco",
      "offset": "-0500"
    },
    {
      "id": 78,
      "name": "(GMT-05:00) America/Thunder_Bay",
      "code": "America/Thunder_Bay",
      "offset": "-0500"
    },
    {
      "id": 76,
      "name": "(GMT-05:00) America/Toronto",
      "code": "America/Toronto",
      "offset": "-0500"
    },
    {
      "id": 333,
      "name": "(GMT-04:30) America/Caracas",
      "code": "America/Caracas",
      "offset": "-0430"
    },
    {
      "id": 248,
      "name": "(GMT-04:00) America/Asuncion",
      "code": "America/Asuncion",
      "offset": "-0400"
    },
    {
      "id": 43,
      "name": "(GMT-04:00) America/Barbados",
      "code": "America/Barbados",
      "offset": "-0400"
    },
    {
      "id": 75,
      "name": "(GMT-04:00) America/Blanc-Sablon",
      "code": "America/Blanc-Sablon",
      "offset": "-0400"
    },
    {
      "id": 62,
      "name": "(GMT-04:00) America/Boa_Vista",
      "code": "America/Boa_Vista",
      "offset": "-0400"
    },
    {
      "id": 58,
      "name": "(GMT-04:00) America/Campo_Grande",
      "code": "America/Campo_Grande",
      "offset": "-0400"
    },
    {
      "id": 59,
      "name": "(GMT-04:00) America/Cuiaba",
      "code": "America/Cuiaba",
      "offset": "-0400"
    },
    {
      "id": 110,
      "name": "(GMT-04:00) America/Curacao",
      "code": "America/Curacao",
      "offset": "-0400"
    },
    {
      "id": 72,
      "name": "(GMT-04:00) America/Glace_Bay",
      "code": "America/Glace_Bay",
      "offset": "-0400"
    },
    {
      "id": 74,
      "name": "(GMT-04:00) America/Goose_Bay",
      "code": "America/Goose_Bay",
      "offset": "-0400"
    },
    {
      "id": 148,
      "name": "(GMT-04:00) America/Guyana",
      "code": "America/Guyana",
      "offset": "-0400"
    },
    {
      "id": 71,
      "name": "(GMT-04:00) America/Halifax",
      "code": "America/Halifax",
      "offset": "-0400"
    },
    {
      "id": 49,
      "name": "(GMT-04:00) America/La_Paz",
      "code": "America/La_Paz",
      "offset": "-0400"
    },
    {
      "id": 63,
      "name": "(GMT-04:00) America/Manaus",
      "code": "America/Manaus",
      "offset": "-0400"
    },
    {
      "id": 198,
      "name": "(GMT-04:00) America/Martinique",
      "code": "America/Martinique",
      "offset": "-0400"
    },
    {
      "id": 73,
      "name": "(GMT-04:00) America/Moncton",
      "code": "America/Moncton",
      "offset": "-0400"
    },
    {
      "id": 294,
      "name": "(GMT-04:00) America/Port_of_Spain",
      "code": "America/Port_of_Spain",
      "offset": "-0400"
    },
    {
      "id": 61,
      "name": "(GMT-04:00) America/Porto_Velho",
      "code": "America/Porto_Velho",
      "offset": "-0400"
    },
    {
      "id": 241,
      "name": "(GMT-04:00) America/Puerto_Rico",
      "code": "America/Puerto_Rico",
      "offset": "-0400"
    },
    {
      "id": 116,
      "name": "(GMT-04:00) America/Santo_Domingo",
      "code": "America/Santo_Domingo",
      "offset": "-0400"
    },
    {
      "id": 142,
      "name": "(GMT-04:00) America/Thule",
      "code": "America/Thule",
      "offset": "-0400"
    },
    {
      "id": 7,
      "name": "(GMT-04:00) Antarctica/Palmer",
      "code": "Antarctica/Palmer",
      "offset": "-0400"
    },
    {
      "id": 47,
      "name": "(GMT-04:00) Atlantic/Bermuda",
      "code": "Atlantic/Bermuda",
      "offset": "-0400"
    },
    {
      "id": 70,
      "name": "(GMT-03:30) America/St_Johns",
      "code": "America/St_Johns",
      "offset": "-0330"
    },
    {
      "id": 54,
      "name": "(GMT-03:00) America/Araguaina",
      "code": "America/Araguaina",
      "offset": "-0300"
    },
    {
      "id": 15,
      "name": "(GMT-03:00) America/Argentina/Buenos_Aires",
      "code": "America/Argentina/Buenos_Aires",
      "offset": "-0300"
    },
    {
      "id": 20,
      "name": "(GMT-03:00) America/Argentina/Catamarca",
      "code": "America/Argentina/Catamarca",
      "offset": "-0300"
    },
    {
      "id": 16,
      "name": "(GMT-03:00) America/Argentina/Cordoba",
      "code": "America/Argentina/Cordoba",
      "offset": "-0300"
    },
    {
      "id": 18,
      "name": "(GMT-03:00) America/Argentina/Jujuy",
      "code": "America/Argentina/Jujuy",
      "offset": "-0300"
    },
    {
      "id": 21,
      "name": "(GMT-03:00) America/Argentina/La_Rioja",
      "code": "America/Argentina/La_Rioja",
      "offset": "-0300"
    },
    {
      "id": 23,
      "name": "(GMT-03:00) America/Argentina/Mendoza",
      "code": "America/Argentina/Mendoza",
      "offset": "-0300"
    },
    {
      "id": 25,
      "name": "(GMT-03:00) America/Argentina/Rio_Gallegos",
      "code": "America/Argentina/Rio_Gallegos",
      "offset": "-0300"
    },
    {
      "id": 17,
      "name": "(GMT-03:00) America/Argentina/Salta",
      "code": "America/Argentina/Salta",
      "offset": "-0300"
    },
    {
      "id": 22,
      "name": "(GMT-03:00) America/Argentina/San_Juan",
      "code": "America/Argentina/San_Juan",
      "offset": "-0300"
    },
    {
      "id": 24,
      "name": "(GMT-03:00) America/Argentina/San_Luis",
      "code": "America/Argentina/San_Luis",
      "offset": "-0300"
    },
    {
      "id": 19,
      "name": "(GMT-03:00) America/Argentina/Tucuman",
      "code": "America/Argentina/Tucuman",
      "offset": "-0300"
    },
    {
      "id": 26,
      "name": "(GMT-03:00) America/Argentina/Ushuaia",
      "code": "America/Argentina/Ushuaia",
      "offset": "-0300"
    },
    {
      "id": 56,
      "name": "(GMT-03:00) America/Bahia",
      "code": "America/Bahia",
      "offset": "-0300"
    },
    {
      "id": 51,
      "name": "(GMT-03:00) America/Belem",
      "code": "America/Belem",
      "offset": "-0300"
    },
    {
      "id": 136,
      "name": "(GMT-03:00) America/Cayenne",
      "code": "America/Cayenne",
      "offset": "-0300"
    },
    {
      "id": 52,
      "name": "(GMT-03:00) America/Fortaleza",
      "code": "America/Fortaleza",
      "offset": "-0300"
    },
    {
      "id": 139,
      "name": "(GMT-03:00) America/Godthab",
      "code": "America/Godthab",
      "offset": "-0300"
    },
    {
      "id": 55,
      "name": "(GMT-03:00) America/Maceio",
      "code": "America/Maceio",
      "offset": "-0300"
    },
    {
      "id": 239,
      "name": "(GMT-03:00) America/Miquelon",
      "code": "America/Miquelon",
      "offset": "-0300"
    },
    {
      "id": 330,
      "name": "(GMT-03:00) America/Montevideo",
      "code": "America/Montevideo",
      "offset": "-0300"
    },
    {
      "id": 280,
      "name": "(GMT-03:00) America/Paramaribo",
      "code": "America/Paramaribo",
      "offset": "-0300"
    },
    {
      "id": 53,
      "name": "(GMT-03:00) America/Recife",
      "code": "America/Recife",
      "offset": "-0300"
    },
    {
      "id": 60,
      "name": "(GMT-03:00) America/Santarem",
      "code": "America/Santarem",
      "offset": "-0300"
    },
    {
      "id": 102,
      "name": "(GMT-03:00) America/Santiago",
      "code": "America/Santiago",
      "offset": "-0300"
    },
    {
      "id": 57,
      "name": "(GMT-03:00) America/Sao_Paulo",
      "code": "America/Sao_Paulo",
      "offset": "-0300"
    },
    {
      "id": 6,
      "name": "(GMT-03:00) Antarctica/Rothera",
      "code": "Antarctica/Rothera",
      "offset": "-0300"
    },
    {
      "id": 128,
      "name": "(GMT-03:00) Atlantic/Stanley",
      "code": "Atlantic/Stanley",
      "offset": "-0300"
    },
    {
      "id": 50,
      "name": "(GMT-02:00) America/Noronha",
      "code": "America/Noronha",
      "offset": "-0200"
    },
    {
      "id": 144,
      "name": "(GMT-02:00) Atlantic/South_Georgia",
      "code": "Atlantic/South_Georgia",
      "offset": "-0200"
    },
    {
      "id": 141,
      "name": "(GMT-01:00) America/Scoresbysund",
      "code": "America/Scoresbysund",
      "offset": "-0100"
    },
    {
      "id": 246,
      "name": "(GMT-01:00) Atlantic/Azores",
      "code": "Atlantic/Azores",
      "offset": "-0100"
    },
    {
      "id": 109,
      "name": "(GMT-01:00) Atlantic/Cape_Verde",
      "code": "Atlantic/Cape_Verde",
      "offset": "-0100"
    },
    {
      "id": 100,
      "name": "(GMT+00:00) Africa/Abidjan",
      "code": "Africa/Abidjan",
      "offset": "+0000"
    },
    {
      "id": 137,
      "name": "(GMT+00:00) Africa/Accra",
      "code": "Africa/Accra",
      "offset": "+0000"
    },
    {
      "id": 147,
      "name": "(GMT+00:00) Africa/Bissau",
      "code": "Africa/Bissau",
      "offset": "+0000"
    },
    {
      "id": 188,
      "name": "(GMT+00:00) Africa/Casablanca",
      "code": "Africa/Casablanca",
      "offset": "+0000"
    },
    {
      "id": 122,
      "name": "(GMT+00:00) Africa/El_Aaiun",
      "code": "Africa/El_Aaiun",
      "offset": "+0000"
    },
    {
      "id": 183,
      "name": "(GMT+00:00) Africa/Monrovia",
      "code": "Africa/Monrovia",
      "offset": "+0000"
    },
    {
      "id": 140,
      "name": "(GMT+00:00) America/Danmarkshavn",
      "code": "America/Danmarkshavn",
      "offset": "+0000"
    },
    {
      "id": 14,
      "name": "(GMT+00:00) Antarctica/Troll",
      "code": "Antarctica/Troll",
      "offset": "+0000"
    },
    {
      "id": 125,
      "name": "(GMT+00:00) Atlantic/Canary",
      "code": "Atlantic/Canary",
      "offset": "+0000"
    },
    {
      "id": 132,
      "name": "(GMT+00:00) Atlantic/Faroe",
      "code": "Atlantic/Faroe",
      "offset": "+0000"
    },
    {
      "id": 245,
      "name": "(GMT+00:00) Atlantic/Madeira",
      "code": "Atlantic/Madeira",
      "offset": "+0000"
    },
    {
      "id": 163,
      "name": "(GMT+00:00) Atlantic/Reykjavik",
      "code": "Atlantic/Reykjavik",
      "offset": "+0000"
    },
    {
      "id": 157,
      "name": "(GMT+00:00) Europe/Dublin",
      "code": "Europe/Dublin",
      "offset": "+0000"
    },
    {
      "id": 244,
      "name": "(GMT+00:00) Europe/Lisbon",
      "code": "Europe/Lisbon",
      "offset": "+0000"
    },
    {
      "id": 134,
      "name": "(GMT+00:00) Europe/London",
      "code": "Europe/London",
      "offset": "+0000"
    },
    {
      "id": 117,
      "name": "(GMT+01:00) Africa/Algiers",
      "code": "Africa/Algiers",
      "offset": "+0100"
    },
    {
      "id": 124,
      "name": "(GMT+01:00) Africa/Ceuta",
      "code": "Africa/Ceuta",
      "offset": "+0100"
    },
    {
      "id": 220,
      "name": "(GMT+01:00) Africa/Lagos",
      "code": "Africa/Lagos",
      "offset": "+0100"
    },
    {
      "id": 284,
      "name": "(GMT+01:00) Africa/Ndjamena",
      "code": "Africa/Ndjamena",
      "offset": "+0100"
    },
    {
      "id": 291,
      "name": "(GMT+01:00) Africa/Tunis",
      "code": "Africa/Tunis",
      "offset": "+0100"
    },
    {
      "id": 217,
      "name": "(GMT+01:00) Africa/Windhoek",
      "code": "Africa/Windhoek",
      "offset": "+0100"
    },
    {
      "id": 222,
      "name": "(GMT+01:00) Europe/Amsterdam",
      "code": "Europe/Amsterdam",
      "offset": "+0100"
    },
    {
      "id": 1,
      "name": "(GMT+01:00) Europe/Andorra",
      "code": "Europe/Andorra",
      "offset": "+0100"
    },
    {
      "id": 252,
      "name": "(GMT+01:00) Europe/Belgrade",
      "code": "Europe/Belgrade",
      "offset": "+0100"
    },
    {
      "id": 114,
      "name": "(GMT+01:00) Europe/Berlin",
      "code": "Europe/Berlin",
      "offset": "+0100"
    },
    {
      "id": 45,
      "name": "(GMT+01:00) Europe/Brussels",
      "code": "Europe/Brussels",
      "offset": "+0100"
    },
    {
      "id": 152,
      "name": "(GMT+01:00) Europe/Budapest",
      "code": "Europe/Budapest",
      "offset": "+0100"
    },
    {
      "id": 115,
      "name": "(GMT+01:00) Europe/Copenhagen",
      "code": "Europe/Copenhagen",
      "offset": "+0100"
    },
    {
      "id": 138,
      "name": "(GMT+01:00) Europe/Gibraltar",
      "code": "Europe/Gibraltar",
      "offset": "+0100"
    },
    {
      "id": 185,
      "name": "(GMT+01:00) Europe/Luxembourg",
      "code": "Europe/Luxembourg",
      "offset": "+0100"
    },
    {
      "id": 123,
      "name": "(GMT+01:00) Europe/Madrid",
      "code": "Europe/Madrid",
      "offset": "+0100"
    },
    {
      "id": 199,
      "name": "(GMT+01:00) Europe/Malta",
      "code": "Europe/Malta",
      "offset": "+0100"
    },
    {
      "id": 189,
      "name": "(GMT+01:00) Europe/Monaco",
      "code": "Europe/Monaco",
      "offset": "+0100"
    },
    {
      "id": 223,
      "name": "(GMT+01:00) Europe/Oslo",
      "code": "Europe/Oslo",
      "offset": "+0100"
    },
    {
      "id": 133,
      "name": "(GMT+01:00) Europe/Paris",
      "code": "Europe/Paris",
      "offset": "+0100"
    },
    {
      "id": 113,
      "name": "(GMT+01:00) Europe/Prague",
      "code": "Europe/Prague",
      "offset": "+0100"
    },
    {
      "id": 164,
      "name": "(GMT+01:00) Europe/Rome",
      "code": "Europe/Rome",
      "offset": "+0100"
    },
    {
      "id": 278,
      "name": "(GMT+01:00) Europe/Stockholm",
      "code": "Europe/Stockholm",
      "offset": "+0100"
    },
    {
      "id": 4,
      "name": "(GMT+01:00) Europe/Tirane",
      "code": "Europe/Tirane",
      "offset": "+0100"
    },
    {
      "id": 28,
      "name": "(GMT+01:00) Europe/Vienna",
      "code": "Europe/Vienna",
      "offset": "+0100"
    },
    {
      "id": 238,
      "name": "(GMT+01:00) Europe/Warsaw",
      "code": "Europe/Warsaw",
      "offset": "+0100"
    },
    {
      "id": 99,
      "name": "(GMT+01:00) Europe/Zurich",
      "code": "Europe/Zurich",
      "offset": "+0100"
    },
    {
      "id": 121,
      "name": "(GMT+02:00) Africa/Cairo",
      "code": "Africa/Cairo",
      "offset": "+0200"
    },
    {
      "id": 338,
      "name": "(GMT+02:00) Africa/Johannesburg",
      "code": "Africa/Johannesburg",
      "offset": "+0200"
    },
    {
      "id": 216,
      "name": "(GMT+02:00) Africa/Maputo",
      "code": "Africa/Maputo",
      "offset": "+0200"
    },
    {
      "id": 187,
      "name": "(GMT+02:00) Africa/Tripoli",
      "code": "Africa/Tripoli",
      "offset": "+0200"
    },
    {
      "id": 166,
      "name": "(GMT+02:00) Asia/Amman",
      "code": "Asia/Amman",
      "offset": "+0200"
    },
    {
      "id": 181,
      "name": "(GMT+02:00) Asia/Beirut",
      "code": "Asia/Beirut",
      "offset": "+0200"
    },
    {
      "id": 282,
      "name": "(GMT+02:00) Asia/Damascus",
      "code": "Asia/Damascus",
      "offset": "+0200"
    },
    {
      "id": 242,
      "name": "(GMT+02:00) Asia/Gaza",
      "code": "Asia/Gaza",
      "offset": "+0200"
    },
    {
      "id": 243,
      "name": "(GMT+02:00) Asia/Hebron",
      "code": "Asia/Hebron",
      "offset": "+0200"
    },
    {
      "id": 158,
      "name": "(GMT+02:00) Asia/Jerusalem",
      "code": "Asia/Jerusalem",
      "offset": "+0200"
    },
    {
      "id": 112,
      "name": "(GMT+02:00) Asia/Nicosia",
      "code": "Asia/Nicosia",
      "offset": "+0200"
    },
    {
      "id": 143,
      "name": "(GMT+02:00) Europe/Athens",
      "code": "Europe/Athens",
      "offset": "+0200"
    },
    {
      "id": 251,
      "name": "(GMT+02:00) Europe/Bucharest",
      "code": "Europe/Bucharest",
      "offset": "+0200"
    },
    {
      "id": 190,
      "name": "(GMT+02:00) Europe/Chisinau",
      "code": "Europe/Chisinau",
      "offset": "+0200"
    },
    {
      "id": 126,
      "name": "(GMT+02:00) Europe/Helsinki",
      "code": "Europe/Helsinki",
      "offset": "+0200"
    },
    {
      "id": 293,
      "name": "(GMT+02:00) Europe/Istanbul",
      "code": "Europe/Istanbul",
      "offset": "+0200"
    },
    {
      "id": 253,
      "name": "(GMT+02:00) Europe/Kaliningrad",
      "code": "Europe/Kaliningrad",
      "offset": "+0200"
    },
    {
      "id": 297,
      "name": "(GMT+02:00) Europe/Kyiv",
      "code": "Europe/Kyiv",
      "offset": "+0200"
    },
    {
      "id": 186,
      "name": "(GMT+02:00) Europe/Riga",
      "code": "Europe/Riga",
      "offset": "+0200"
    },
    {
      "id": 46,
      "name": "(GMT+02:00) Europe/Sofia",
      "code": "Europe/Sofia",
      "offset": "+0200"
    },
    {
      "id": 120,
      "name": "(GMT+02:00) Europe/Tallinn",
      "code": "Europe/Tallinn",
      "offset": "+0200"
    },
    {
      "id": 298,
      "name": "(GMT+02:00) Europe/Uzhgorod",
      "code": "Europe/Uzhgorod",
      "offset": "+0200"
    },
    {
      "id": 184,
      "name": "(GMT+02:00) Europe/Vilnius",
      "code": "Europe/Vilnius",
      "offset": "+0200"
    },
    {
      "id": 299,
      "name": "(GMT+02:00) Europe/Zaporozhye",
      "code": "Europe/Zaporozhye",
      "offset": "+0200"
    },
    {
      "id": 277,
      "name": "(GMT+03:00) Africa/Khartoum",
      "code": "Africa/Khartoum",
      "offset": "+0300"
    },
    {
      "id": 168,
      "name": "(GMT+03:00) Africa/Nairobi",
      "code": "Africa/Nairobi",
      "offset": "+0300"
    },
    {
      "id": 13,
      "name": "(GMT+03:00) Antarctica/Syowa",
      "code": "Antarctica/Syowa",
      "offset": "+0300"
    },
    {
      "id": 161,
      "name": "(GMT+03:00) Asia/Baghdad",
      "code": "Asia/Baghdad",
      "offset": "+0300"
    },
    {
      "id": 249,
      "name": "(GMT+03:00) Asia/Qatar",
      "code": "Asia/Qatar",
      "offset": "+0300"
    },
    {
      "id": 274,
      "name": "(GMT+03:00) Asia/Riyadh",
      "code": "Asia/Riyadh",
      "offset": "+0300"
    },
    {
      "id": 68,
      "name": "(GMT+03:00) Europe/Minsk",
      "code": "Europe/Minsk",
      "offset": "+0300"
    },
    {
      "id": 254,
      "name": "(GMT+03:00) Europe/Moscow",
      "code": "Europe/Moscow",
      "offset": "+0300"
    },
    {
      "id": 255,
      "name": "(GMT+03:00) Europe/Simferopol",
      "code": "Europe/Simferopol",
      "offset": "+0300"
    },
    {
      "id": 256,
      "name": "(GMT+03:00) Europe/Volgograd",
      "code": "Europe/Volgograd",
      "offset": "+0300"
    },
    {
      "id": 162,
      "name": "(GMT+03:30) Asia/Tehran",
      "code": "Asia/Tehran",
      "offset": "+0330"
    },
    {
      "id": 42,
      "name": "(GMT+04:00) Asia/Baku",
      "code": "Asia/Baku",
      "offset": "+0400"
    },
    {
      "id": 2,
      "name": "(GMT+04:00) Asia/Dubai",
      "code": "Asia/Dubai",
      "offset": "+0400"
    },
    {
      "id": 135,
      "name": "(GMT+04:00) Asia/Tbilisi",
      "code": "Asia/Tbilisi",
      "offset": "+0400"
    },
    {
      "id": 5,
      "name": "(GMT+04:00) Asia/Yerevan",
      "code": "Asia/Yerevan",
      "offset": "+0400"
    },
    {
      "id": 257,
      "name": "(GMT+04:00) Europe/Samara",
      "code": "Europe/Samara",
      "offset": "+0400"
    },
    {
      "id": 276,
      "name": "(GMT+04:00) Indian/Mahe",
      "code": "Indian/Mahe",
      "offset": "+0400"
    },
    {
      "id": 200,
      "name": "(GMT+04:00) Indian/Mauritius",
      "code": "Indian/Mauritius",
      "offset": "+0400"
    },
    {
      "id": 250,
      "name": "(GMT+04:00) Indian/Reunion",
      "code": "Indian/Reunion",
      "offset": "+0400"
    },
    {
      "id": 3,
      "name": "(GMT+04:30) Asia/Kabul",
      "code": "Asia/Kabul",
      "offset": "+0430"
    },
    {
      "id": 9,
      "name": "(GMT+05:00) Antarctica/Davis",
      "code": "Antarctica/Davis",
      "offset": "+0500"
    },
    {
      "id": 8,
      "name": "(GMT+05:00) Antarctica/Mawson",
      "code": "Antarctica/Mawson",
      "offset": "+0500"
    },
    {
      "id": 179,
      "name": "(GMT+05:00) Asia/Aqtau",
      "code": "Asia/Aqtau",
      "offset": "+0500"
    },
    {
      "id": 178,
      "name": "(GMT+05:00) Asia/Aqtobe",
      "code": "Asia/Aqtobe",
      "offset": "+0500"
    },
    {
      "id": 290,
      "name": "(GMT+05:00) Asia/Ashgabat",
      "code": "Asia/Ashgabat",
      "offset": "+0500"
    },
    {
      "id": 287,
      "name": "(GMT+05:00) Asia/Dushanbe",
      "code": "Asia/Dushanbe",
      "offset": "+0500"
    },
    {
      "id": 237,
      "name": "(GMT+05:00) Asia/Karachi",
      "code": "Asia/Karachi",
      "offset": "+0500"
    },
    {
      "id": 180,
      "name": "(GMT+05:00) Asia/Oral",
      "code": "Asia/Oral",
      "offset": "+0500"
    },
    {
      "id": 331,
      "name": "(GMT+05:00) Asia/Samarkand",
      "code": "Asia/Samarkand",
      "offset": "+0500"
    },
    {
      "id": 332,
      "name": "(GMT+05:00) Asia/Tashkent",
      "code": "Asia/Tashkent",
      "offset": "+0500"
    },
    {
      "id": 258,
      "name": "(GMT+05:00) Asia/Yekaterinburg",
      "code": "Asia/Yekaterinburg",
      "offset": "+0500"
    },
    {
      "id": 285,
      "name": "(GMT+05:00) Indian/Kerguelen",
      "code": "Indian/Kerguelen",
      "offset": "+0500"
    },
    {
      "id": 201,
      "name": "(GMT+05:00) Indian/Maldives",
      "code": "Indian/Maldives",
      "offset": "+0500"
    },
    {
      "id": 182,
      "name": "(GMT+05:30) Asia/Colombo",
      "code": "Asia/Colombo",
      "offset": "+0530"
    },
    {
      "id": 159,
      "name": "(GMT+05:30) Asia/Kolkata",
      "code": "Asia/Kolkata",
      "offset": "+0530"
    },
    {
      "id": 224,
      "name": "(GMT+05:45) Asia/Kathmandu",
      "code": "Asia/Kathmandu",
      "offset": "+0545"
    },
    {
      "id": 11,
      "name": "(GMT+06:00) Antarctica/Vostok",
      "code": "Antarctica/Vostok",
      "offset": "+0600"
    },
    {
      "id": 176,
      "name": "(GMT+06:00) Asia/Almaty",
      "code": "Asia/Almaty",
      "offset": "+0600"
    },
    {
      "id": 169,
      "name": "(GMT+06:00) Asia/Bishkek",
      "code": "Asia/Bishkek",
      "offset": "+0600"
    },
    {
      "id": 44,
      "name": "(GMT+06:00) Asia/Dhaka",
      "code": "Asia/Dhaka",
      "offset": "+0600"
    },
    {
      "id": 260,
      "name": "(GMT+06:00) Asia/Novosibirsk",
      "code": "Asia/Novosibirsk",
      "offset": "+0600"
    },
    {
      "id": 259,
      "name": "(GMT+06:00) Asia/Omsk",
      "code": "Asia/Omsk",
      "offset": "+0600"
    },
    {
      "id": 177,
      "name": "(GMT+06:00) Asia/Qyzylorda",
      "code": "Asia/Qyzylorda",
      "offset": "+0600"
    },
    {
      "id": 67,
      "name": "(GMT+06:00) Asia/Thimphu",
      "code": "Asia/Thimphu",
      "offset": "+0600"
    },
    {
      "id": 160,
      "name": "(GMT+06:00) Indian/Chagos",
      "code": "Indian/Chagos",
      "offset": "+0600"
    },
    {
      "id": 193,
      "name": "(GMT+06:30) Asia/Rangoon",
      "code": "Asia/Rangoon",
      "offset": "+0630"
    },
    {
      "id": 98,
      "name": "(GMT+06:30) Indian/Cocos",
      "code": "Indian/Cocos",
      "offset": "+0630"
    },
    {
      "id": 286,
      "name": "(GMT+07:00) Asia/Bangkok",
      "code": "Asia/Bangkok",
      "offset": "+0700"
    },
    {
      "id": 334,
      "name": "(GMT+07:00) Asia/Ho_Chi_Minh",
      "code": "Asia/Ho_Chi_Minh",
      "offset": "+0700"
    },
    {
      "id": 195,
      "name": "(GMT+07:00) Asia/Hovd",
      "code": "Asia/Hovd",
      "offset": "+0700"
    },
    {
      "id": 153,
      "name": "(GMT+07:00) Asia/Jakarta",
      "code": "Asia/Jakarta",
      "offset": "+0700"
    },
    {
      "id": 262,
      "name": "(GMT+07:00) Asia/Krasnoyarsk",
      "code": "Asia/Krasnoyarsk",
      "offset": "+0700"
    },
    {
      "id": 261,
      "name": "(GMT+07:00) Asia/Novokuznetsk",
      "code": "Asia/Novokuznetsk",
      "offset": "+0700"
    },
    {
      "id": 154,
      "name": "(GMT+07:00) Asia/Pontianak",
      "code": "Asia/Pontianak",
      "offset": "+0700"
    },
    {
      "id": 111,
      "name": "(GMT+07:00) Indian/Christmas",
      "code": "Indian/Christmas",
      "offset": "+0700"
    },
    {
      "id": 48,
      "name": "(GMT+08:00) Asia/Brunei",
      "code": "Asia/Brunei",
      "offset": 800
    },
    {
      "id": 264,
      "name": "(GMT+08:00) Asia/Chita",
      "code": "Asia/Chita",
      "offset": 800
    },
    {
      "id": 196,
      "name": "(GMT+08:00) Asia/Choibalsan",
      "code": "Asia/Choibalsan",
      "offset": 800
    },
    {
      "id": 149,
      "name": "(GMT+08:00) Asia/Hong_Kong",
      "code": "Asia/Hong_Kong",
      "offset": 800
    },
    {
      "id": 263,
      "name": "(GMT+08:00) Asia/Irkutsk",
      "code": "Asia/Irkutsk",
      "offset": 800
    },
    {
      "id": 214,
      "name": "(GMT+08:00) Asia/Kuala_Lumpur",
      "code": "Asia/Kuala_Lumpur",
      "offset": 800
    },
    {
      "id": 215,
      "name": "(GMT+08:00) Asia/Kuching",
      "code": "Asia/Kuching",
      "offset": 800
    },
    {
      "id": 197,
      "name": "(GMT+08:00) Asia/Macau",
      "code": "Asia/Macau",
      "offset": 800
    },
    {
      "id": 155,
      "name": "(GMT+08:00) Asia/Makassar",
      "code": "Asia/Makassar",
      "offset": 800
    },
    {
      "id": 236,
      "name": "(GMT+08:00) Asia/Manila",
      "code": "Asia/Manila",
      "offset": 800
    },
    {
      "id": 104,
      "name": "(GMT+08:00) Asia/Shanghai",
      "code": "Asia/Shanghai",
      "offset": 800
    },
    {
      "id": 279,
      "name": "(GMT+08:00) Asia/Singapore",
      "code": "Asia/Singapore",
      "offset": 800
    },
    {
      "id": 296,
      "name": "(GMT+08:00) Asia/Taipei",
      "code": "Asia/Taipei",
      "offset": 800
    },
    {
      "id": 194,
      "name": "(GMT+08:00) Asia/Ulaanbaatar",
      "code": "Asia/Ulaanbaatar",
      "offset": 800
    },
    {
      "id": 105,
      "name": "(GMT+08:00) Asia/Urumqi",
      "code": "Asia/Urumqi",
      "offset": 800
    },
    {
      "id": 40,
      "name": "(GMT+08:00) Australia/Perth",
      "code": "Australia/Perth",
      "offset": 800
    },
    {
      "id": 173,
      "name": "(GMT+08:30) Asia/Pyongyang",
      "code": "Asia/Pyongyang",
      "offset": 830
    },
    {
      "id": 41,
      "name": "(GMT+08:45) Australia/Eucla",
      "code": "Australia/Eucla",
      "offset": 845
    },
    {
      "id": 289,
      "name": "(GMT+09:00) Asia/Dili",
      "code": "Asia/Dili",
      "offset": 900
    },
    {
      "id": 156,
      "name": "(GMT+09:00) Asia/Jayapura",
      "code": "Asia/Jayapura",
      "offset": 900
    },
    {
      "id": 266,
      "name": "(GMT+09:00) Asia/Khandyga",
      "code": "Asia/Khandyga",
      "offset": 900
    },
    {
      "id": 174,
      "name": "(GMT+09:00) Asia/Seoul",
      "code": "Asia/Seoul",
      "offset": 900
    },
    {
      "id": 167,
      "name": "(GMT+09:00) Asia/Tokyo",
      "code": "Asia/Tokyo",
      "offset": 900
    },
    {
      "id": 265,
      "name": "(GMT+09:00) Asia/Yakutsk",
      "code": "Asia/Yakutsk",
      "offset": 900
    },
    {
      "id": 247,
      "name": "(GMT+09:00) Pacific/Palau",
      "code": "Pacific/Palau",
      "offset": 900
    },
    {
      "id": 38,
      "name": "(GMT+09:30) Australia/Adelaide",
      "code": "Australia/Adelaide",
      "offset": 930
    },
    {
      "id": 35,
      "name": "(GMT+09:30) Australia/Broken_Hill",
      "code": "Australia/Broken_Hill",
      "offset": 930
    },
    {
      "id": 39,
      "name": "(GMT+09:30) Australia/Darwin",
      "code": "Australia/Darwin",
      "offset": 930
    },
    {
      "id": 12,
      "name": "(GMT+10:00) Antarctica/DumontDUrville",
      "code": "Antarctica/DumontDUrville",
      "offset": "+1000"
    },
    {
      "id": 270,
      "name": "(GMT+10:00) Asia/Magadan",
      "code": "Asia/Magadan",
      "offset": "+1000"
    },
    {
      "id": 269,
      "name": "(GMT+10:00) Asia/Ust-Nera",
      "code": "Asia/Ust-Nera",
      "offset": "+1000"
    },
    {
      "id": 267,
      "name": "(GMT+10:00) Asia/Vladivostok",
      "code": "Asia/Vladivostok",
      "offset": "+1000"
    },
    {
      "id": 36,
      "name": "(GMT+10:00) Australia/Brisbane",
      "code": "Australia/Brisbane",
      "offset": "+1000"
    },
    {
      "id": 32,
      "name": "(GMT+10:00) Australia/Currie",
      "code": "Australia/Currie",
      "offset": "+1000"
    },
    {
      "id": 31,
      "name": "(GMT+10:00) Australia/Hobart",
      "code": "Australia/Hobart",
      "offset": "+1000"
    },
    {
      "id": 37,
      "name": "(GMT+10:00) Australia/Lindeman",
      "code": "Australia/Lindeman",
      "offset": "+1000"
    },
    {
      "id": 33,
      "name": "(GMT+10:00) Australia/Melbourne",
      "code": "Australia/Melbourne",
      "offset": "+1000"
    },
    {
      "id": 34,
      "name": "(GMT+10:00) Australia/Sydney",
      "code": "Australia/Sydney",
      "offset": "+1000"
    },
    {
      "id": 129,
      "name": "(GMT+10:00) Pacific/Chuuk",
      "code": "Pacific/Chuuk",
      "offset": "+1000"
    },
    {
      "id": 146,
      "name": "(GMT+10:00) Pacific/Guam",
      "code": "Pacific/Guam",
      "offset": "+1000"
    },
    {
      "id": 234,
      "name": "(GMT+10:00) Pacific/Port_Moresby",
      "code": "Pacific/Port_Moresby",
      "offset": "+1000"
    },
    {
      "id": 29,
      "name": "(GMT+10:30) Australia/Lord_Howe",
      "code": "Australia/Lord_Howe",
      "offset": "+1030"
    },
    {
      "id": 10,
      "name": "(GMT+11:00) Antarctica/Casey",
      "code": "Antarctica/Casey",
      "offset": "+1100"
    },
    {
      "id": 30,
      "name": "(GMT+11:00) Antarctica/Macquarie",
      "code": "Antarctica/Macquarie",
      "offset": "+1100"
    },
    {
      "id": 268,
      "name": "(GMT+11:00) Asia/Sakhalin",
      "code": "Asia/Sakhalin",
      "offset": "+1100"
    },
    {
      "id": 271,
      "name": "(GMT+11:00) Asia/Srednekolymsk",
      "code": "Asia/Srednekolymsk",
      "offset": "+1100"
    },
    {
      "id": 235,
      "name": "(GMT+11:00) Pacific/Bougainville",
      "code": "Pacific/Bougainville",
      "offset": "+1100"
    },
    {
      "id": 335,
      "name": "(GMT+11:00) Pacific/Efate",
      "code": "Pacific/Efate",
      "offset": "+1100"
    },
    {
      "id": 275,
      "name": "(GMT+11:00) Pacific/Guadalcanal",
      "code": "Pacific/Guadalcanal",
      "offset": "+1100"
    },
    {
      "id": 131,
      "name": "(GMT+11:00) Pacific/Kosrae",
      "code": "Pacific/Kosrae",
      "offset": "+1100"
    },
    {
      "id": 218,
      "name": "(GMT+11:00) Pacific/Noumea",
      "code": "Pacific/Noumea",
      "offset": "+1100"
    },
    {
      "id": 130,
      "name": "(GMT+11:00) Pacific/Pohnpei",
      "code": "Pacific/Pohnpei",
      "offset": "+1100"
    },
    {
      "id": 219,
      "name": "(GMT+11:30) Pacific/Norfolk",
      "code": "Pacific/Norfolk",
      "offset": "+1130"
    },
    {
      "id": 273,
      "name": "(GMT+12:00) Asia/Anadyr",
      "code": "Asia/Anadyr",
      "offset": "+1200"
    },
    {
      "id": 272,
      "name": "(GMT+12:00) Asia/Kamchatka",
      "code": "Asia/Kamchatka",
      "offset": "+1200"
    },
    {
      "id": 227,
      "name": "(GMT+12:00) Pacific/Auckland",
      "code": "Pacific/Auckland",
      "offset": "+1200"
    },
    {
      "id": 127,
      "name": "(GMT+12:00) Pacific/Fiji",
      "code": "Pacific/Fiji",
      "offset": "+1200"
    },
    {
      "id": 295,
      "name": "(GMT+12:00) Pacific/Funafuti",
      "code": "Pacific/Funafuti",
      "offset": "+1200"
    },
    {
      "id": 192,
      "name": "(GMT+12:00) Pacific/Kwajalein",
      "code": "Pacific/Kwajalein",
      "offset": "+1200"
    },
    {
      "id": 191,
      "name": "(GMT+12:00) Pacific/Majuro",
      "code": "Pacific/Majuro",
      "offset": "+1200"
    },
    {
      "id": 225,
      "name": "(GMT+12:00) Pacific/Nauru",
      "code": "Pacific/Nauru",
      "offset": "+1200"
    },
    {
      "id": 170,
      "name": "(GMT+12:00) Pacific/Tarawa",
      "code": "Pacific/Tarawa",
      "offset": "+1200"
    },
    {
      "id": 300,
      "name": "(GMT+12:00) Pacific/Wake",
      "code": "Pacific/Wake",
      "offset": "+1200"
    },
    {
      "id": 336,
      "name": "(GMT+12:00) Pacific/Wallis",
      "code": "Pacific/Wallis",
      "offset": "+1200"
    },
    {
      "id": 228,
      "name": "(GMT+12:45) Pacific/Chatham",
      "code": "Pacific/Chatham",
      "offset": "+1245"
    },
    {
      "id": 337,
      "name": "(GMT+13:00) Pacific/Apia",
      "code": "Pacific/Apia",
      "offset": "+1300"
    },
    {
      "id": 171,
      "name": "(GMT+13:00) Pacific/Enderbury",
      "code": "Pacific/Enderbury",
      "offset": "+1300"
    },
    {
      "id": 288,
      "name": "(GMT+13:00) Pacific/Fakaofo",
      "code": "Pacific/Fakaofo",
      "offset": "+1300"
    },
    {
      "id": 292,
      "name": "(GMT+13:00) Pacific/Tongatapu",
      "code": "Pacific/Tongatapu",
      "offset": "+1300"
    },
    {
      "id": 172,
      "name": "(GMT+14:00) Pacific/Kiritimati",
      "code": "Pacific/Kiritimati",
      "offset": "+1400"
    }
  ]
}

List countries

get

Gets the list of countries and their countryId values in the id column. The countryId is a required parameter when you create a new organization with the API call POST /organizations.

Authorizations
Responses
200
Successful response
application/json
get
GET /api/v2/enums/countries HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "countries": [
    {
      "id": 4,
      "name": "Afghanistan",
      "code1": "AFG",
      "code2": "af"
    },
    {
      "id": 5,
      "name": "Åland Islands",
      "code1": "ALA",
      "code2": "ax"
    },
    {
      "id": 6,
      "name": "Albania",
      "code1": "ALB",
      "code2": "al"
    }
  ]
}

List locales

get

Gets the list of locales and their localeId values and locale codes.

Authorizations
Responses
200
Successful response
application/json
get
GET /api/v2/enums/locales HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "locales": [
    {
      "id": 1,
      "name": "Afrikaans",
      "code": "af",
      "angularCode": "af"
    },
    {
      "id": 96,
      "name": "Albanian",
      "code": "sq",
      "angularCode": "sq"
    },
    {
      "id": 8,
      "name": "Arabic",
      "code": "ar",
      "angularCode": "ar"
    },
    {
      "id": 2,
      "name": "Arabic (Algeria)",
      "code": "ar-dz",
      "angularCode": "ar-DZ"
    },
    {
      "id": 3,
      "name": "Arabic (Kuwait)",
      "code": "ar-kw",
      "angularCode": "ar-KW"
    },
    {
      "id": 4,
      "name": "Arabic (Libya)",
      "code": "ar-ly",
      "angularCode": "ar-LY"
    },
    {
      "id": 5,
      "name": "Arabic (Morocco)",
      "code": "ar-ma",
      "angularCode": "ar-MA"
    },
    {
      "id": 6,
      "name": "Arabic (Saudi Arabia)",
      "code": "ar-sa",
      "angularCode": "ar-SA"
    },
    {
      "id": 7,
      "name": "Arabic (Tunisia)",
      "code": "ar-tn",
      "angularCode": "ar-TN"
    },
    {
      "id": 54,
      "name": "Armenian (Armenia)",
      "code": "hy-am",
      "angularCode": "hy"
    },
    {
      "id": 9,
      "name": "Azerbaijani",
      "code": "az",
      "angularCode": "az"
    },
    {
      "id": 12,
      "name": "Bambara",
      "code": "bm",
      "angularCode": "bm"
    },
    {
      "id": 38,
      "name": "Basque",
      "code": "eu",
      "angularCode": "eu"
    },
    {
      "id": 10,
      "name": "Belarusian",
      "code": "be",
      "angularCode": "be"
    },
    {
      "id": 13,
      "name": "Bengali",
      "code": "bn",
      "angularCode": "bn"
    },
    {
      "id": 16,
      "name": "Bosnian",
      "code": "bs",
      "angularCode": "bs"
    },
    {
      "id": 11,
      "name": "Bulgarian",
      "code": "bg",
      "angularCode": "bg"
    },
    {
      "id": 79,
      "name": "Burmese",
      "code": "my",
      "angularCode": "my"
    },
    {
      "id": 17,
      "name": "Catalan",
      "code": "ca",
      "angularCode": "ca"
    },
    {
      "id": 112,
      "name": "Central Morocco Tamazight",
      "code": "tzm",
      "angularCode": "tzm"
    },
    {
      "id": 111,
      "name": "Central Morocco Tamazight (Latin)",
      "code": "tzm-latn",
      "angularCode": "tzm"
    },
    {
      "id": 121,
      "name": "Chinese - China",
      "code": "zh-cn",
      "angularCode": "zh-Hans"
    },
    {
      "id": 122,
      "name": "Chinese - Hong Kong SAR",
      "code": "zh-hk",
      "angularCode": "zh-Hant-HK"
    },
    {
      "id": 123,
      "name": "Chinese - Taiwan",
      "code": "zh-tw",
      "angularCode": "zh-Hant"
    },
    {
      "id": 52,
      "name": "Croatian",
      "code": "hr",
      "angularCode": "hr"
    },
    {
      "id": 18,
      "name": "Czech",
      "code": "cs",
      "angularCode": "cs"
    },
    {
      "id": 21,
      "name": "Danish",
      "code": "da",
      "angularCode": "da"
    },
    {
      "id": 25,
      "name": "Divehi",
      "code": "dv",
      "angularCode": "en-US"
    },
    {
      "id": 83,
      "name": "Dutch",
      "code": "nl",
      "angularCode": "nl"
    },
    {
      "id": 82,
      "name": "Dutch (Belgium)",
      "code": "nl-be",
      "angularCode": "nl-BE"
    },
    {
      "id": 27,
      "name": "English (Australia)",
      "code": "en-au",
      "angularCode": "en-AU"
    },
    {
      "id": 28,
      "name": "English (Canada)",
      "code": "en-ca",
      "angularCode": "en-CA"
    },
    {
      "id": 30,
      "name": "English (Ireland)",
      "code": "en-ie",
      "angularCode": "en-IE"
    },
    {
      "id": 32,
      "name": "English (New Zealand)",
      "code": "en-nz",
      "angularCode": "en-NZ"
    },
    {
      "id": 29,
      "name": "English (United Kingdom)",
      "code": "en-gb",
      "angularCode": "en-GB"
    },
    {
      "id": 19,
      "name": "English (United States)",
      "code": "en-us",
      "angularCode": "en-US"
    },
    {
      "id": 33,
      "name": "Esperanto",
      "code": "eo",
      "angularCode": "eo"
    },
    {
      "id": 37,
      "name": "Estonian",
      "code": "et",
      "angularCode": "et"
    },
    {
      "id": 41,
      "name": "Faroese",
      "code": "fo",
      "angularCode": "fo"
    },
    {
      "id": 40,
      "name": "Finnish",
      "code": "fi",
      "angularCode": "fi"
    },
    {
      "id": 44,
      "name": "French",
      "code": "fr",
      "angularCode": "fr"
    },
    {
      "id": 42,
      "name": "French (Canada)",
      "code": "fr-ca",
      "angularCode": "fr-CA"
    },
    {
      "id": 43,
      "name": "French (Switzerland)",
      "code": "fr-ch",
      "angularCode": "fr-CH"
    },
    {
      "id": 46,
      "name": "Gaelic",
      "code": "gd",
      "angularCode": "gd"
    },
    {
      "id": 47,
      "name": "Galician",
      "code": "gl",
      "angularCode": "gl"
    },
    {
      "id": 60,
      "name": "Georgian",
      "code": "ka",
      "angularCode": "ka"
    },
    {
      "id": 24,
      "name": "German",
      "code": "de",
      "angularCode": "de"
    },
    {
      "id": 22,
      "name": "German (Austria)",
      "code": "de-at",
      "angularCode": "de-AT"
    },
    {
      "id": 23,
      "name": "German (Switzerland)",
      "code": "de-ch",
      "angularCode": "de-CH"
    },
    {
      "id": 26,
      "name": "Greek",
      "code": "el",
      "angularCode": "el"
    },
    {
      "id": 49,
      "name": "Gujarati",
      "code": "gu",
      "angularCode": "gu"
    },
    {
      "id": 50,
      "name": "Hebrew",
      "code": "he",
      "angularCode": "he"
    },
    {
      "id": 51,
      "name": "Hindi",
      "code": "hi",
      "angularCode": "hi"
    },
    {
      "id": 53,
      "name": "Hungarian",
      "code": "hu",
      "angularCode": "hu"
    },
    {
      "id": 56,
      "name": "Icelandic",
      "code": "is",
      "angularCode": "is"
    },
    {
      "id": 55,
      "name": "Indonesian",
      "code": "id",
      "angularCode": "id"
    },
    {
      "id": 57,
      "name": "Italian",
      "code": "it",
      "angularCode": "it"
    },
    {
      "id": 58,
      "name": "Japanese",
      "code": "ja",
      "angularCode": "ja"
    },
    {
      "id": 63,
      "name": "Kannada",
      "code": "kn",
      "angularCode": "kn"
    },
    {
      "id": 61,
      "name": "Kazakh",
      "code": "kk",
      "angularCode": "kk"
    },
    {
      "id": 62,
      "name": "Khmer",
      "code": "km",
      "angularCode": "km"
    },
    {
      "id": 64,
      "name": "Korean",
      "code": "ko",
      "angularCode": "ko"
    },
    {
      "id": 67,
      "name": "Lao",
      "code": "lo",
      "angularCode": "lo"
    },
    {
      "id": 69,
      "name": "Latvian",
      "code": "lv",
      "angularCode": "lv"
    },
    {
      "id": 68,
      "name": "Lithuanian",
      "code": "lt",
      "angularCode": "lt"
    },
    {
      "id": 72,
      "name": "Macedonian",
      "code": "mk",
      "angularCode": "mk"
    },
    {
      "id": 77,
      "name": "Malay",
      "code": "ms",
      "angularCode": "ms"
    },
    {
      "id": 73,
      "name": "Malayalam",
      "code": "ml",
      "angularCode": "ml"
    },
    {
      "id": 76,
      "name": "Malay (Malaysia)",
      "code": "ms-my",
      "angularCode": "ms"
    },
    {
      "id": 78,
      "name": "Maltese",
      "code": "mt",
      "angularCode": "mt"
    },
    {
      "id": 75,
      "name": "Marathi",
      "code": "mr",
      "angularCode": "mr"
    },
    {
      "id": 71,
      "name": "Maroi",
      "code": "mi",
      "angularCode": "mi"
    },
    {
      "id": 74,
      "name": "Mongolian",
      "code": "mn",
      "angularCode": "mn"
    },
    {
      "id": 81,
      "name": "Nepali",
      "code": "ne",
      "angularCode": "ne"
    },
    {
      "id": 80,
      "name": "Norwegian Bokmål",
      "code": "nb",
      "angularCode": "nb"
    },
    {
      "id": 84,
      "name": "Norwegian Nynorsk",
      "code": "nn",
      "angularCode": "nn"
    },
    {
      "id": 39,
      "name": "Persian",
      "code": "fa",
      "angularCode": "fa"
    },
    {
      "id": 86,
      "name": "Polish",
      "code": "pl",
      "angularCode": "pl"
    },
    {
      "id": 88,
      "name": "Portuguese",
      "code": "pt",
      "angularCode": "pt"
    },
    {
      "id": 87,
      "name": "Portuguese (Brazil)",
      "code": "pt-br",
      "angularCode": "pt"
    },
    {
      "id": 85,
      "name": "Punjabi",
      "code": "pa",
      "angularCode": "pa"
    },
    {
      "id": 89,
      "name": "Romanian",
      "code": "ro",
      "angularCode": "ro"
    },
    {
      "id": 90,
      "name": "Russian",
      "code": "ru",
      "angularCode": "ru"
    },
    {
      "id": 98,
      "name": "Serbian",
      "code": "sr",
      "angularCode": "sr"
    },
    {
      "id": 97,
      "name": "Serbian (Cyrillic)",
      "code": "sr-cyrl",
      "angularCode": "sr-Cyrl"
    },
    {
      "id": 91,
      "name": "Sindhi",
      "code": "sd",
      "angularCode": "sd"
    },
    {
      "id": 93,
      "name": "Sinhala",
      "code": "si",
      "angularCode": "si"
    },
    {
      "id": 94,
      "name": "Slovak",
      "code": "sk",
      "angularCode": "sk"
    },
    {
      "id": 95,
      "name": "Slovenian",
      "code": "sl",
      "angularCode": "sl"
    },
    {
      "id": 36,
      "name": "Spanish",
      "code": "es",
      "angularCode": "es"
    },
    {
      "id": 34,
      "name": "Spanish (Dominican Republic)",
      "code": "es-do",
      "angularCode": "es-DO"
    },
    {
      "id": 35,
      "name": "Spanish (United States)",
      "code": "es-us",
      "angularCode": "es-US"
    },
    {
      "id": 101,
      "name": "Swahili",
      "code": "sw",
      "angularCode": "sw"
    },
    {
      "id": 100,
      "name": "Swedish",
      "code": "sv",
      "angularCode": "sv"
    },
    {
      "id": 105,
      "name": "Tajik",
      "code": "tg",
      "angularCode": "tg"
    },
    {
      "id": 102,
      "name": "Tamil",
      "code": "ta",
      "angularCode": "ta"
    },
    {
      "id": 103,
      "name": "Telugu",
      "code": "te",
      "angularCode": "te"
    },
    {
      "id": 106,
      "name": "Thai",
      "code": "th",
      "angularCode": "th"
    },
    {
      "id": 14,
      "name": "Tibetan",
      "code": "bo",
      "angularCode": "bo"
    },
    {
      "id": 109,
      "name": "Turkish",
      "code": "tr",
      "angularCode": "tr"
    },
    {
      "id": 114,
      "name": "Ukrainian",
      "code": "uk",
      "angularCode": "uk"
    },
    {
      "id": 115,
      "name": "Urdu",
      "code": "ur",
      "angularCode": "ur"
    },
    {
      "id": 117,
      "name": "Uzbek",
      "code": "uz",
      "angularCode": "uz"
    },
    {
      "id": 116,
      "name": "Uzbek (Latin)",
      "code": "uz-latn",
      "angularCode": "uz-Latn"
    },
    {
      "id": 118,
      "name": "Vietnamese",
      "code": "vi",
      "angularCode": "vi"
    },
    {
      "id": 20,
      "name": "Welsh",
      "code": "cy",
      "angularCode": "cy"
    },
    {
      "id": 120,
      "name": "Yoruba",
      "code": "yo",
      "angularCode": "yo"
    }
  ]
}

List languages

get

Gets the list of languages and their language codes.

Authorizations
Query parameters
localizedbooleanOptional

When set to true, the response contains localized language names, for example -- German: Deutch or Czech: Čeština. This setting limits the number of returned languages to those that have defined their localized name. The default value is false.

Example: true
Responses
200
Successful response
application/json
get
GET /api/v2/enums/languages HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "languages": [
    {
      "code": "ab",
      "name": "Abkhazian"
    },
    {
      "code": "aa",
      "name": "Afar"
    },
    {
      "code": "af",
      "name": "Afrikaans"
    },
    {
      "code": "ak",
      "name": "Akan"
    },
    {
      "code": "sq",
      "name": "Albanian"
    },
    {
      "code": "am",
      "name": "Amharic"
    },
    {
      "code": "ar",
      "name": "Arabic"
    },
    {
      "code": "an",
      "name": "Aragonese"
    },
    {
      "code": "hy",
      "name": "Armenian"
    },
    {
      "code": "as",
      "name": "Assamese"
    },
    {
      "code": "av",
      "name": "Avaric"
    },
    {
      "code": "ae",
      "name": "Avestan"
    },
    {
      "code": "ay",
      "name": "Aymara"
    },
    {
      "code": "az",
      "name": "Azerbaijani"
    },
    {
      "code": "bm",
      "name": "Bambara"
    },
    {
      "code": "ba",
      "name": "Bashkir"
    },
    {
      "code": "eu",
      "name": "Basque"
    },
    {
      "code": "be",
      "name": "Belarusian"
    },
    {
      "code": "bn",
      "name": "Bengali"
    },
    {
      "code": "bh",
      "name": "Bihari languages"
    },
    {
      "code": "bi",
      "name": "Bislama"
    },
    {
      "code": "nb",
      "name": "Bokmål, Norwegian; Norwegian Bokmål"
    },
    {
      "code": "bs",
      "name": "Bosnian"
    },
    {
      "code": "br",
      "name": "Breton"
    },
    {
      "code": "bg",
      "name": "Bulgarian"
    },
    {
      "code": "my",
      "name": "Burmese"
    },
    {
      "code": "ca",
      "name": "Catalan; Valencian"
    },
    {
      "code": "km",
      "name": "Central Khmer"
    },
    {
      "code": "ch",
      "name": "Chamorro"
    },
    {
      "code": "ce",
      "name": "Chechen"
    },
    {
      "code": "ny",
      "name": "Chichewa; Chewa; Nyanja"
    },
    {
      "code": "zh",
      "name": "Chinese"
    },
    {
      "code": "cu",
      "name": "Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic"
    },
    {
      "code": "cv",
      "name": "Chuvash"
    },
    {
      "code": "kw",
      "name": "Cornish"
    },
    {
      "code": "co",
      "name": "Corsican"
    },
    {
      "code": "cr",
      "name": "Cree"
    },
    {
      "code": "hr",
      "name": "Croatian"
    },
    {
      "code": "cs",
      "name": "Czech"
    },
    {
      "code": "da",
      "name": "Danish"
    },
    {
      "code": "dv",
      "name": "Divehi; Dhivehi; Maldivian"
    },
    {
      "code": "nl",
      "name": "Dutch; Flemish"
    },
    {
      "code": "dz",
      "name": "Dzongkha"
    },
    {
      "code": "en",
      "name": "English"
    },
    {
      "code": "eo",
      "name": "Esperanto"
    },
    {
      "code": "et",
      "name": "Estonian"
    },
    {
      "code": "ee",
      "name": "Ewe"
    },
    {
      "code": "fo",
      "name": "Faroese"
    },
    {
      "code": "fj",
      "name": "Fijian"
    },
    {
      "code": "fi",
      "name": "Finnish"
    },
    {
      "code": "fr",
      "name": "French"
    },
    {
      "code": "ff",
      "name": "Fulah"
    },
    {
      "code": "gd",
      "name": "Gaelic; Scottish Gaelic"
    },
    {
      "code": "gl",
      "name": "Galician"
    },
    {
      "code": "lg",
      "name": "Ganda"
    },
    {
      "code": "ka",
      "name": "Georgian"
    },
    {
      "code": "de",
      "name": "German"
    },
    {
      "code": "el",
      "name": "Greek, Modern (1453-)"
    },
    {
      "code": "gn",
      "name": "Guarani"
    },
    {
      "code": "gu",
      "name": "Gujarati"
    },
    {
      "code": "ht",
      "name": "Haitian; Haitian Creole"
    },
    {
      "code": "ha",
      "name": "Hausa"
    },
    {
      "code": "he",
      "name": "Hebrew"
    },
    {
      "code": "hz",
      "name": "Herero"
    },
    {
      "code": "hi",
      "name": "Hindi"
    },
    {
      "code": "ho",
      "name": "Hiri Motu"
    },
    {
      "code": "hu",
      "name": "Hungarian"
    },
    {
      "code": "is",
      "name": "Icelandic"
    },
    {
      "code": "io",
      "name": "Ido"
    },
    {
      "code": "ig",
      "name": "Igbo"
    },
    {
      "code": "id",
      "name": "Indonesian"
    },
    {
      "code": "ia",
      "name": "Interlingua (International Auxiliary Language Association)"
    },
    {
      "code": "ie",
      "name": "Interlingue; Occidental"
    },
    {
      "code": "iu",
      "name": "Inuktitut"
    },
    {
      "code": "ik",
      "name": "Inupiaq"
    },
    {
      "code": "ga",
      "name": "Irish"
    },
    {
      "code": "it",
      "name": "Italian"
    },
    {
      "code": "ja",
      "name": "Japanese"
    },
    {
      "code": "jv",
      "name": "Javanese"
    },
    {
      "code": "kl",
      "name": "Kalaallisut; Greenlandic"
    },
    {
      "code": "kn",
      "name": "Kannada"
    },
    {
      "code": "kr",
      "name": "Kanuri"
    },
    {
      "code": "ks",
      "name": "Kashmiri"
    },
    {
      "code": "kk",
      "name": "Kazakh"
    },
    {
      "code": "ki",
      "name": "Kikuyu; Gikuyu"
    },
    {
      "code": "rw",
      "name": "Kinyarwanda"
    },
    {
      "code": "ky",
      "name": "Kirghiz; Kyrgyz"
    },
    {
      "code": "kv",
      "name": "Komi"
    },
    {
      "code": "kg",
      "name": "Kongo"
    },
    {
      "code": "ko",
      "name": "Korean"
    },
    {
      "code": "kj",
      "name": "Kuanyama; Kwanyama"
    },
    {
      "code": "ku",
      "name": "Kurdish"
    },
    {
      "code": "lo",
      "name": "Lao"
    },
    {
      "code": "la",
      "name": "Latin"
    },
    {
      "code": "lv",
      "name": "Latvian"
    },
    {
      "code": "li",
      "name": "Limburgan; Limburger; Limburgish"
    },
    {
      "code": "ln",
      "name": "Lingala"
    },
    {
      "code": "lt",
      "name": "Lithuanian"
    },
    {
      "code": "lu",
      "name": "Luba-Katanga"
    },
    {
      "code": "lb",
      "name": "Luxembourgish; Letzeburgesch"
    },
    {
      "code": "mk",
      "name": "Macedonian"
    },
    {
      "code": "mg",
      "name": "Malagasy"
    },
    {
      "code": "ms",
      "name": "Malay"
    },
    {
      "code": "ml",
      "name": "Malayalam"
    },
    {
      "code": "mt",
      "name": "Maltese"
    },
    {
      "code": "gv",
      "name": "Manx"
    },
    {
      "code": "mi",
      "name": "Maori"
    },
    {
      "code": "mr",
      "name": "Marathi"
    },
    {
      "code": "mh",
      "name": "Marshallese"
    },
    {
      "code": "mn",
      "name": "Mongolian"
    },
    {
      "code": "na",
      "name": "Nauru"
    },
    {
      "code": "nv",
      "name": "Navajo; Navaho"
    },
    {
      "code": "nd",
      "name": "Ndebele, North; North Ndebele"
    },
    {
      "code": "nr",
      "name": "Ndebele, South; South Ndebele"
    },
    {
      "code": "ng",
      "name": "Ndonga"
    },
    {
      "code": "ne",
      "name": "Nepali"
    },
    {
      "code": "se",
      "name": "Northern Sami"
    },
    {
      "code": "no",
      "name": "Norwegian"
    },
    {
      "code": "nn",
      "name": "Norwegian Nynorsk; Nynorsk, Norwegian"
    },
    {
      "code": "oc",
      "name": "Occitan (post 1500); Provençal"
    },
    {
      "code": "oj",
      "name": "Ojibwa"
    },
    {
      "code": "or",
      "name": "Oriya"
    },
    {
      "code": "om",
      "name": "Oromo"
    },
    {
      "code": "os",
      "name": "Ossetian; Ossetic"
    },
    {
      "code": "pi",
      "name": "Pali"
    },
    {
      "code": "pa",
      "name": "Panjabi; Punjabi"
    },
    {
      "code": "fa",
      "name": "Persian"
    },
    {
      "code": "pl",
      "name": "Polish"
    },
    {
      "code": "pt",
      "name": "Portuguese"
    },
    {
      "code": "ps",
      "name": "Pushto; Pashto"
    },
    {
      "code": "qu",
      "name": "Quechua"
    },
    {
      "code": "ro",
      "name": "Romanian; Moldavian; Moldovan"
    },
    {
      "code": "rm",
      "name": "Romansh"
    },
    {
      "code": "rn",
      "name": "Rundi"
    },
    {
      "code": "ru",
      "name": "Russian"
    },
    {
      "code": "sm",
      "name": "Samoan"
    },
    {
      "code": "sg",
      "name": "Sango"
    },
    {
      "code": "sa",
      "name": "Sanskrit"
    },
    {
      "code": "sc",
      "name": "Sardinian"
    },
    {
      "code": "sr",
      "name": "Serbian"
    },
    {
      "code": "sn",
      "name": "Shona"
    },
    {
      "code": "ii",
      "name": "Sichuan Yi; Nuosu"
    },
    {
      "code": "sd",
      "name": "Sindhi"
    },
    {
      "code": "si",
      "name": "Sinhala; Sinhalese"
    },
    {
      "code": "sk",
      "name": "Slovak"
    },
    {
      "code": "sl",
      "name": "Slovenian"
    },
    {
      "code": "so",
      "name": "Somali"
    },
    {
      "code": "st",
      "name": "Sotho, Southern"
    },
    {
      "code": "es",
      "name": "Spanish; Castilian"
    },
    {
      "code": "su",
      "name": "Sundanese"
    },
    {
      "code": "sw",
      "name": "Swahili"
    },
    {
      "code": "ss",
      "name": "Swati"
    },
    {
      "code": "sv",
      "name": "Swedish"
    },
    {
      "code": "tl",
      "name": "Tagalog"
    },
    {
      "code": "ty",
      "name": "Tahitian"
    },
    {
      "code": "tg",
      "name": "Tajik"
    },
    {
      "code": "ta",
      "name": "Tamil"
    },
    {
      "code": "tt",
      "name": "Tatar"
    },
    {
      "code": "te",
      "name": "Telugu"
    },
    {
      "code": "th",
      "name": "Thai"
    },
    {
      "code": "bo",
      "name": "Tibetan"
    },
    {
      "code": "ti",
      "name": "Tigrinya"
    },
    {
      "code": "to",
      "name": "Tonga (Tonga Islands)"
    },
    {
      "code": "ts",
      "name": "Tsonga"
    },
    {
      "code": "tn",
      "name": "Tswana"
    },
    {
      "code": "tr",
      "name": "Turkish"
    },
    {
      "code": "tk",
      "name": "Turkmen"
    },
    {
      "code": "tw",
      "name": "Twi"
    },
    {
      "code": "ug",
      "name": "Uighur; Uyghur"
    },
    {
      "code": "uk",
      "name": "Ukrainian"
    },
    {
      "code": "ur",
      "name": "Urdu"
    },
    {
      "code": "uz",
      "name": "Uzbek"
    },
    {
      "code": "ve",
      "name": "Venda"
    },
    {
      "code": "vi",
      "name": "Vietnamese"
    },
    {
      "code": "vo",
      "name": "Volapük"
    },
    {
      "code": "wa",
      "name": "Walloon"
    },
    {
      "code": "cy",
      "name": "Welsh"
    },
    {
      "code": "fy",
      "name": "Western Frisian"
    },
    {
      "code": "wo",
      "name": "Wolof"
    },
    {
      "code": "xh",
      "name": "Xhosa"
    },
    {
      "code": "yi",
      "name": "Yiddish"
    },
    {
      "code": "yo",
      "name": "Yoruba"
    },
    {
      "code": "za",
      "name": "Zhuang; Chuang"
    },
    {
      "code": "zu",
      "name": "Zulu"
    }
  ]
}

List user features

get

Gets the list of all existing user features and their descriptions.

Authorizations
Responses
200
Successful response
application/json
get
GET /api/v2/enums/user-features HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "userFeatures": [
    {
      "title": "Allow access to internal IP addresses from scenarios (do not turn on if you don't know what you're doing!)",
      "name": "local_access"
    },
    {
      "title": "Can create Apps without ID suffix",
      "name": "allow_apps"
    },
    {
      "title": "Can use custom IML functions in Apps",
      "name": "allow_apps_js"
    },
    {
      "title": "Can commit changes to approved Apps",
      "name": "allow_apps_commit"
    },
    {
      "title": "Can see private modules",
      "name": "private_modules"
    },
    {
      "title": "Can add public templates",
      "name": "public_templates"
    }
  ]
}

List organization features

get

Gets the list of all existing organization features and their descriptions.

Authorizations
Responses
200
Successful response
application/json
get
GET /api/v2/enums/organization-features HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "organizationFeatures": [
    {
      "title": "Allow access to internal IP addresses from scenarios (do not turn on if you don't know what you're doing!)",
      "name": "local_access"
    },
    {
      "title": "Allow migration of scenarios with hidden native apps!",
      "name": "migration_scenarios_hidden_apps"
    },
    {
      "title": "Allow migration within the same zone",
      "name": "migration_same_zone"
    }
  ]
}

List email notification settings

get

Gets the list of available email notification settings and their notificationId values. The language of the notification settings descriptions is set according to user language settings by default. You can specify a different language for the notification settings descriptions with the language parameter.

Authorizations
Query parameters
languagestringOptional

Language code in the ISO 639-1 code standard. Only en (English) and cs (Czech) languages are supported.

Example: en
Responses
200
Successful response
application/json
get
GET /api/v2/enums/user-email-notifications HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "userEmailNotifications": [
    {
      "id": 2,
      "name": "Warning in scenario run",
      "description": "Warnings encountered by your scenarios that need your attention, such as failure to connect with your apps and services."
    },
    {
      "id": 1,
      "name": "Errors in scenario run",
      "description": "Notifications about errors encountered by specific modules in your scenarios that keep your workflows from running smoothly."
    },
    {
      "id": 6,
      "name": "Scenario deactivation",
      "description": "Get notified when your scenario gets deactivated due to critical issues such as multiple consecutive errors."
    }
  ]
}

List API token scopes

get

Gets the list of all of the existing user API token scopes. For more information about the user API scopes refer to the Authentication section.

Authorizations
Responses
200
Successful response
application/json
get
GET /api/v2/enums/user-api-token-scopes HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "userApiTokenScopes": [
    {
      "name": "accounts:read"
    },
    {
      "name": "accounts:write"
    },
    {
      "name": "admin:read"
    },
    {
      "name": "admin:write"
    },
    {
      "name": "apps:read"
    },
    {
      "name": "apps:write"
    },
    {
      "name": "imt-forms:read"
    },
    {
      "name": "imt-forms:write"
    },
    {
      "name": "keys:read"
    },
    {
      "name": "keys:write"
    },
    {
      "name": "notifications:read"
    },
    {
      "name": "notifications:write"
    },
    {
      "name": "organizations:read"
    },
    {
      "name": "organizations:write"
    },
    {
      "name": "packages:read"
    },
    {
      "name": "packages:write"
    },
    {
      "name": "scenarios:read"
    },
    {
      "name": "scenarios:write"
    },
    {
      "name": "system:read"
    },
    {
      "name": "system:write"
    },
    {
      "name": "templates:read"
    },
    {
      "name": "templates:write"
    },
    {
      "name": "udts:read"
    },
    {
      "name": "udts:write"
    }
  ]
}

List Make regions

get

Gets the list of Make regions and their regionId values in the id column. The regionId is a required parameter when you create a new organization with the API call POST /organizations.

Authorizations
Responses
200
Successful response
application/json
get
GET /api/v2/enums/imt-regions HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "imtRegions": [
    {
      "id": 1,
      "name": "Local"
    }
  ]
}

List Make zones

get

Gets the list of Make zones and their zoneId values in the id column. The zoneId is a required parameter when you create a new organization with the API call POST /organizations.

Authorizations
Responses
200
Successful response
application/json
get
GET /api/v2/enums/imt-zones HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "imtZones": [
    {
      "id": 1,
      "domain": "slave1.make.cloud",
      "name": "Zone Slave 1"
    },
    {
      "id": 2,
      "domain": "slave2.make.cloud",
      "name": "Zone Slave 2"
    }
  ]
}

List apps review status

get

Gets the list of statuses that Make assigns to custom apps.

  • requestAccepted: Make has received the request for a custom app review.

  • inProgress: The custom app review is in progress.

  • feedbackSent: The Make app developers have sent their feedback to the developer of the custom app.

  • completed:

  • waitingForRelease:

  • declined: The custom app publishing has been declined by Make. The reasons for that could be:

Authorizations
Responses
200
Successful response
application/json
get
GET /api/v2/enums/apps-review-statuses HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "reviewStatuses": [
    {
      "value": 0,
      "label": "{{!apps.forms.review.status.requestAccepted}}"
    },
    {
      "value": 1,
      "label": "{{!apps.forms.review.status.inProgress}}"
    },
    {
      "value": 2,
      "label": "{{!apps.forms.review.status.feedbackSent}}"
    },
    {
      "value": 3,
      "label": "{{!apps.forms.review.status.completed}}"
    },
    {
      "value": 4,
      "label": "{{!apps.forms.review.status.waitingForRelease}}"
    },
    {
      "value": 5,
      "label": "{{!apps.forms.review.status.declined}}"
    }
  ]
}

List variable types

get

Retrieves the mapping of custom variable types and their typeId values.

Authorizations
Responses
200
Successful response
application/json
get
GET /api/v2/enums/variable-types HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "variableTypes": [
    {
      "id": 1,
      "name": "number",
      "teamOnly": false
    },
    {
      "id": 2,
      "name": "string",
      "teamOnly": false
    },
    {
      "id": 3,
      "name": "boolean",
      "teamOnly": false
    },
    {
      "id": 4,
      "name": "date",
      "teamOnly": false
    }
  ]
}
  • GETList module types
  • GETList timezones
  • GETList countries
  • GETList locales
  • GETList languages
  • GETList user features
  • GETList organization features
  • GETList email notification settings
  • GETList API token scopes
  • GETList Make regions
  • GETList Make zones
  • GETList apps review status
  • GETList variable types