Scroll down to content
parentsrightsined.com
RSS
Menu
Scroll down to content
July 30, 2022

Monkey Money

maximios / Blog

Um dos desafios de se mudar para um novo país é entender como funcionam as principais leis e regras de trânsito quando você dirige. Os Estados Unidos tem… Continue lendo

Independente da distância é inevitável que uma guerra nos influencie emocionalmente, mas será que um conflito do outro lado do oceano pode também nos… Continue lendo

Chegar em um novo país exige que tenhamos força de vontade para nos adaptar com mais facilidade. Conhecer a história, entender a cultura e respeitar as… Continue lendo

Independente da distância é inevitável que uma guerra nos influencie emocionalmente, mas será que um conflito do outro lado do oceano pode também nos… Continue lendo

July 17, 2022

Zoho Desk API Documentation

maximios / Blog

Zoho Desk APIs help create tools using which end-users can perform support operations without having to directly access Zoho Desk.

These APIs adhere to RESTful principles and provide predictable URLs, thereby simplifying application development. Also, since the APIs follow HTTP rules, end-users can interact with the APIs through a wide range of HTTP clients.

Help desk resources are exposed as URLs that can be obtained by accessing the corresponding API Root Endpoint. This document lists the APIs related to the help center feature in Zoho Desk.

API Root Endpoint

https://desk.zoho.com/portal/api/

All help center APIs require a mandatory query parameter called portalId. This parameter refers to the unique ID of the help center you want to access. The portalId parameter plays a key role in these APIs because a single organization can have multiple help centers.

Example

$ curl https://desk.zoho.com/portal/api/kbArticles?portalId=50c9bb96b17694d63cd0f03eadbe4ae5

The authentication mechanism for these APIs is still under development.

The help center APIs use an appropriate HTTP verb for each action.

Method Description
GET Retrieving help center resources
POST Creating help center resources and performing resource actions
PATCH Updating help center resources
DELETE Deleting help center resources

Using GET method, you can get the list of resources or details of a particular instance of a resource. To get a list of articles

$ curl https://desk.zoho.com/portal/api/kbArticles?portalId=ae075dk0de8621f986c07c1fe256e4243

To get the details of a ticket referred to by a specified ticket_id

$ curl https://desk.zoho.com/portal/api/kbArticles/1000020008820?portalId=ae075d0dek8621f986c07c1fe256e4243

In Zoho Desk, businesses are called organizations. If you run multiple businesses, you simply set each business as an individual organization. Each organization is a unique entity in Zoho Desk and can have multiple help centers. As mentioned earlier, each help center has a unique portalId.

You can fetch the portalId of a help center from the response to the GET /portal/api/helpCenters API.

The organization ID (orgId param) of the corresponding Zoho Desk account is mandatory for fetching the portalId of a help center. For instructions on how to fetch the orgID of a Zoho Desk account, refer to this link

Request Example

$ curl https://desk.zoho.com/portal/api/helpCenters?orgId=67653422

Response Example

HTTP/1.1 200 Ok Content-Type: application/json;charset=UTF-8

{ “data”: [ { “isDefault”: true, “portalId”: “d3298252f23e28b7be3a52f23eb184d80a28f19a153885d2430e0ab612”, “name”: “Test portal”, “id”: “3261240000200099069”, “departmentIds”: [ “3261240000200006907” ], “isActive”: true, “logoUrl”: “https://d1ydydxaxa2xvtn0b5a2.cloudfront.net/app/images/portalLogo.360e5cd5cda3dfa3df4d48a75cda3df7c.png”, “url”: “https://desk.zoho.com/portal/testPortal/” } ] }

Zoho Desk uses HTTP status codes to indicate success or failure of an API call. In general, status codes in the 2xx range mean success, 4xx range mean there was an error in the provided information, and those in the 5xx range indicate server side errors. Commonly used HTTP status codes are listed below.

HTTP Status Codes

Status Code Description
200 OK
201 Created
204 NO Content Found
400 Bad request
401 Unauthorized (Invalid AuthToken)
403 Forbidden
404 URL Not Found
405 Method Not Allowed (Method you have called is not supported for the invoked API)
500 Internal Error

Help center refers to the customer-facing online portal through which customers can access your help desk. From the help center, end-users can submit tickets, read help articles stored in your knowledge base, interact with other customers, or chat with your customer support agents. 

This API lists the help centers configured in an organization.

GET /portal/api/helpCenters

Request Example

https://desk.zoho.com/portal/api/helpCenters?orgId=759221

Response Example

{
  "data" : [ {
    "isDefault" : "true",
    "portalId" : "5c9470fcc808cc98932703e28221d6c302e105dc4da8b23fafb6719abeecaa48",
    "isEnabled" : "true",
    "name" : "Zoho Corp",
    "id" : "1000000009118",
    "departmentIds" : [ "1000000009123", "1000000009112", "1000000009115", "1000000002328", "1000000005345" ],
    "url" : "https://desk.zoho.com/portal/zohocorp",
    "logoUrl" : "https://desk.zoho.com/portal/api/helpCenters/1000000009118/logo/1000000003456?orgId=234813"
  } ]
}

This API fetches the details of a particular help center.

QueryParams

include

string

Secondary information related to the help center. Values supported are PREFERENCES and CONFIGURATIONS.

GET /portal/api/helpCenters/{id}

Request Example

https://desk.zoho.com/portal/api/helpCenters/1000000009118?orgId=759221&include=PREFERENCES,CONFIGURATIONS

Response Example

{
  "preferences" : {
    "isHelpCenterPublic" : "REGISTEREDUSERS",
    "isAccountTicketViewable" : "false",
    "searchScope" : "category",
    "articleFeedbackFormOnDislike" : "show",
    "communityLandingPage" : "allcategory",
    "isKBEnabled" : "true",
    "tocPosition" : "top",
    "isSignUpEnabled" : "true",
    "isOnHoldEnabled" : "true",
    "isCommunityEnabled" : "true",
    "isGamificationEnabled" : "true",
    "isTocEnabled" : "true",
    "isTagsEnabled" : "true"
  },
  "logolinkBackUrl" : "https://www.google.com",
  "configurations" : {
    "googleAnalytics" : {
      "trackerId" : "UA-223321-212",
      "domainName" : "Manage Engine",
      "isEnabled" : "true",
      "AnalyticsType" : "Universal Analytics"
    },
    "seo" : {
      "isEnabled" : "true",
      "metaKeyWord" : "Zoho,Manage Engine",
      "title" : "Manage Engine",
      "metaDescription" : "Power up your IT help desk on cloud."
    }
  },
  "departmentIds" : [ "5000000001243", "5000000002428", "5000000003245" ],
  "activeLocales" : [ {
    "i18nLocaleName" : "Русский",
    "name" : "Zoho Cares",
    "locale" : "ru",
    "type" : "DEFAULT",
    "status" : "ACCESIBLE_IN_HELPCENTER"
  }, {
    "i18nLocaleName" : "Español (España)",
    "name" : "Zoho Corp..,",
    "locale" : "es",
    "type" : "OTHER",
    "status" : "ACCESIBLE_IN_HELPCENTER"
  } ],
  "url" : "https://desk.zoho.com/portal/manageengine",
  "logoUrl" : "https://desk.zoho.com/portal/api/helpCenters/1000000009118/logo/1000000003456?orgId=234813",
  "accountId" : "654728",
  "portalId" : "5c9470fcc808cc98932703e28221d6c302e105dfgthuklq5671fb6719abeecaa48",
  "name" : "Manage Engine",
  "favIconUrl" : "https://desk.zoho.com/portal/api/helpCenters/1000000009118/favIcon/1000000003456?orgId=234813",
  "id" : "1000000009118",
  "primaryLocale" : "ru_RU"
}

Community API’s are used to integrate with Zoho discussion

API to get all Topics

QueryParams

categoryId

long

Id of category from which topics are to be retrieved

from

int

Index from which list is retrieved and it starts from 1

limit

int

Number of topics to list.

isSticky

boolean

True retrives sticky posts

type

String

Topic Type – Value can be QUESTION,IDEA,ANNOUNCEMENT,PROBLEM or DISCUSSION

tagName

sortBy

string

Key that sorts topics by a particular attribute: createdTime, modifiedTime, or latestCommentTime

isDescending

boolean

Sort list of topics by Ascending or Descending

GET portal/api/communityTopics

Request Example

https://desk.zoho.com/portal/api/communityTopics?portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

{
  "data" : [ {
    "creator" : {
      "photoUrl" : null,
      "name" : "User - 1",
      "id" : "4000000008734",
      "label" : {
        "preferences" : {
          "shape" : "RECTANGLE",
          "bgColor" : "#23F123",
          "textColor" : "#2CA123"
        },
        "name" : "Admin",
        "id" : "6000000158001",
        "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132"
      },
      "type" : "ENDUSER"
    },
    "latestCommentTime" : "2013-11-04T11:21:07.000Z",
    "subject" : "First Post",
    "likeCount" : "1",
    "label" : "ANSWERED",
    "isVoted" : true,
    "type" : "QUESTION",
    "content" : "First Post",
    "commentCount" : "2",
    "createdTime" : "2013-11-04T11:21:07.000Z",
    "lastCommenter" : {
      "name" : "User - 2",
      "id" : "4000000008734",
      "label" : {
        "preferences" : {
          "shape" : "RECTANGLE",
          "bgColor" : "#23F123",
          "textColor" : "#2CA123"
        },
        "name" : "Admin",
        "id" : "6000000158001",
        "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132"
      },
      "type" : "SUPPORTREP"
    },
    "viewCount" : "1",
    "id" : "3000000000059",
    "permalink" : "first-post",
    "categoryId" : "3000000000017",
    "status" : "PUBLISHED"
  }, {
    "creator" : {
      "photoUrl" : null,
      "name" : "User - 1",
      "id" : "4000000008734",
      "label" : {
        "preferences" : {
          "shape" : "RECTANGLE",
          "bgColor" : "#23F123",
          "textColor" : "#2CA123"
        },
        "name" : "Admin",
        "id" : "6000000158001",
        "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132"
      },
      "type" : "ENDUSER"
    },
    "latestCommentTime" : "2013-11-04T11:21:07.000Z",
    "subject" : "Welcome to Community",
    "likeCount" : "0",
    "label" : "NOSTATUS",
    "isVoted" : true,
    "type" : "ANNOUNCEMENT",
    "content" : "
The Community hub inside Zoho Desk lets you build a powerful community around your business, while still serving customers via other channels.", "commentCount" : "0", "createdTime" : "2013-11-04T11:21:07.000Z", "lastCommenter" : { "name" : "User - 2", "id" : "4000000008733", "label" : { "preferences" : { "shape" : "RECTANGLE", "bgColor" : "#23F123", "textColor" : "#2CA123" }, "name" : "Admin", "id" : "6000000158001", "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132" }, "type" : "SUPPORTREP" }, "viewCount" : "1", "id" : "3000000000035", "permalink" : "welcome-to-community", "categoryId" : "3000000000017", "status" : "PUBLISHED" } ] }

Get Single Topic (include=attachements)

QueryParams

include

String

include Attachments

GET portal/api/communityTopics/{id}

Request Example

https://desk.zoho.com/portal/api/communityTopics/{id}?portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

{
  "attachments" : [ {
    "size" : "1024",
    "name" : "New Attachment.jpeg",
    "id" : "8651"
  }, {
    "size" : "1024",
    "name" : "Sample Attachment.jpeg",
    "id" : "8661"
  } ],
  "subject" : "First Post",
  "isDraft" : false,
  "likeCount" : "1",
  "type" : "QUESTION",
  "isSticky" : true,
  "content" : "First Post",
  "bestCommentId" : "3000000254017",
  "isLocked" : false,
  "createdTime" : "2013-11-04T11:21:07.000Z",
  "id" : "3000000000059",
  "tag" : [ {
    "name" : "Java EE",
    "permalink" : "java-ee"
  }, {
    "name" : "Python",
    "permalink" : "python"
  } ],
  "viewCount" : "8",
  "creator" : {
    "photoUrl" : null,
    "name" : "User - 1",
    "id" : "4000000008734",
    "label" : {
      "preferences" : {
        "shape" : "RECTANGLE",
        "bgColor" : "#23F123",
        "textColor" : "#2CA123"
      },
      "name" : "Admin",
      "id" : "6000000158001",
      "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132"
    },
    "type" : "ENDUSER"
  },
  "isFollowing" : false,
  "ticket" : {
    "no" : "103",
    "id" : "300000003"
  },
  "label" : "ANSWERED",
  "isVoted" : false,
  "commentCount" : "2",
  "webUrl" : "https://desk.zoho.com/portal/portalname/en/community/topic/first-post",
  "followersCount" : "0",
  "permalink" : "first-post",
  "categoryId" : "3000000000017",
  "notifyMe" : true,
  "status" : "PUBLISHED"
}

API to get all helpcenter visible categories

GET portal/api/communityCategory

Request Example

https://desk.zoho.com/portal/api/communityCategory?portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

{
  "data" : [ {
    "isFollowing" : true,
    "visibility" : "GROUPS",
    "description" : "Get your questions answered here!",
    "commentCount" : "2",
    "photoUrl" : null,
    "permissions" : [ "POST", "RESPOND" ],
    "isLocked" : false,
    "name" : "samsungs7",
    "postCount" : "3",
    "parentCategoryId" : null,
    "id" : "3000000000017",
    "followersCount" : "2",
    "position" : "1",
    "permalink" : "samsungs7",
    "child" : [ {
      "isFollowing" : true,
      "visibility" : "GROUPS",
      "description" : null,
      "commentCount" : "2",
      "photoUrl" : null,
      "permissions" : [ "POST", "RESPOND" ],
      "isLocked" : false,
      "name" : "Subforum1",
      "postCount" : "3",
      "parentCategoryId" : "3000000000017",
      "id" : "3000000000033",
      "followersCount" : "2",
      "position" : "1",
      "permalink" : "subForum1",
      "child" : [ ]
    } ]
  } ]
}

API to get a category by Id

GET portal/api/communityCategory/{id}

Request Example

https://desk.zoho.com/portal/api/communityCategory/{id}?portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

{
  "data" : [ {
    "isFollowing" : false,
    "visibility" : "ALL_USERS",
    "description" : "Get your questions answered here!",
    "commentCount" : "2",
    "photoUrl" : null,
    "permissions" : [ "POST", "RESPOND" ],
    "isLocked" : false,
    "name" : "samsungs7",
    "postCount" : "3",
    "parentCategoryId" : null,
    "id" : "3000000000017",
    "followersCount" : "2",
    "position" : "1",
    "permalink" : "samsungs7",
    "child" : [ {
      "isFollowing" : true,
      "visibility" : "ALL_USERS",
      "description" : null,
      "commentCount" : "2",
      "photoUrl" : null,
      "permissions" : [ "POST", "RESPOND" ],
      "isLocked" : false,
      "name" : "Subforum1",
      "postCount" : "3",
      "parentCategoryId" : "3000000000017",
      "id" : "3000000000033",
      "followersCount" : "2",
      "position" : "1",
      "permalink" : "subForum1"
    } ]
  } ]
}

Get Top Contributors of Community

QueryParams

categoryId

long

Id of category from which topics are to be retrieved

limit

int

Limit of Contributors to be retrieved

GET portal/api/communityTopContributors

Request Example

https://desk.zoho.comportal/api/communityTopContributors?portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

{
  "data" : [ {
    "photoUrl" : null,
    "name" : "User - 1",
    "id" : "400001",
    "label" : {
      "preferences" : {
        "shape" : "RECTANGLE",
        "bgColor" : "#23F123",
        "textColor" : "#2CA123"
      },
      "name" : "Admin",
      "id" : "6000000158001",
      "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132"
    },
    "type" : "ENDUSER"
  }, {
    "photoUrl" : null,
    "name" : "User - 2",
    "id" : "400003",
    "label" : {
      "preferences" : {
        "shape" : "RECTANGLE",
        "bgColor" : "#23F123",
        "textColor" : "#2CA123"
      },
      "name" : "Admin",
      "id" : "6000000158001",
      "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132"
    },
    "type" : "SUPPORTREP"
  } ]
}

Get Most Discussed Topics (type=IDEA|QUESTION|PROBLEM|ANNOUNCEMENT, categoryId = 3000006,from=1,limit=5)

QueryParams

categoryId

long

Id of category from which topics are to be retrieved

from

int

Index from which list is retrieved and it starts from 1

limit

int

Number of topics to list.

type

String

Topic Type – Value can be QUESTION,IDEA,ANNOUNCEMENT,PROBLEM or DISCUSSION

GET portal/api/mostDiscussedCommunityTopics

Request Example

https://desk.zoho.com/portal/api/mostDiscussedCommunityTopics?portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

{
  "data" : [ {
    "creator" : {
      "photoUrl" : null,
      "name" : "User - 1",
      "id" : "4000000008734",
      "label" : {
        "preferences" : {
          "shape" : "RECTANGLE",
          "bgColor" : "#23F123",
          "textColor" : "#2CA123"
        },
        "name" : "Admin",
        "id" : "6000000158001",
        "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132"
      },
      "type" : "ENDUSER"
    },
    "latestCommentTime" : "2013-11-04T11:21:07.000Z",
    "subject" : "First Post",
    "likeCount" : "1",
    "label" : "ANSWERED",
    "isVoted" : true,
    "type" : "QUESTION",
    "content" : "First Post",
    "commentCount" : "2",
    "createdTime" : "2013-11-04T11:21:07.000Z",
    "lastCommenter" : {
      "name" : "User - 2",
      "id" : "4000000008734",
      "label" : {
        "preferences" : {
          "shape" : "RECTANGLE",
          "bgColor" : "#23F123",
          "textColor" : "#2CA123"
        },
        "name" : "Admin",
        "id" : "6000000158001",
        "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132"
      },
      "type" : "SUPPORTREP"
    },
    "id" : "3000000000059",
    "permalink" : "first-post",
    "categoryId" : "3000000000017",
    "status" : "PUBLISHED"
  }, {
    "creator" : {
      "photoUrl" : null,
      "name" : "User - 1",
      "id" : "4000000008734",
      "label" : {
        "preferences" : {
          "shape" : "RECTANGLE",
          "bgColor" : "#23F123",
          "textColor" : "#2CA123"
        },
        "name" : "Admin",
        "id" : "6000000158001",
        "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132"
      },
      "type" : "ENDUSER"
    },
    "latestCommentTime" : "2013-11-04T11:21:07.000Z",
    "subject" : "Welcome to Community",
    "likeCount" : "0",
    "label" : "NOSTATUS",
    "isVoted" : true,
    "type" : "ANNOUNCEMENT",
    "content" : "
The Community hub inside Zoho Desk lets you build a powerful community around your business, while still serving customers via other channels.", "commentCount" : "0", "createdTime" : "2013-11-04T11:21:07.000Z", "lastCommenter" : { "name" : "User - 2", "id" : "4000000008733", "label" : { "preferences" : { "shape" : "RECTANGLE", "bgColor" : "#23F123", "textColor" : "#2CA123" }, "name" : "Admin", "id" : "6000000158001", "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132" }, "type" : "SUPPORTREP" }, "id" : "3000000000035", "permalink" : "welcome-to-community", "categoryId" : "3000000000017", "status" : "PUBLISHED" } ] }

Get Most Popular Topics (type=IDEA|QUESTION|PROBLEM|ANNOUNCEMENT, categoryId = 3000006,from=1,limit=5)

QueryParams

categoryId

long

Id of category from which topics are to be retrieved

from

int

Index from which list is retrieved and it starts from 1

limit

int

Number of topics to list.

type

String

Topic Type – Value can be QUESTION,IDEA,ANNOUNCEMENT,PROBLEM or DISCUSSION

GET portal/api/mostPopularCommunityTopics

Request Example

https://desk.zoho.com/portal/api/mostPopularCommunityTopics?portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

{
  "data" : [ {
    "creator" : {
      "photoUrl" : null,
      "name" : "User - 1",
      "id" : "4000000008734",
      "label" : {
        "preferences" : {
          "shape" : "RECTANGLE",
          "bgColor" : "#23F123",
          "textColor" : "#2CA123"
        },
        "name" : "Admin",
        "id" : "6000000158001",
        "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132"
      },
      "type" : "ENDUSER"
    },
    "latestCommentTime" : "2013-11-04T11:21:07.000Z",
    "subject" : "First Post",
    "likeCount" : "1",
    "label" : "ANSWERED",
    "isVoted" : true,
    "type" : "QUESTION",
    "content" : "First Post",
    "commentCount" : "2",
    "createdTime" : "2013-11-04T11:21:07.000Z",
    "lastCommenter" : {
      "name" : "User - 2",
      "id" : "4000000008734",
      "label" : {
        "preferences" : {
          "shape" : "RECTANGLE",
          "bgColor" : "#23F123",
          "textColor" : "#2CA123"
        },
        "name" : "Admin",
        "id" : "6000000158001",
        "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132"
      },
      "type" : "SUPPORTREP"
    },
    "id" : "3000000000059",
    "permalink" : "first-post",
    "categoryId" : "3000000000017",
    "status" : "PUBLISHED"
  }, {
    "creator" : {
      "photoUrl" : null,
      "name" : "User - 1",
      "id" : "4000000008734",
      "label" : {
        "preferences" : {
          "shape" : "RECTANGLE",
          "bgColor" : "#23F123",
          "textColor" : "#2CA123"
        },
        "name" : "Admin",
        "id" : "6000000158001",
        "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132"
      },
      "type" : "ENDUSER"
    },
    "latestCommentTime" : "2013-11-04T11:21:07.000Z",
    "subject" : "Welcome to Community",
    "likeCount" : "0",
    "label" : "NOSTATUS",
    "isVoted" : true,
    "type" : "ANNOUNCEMENT",
    "content" : "
The Community hub inside Zoho Desk lets you build a powerful community around your business, while still serving customers via other channels.", "commentCount" : "0", "createdTime" : "2013-11-04T11:21:07.000Z", "lastCommenter" : { "name" : "User - 2", "id" : "4000000008733", "label" : { "preferences" : { "shape" : "RECTANGLE", "bgColor" : "#23F123", "textColor" : "#2CA123" }, "name" : "Admin", "id" : "6000000158001", "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132" }, "type" : "SUPPORTREP" }, "id" : "3000000000035", "permalink" : "welcome-to-community", "categoryId" : "3000000000017", "status" : "PUBLISHED" } ] }

API to search community topics

QueryParams

searchStr

string

The String to be searched

from

int

from limit from which records to be fetched

limit

int

Number of records to be fetched

categoryId

long

category in which topic is to be searched

sortBy

String

SortBy can be: @relevance@, @createdTime@

isDescending

boolean

Sort list of search results by Ascending or Descending

GET portal/api/communityTopics/search

Request Example

https://desk.zoho.com/portal/api/communityTopics/search?portalId=ae075d0de8621f986c07c1fe256e4243&searchStr=test

Response Example

{
  "data" : [ {
    "creator" : {
      "photoUrl" : "https://desk.zoho.com/portal/api/user/1310000000033001/photo",
      "name" : "User - 1",
      "id" : "1310000000033001",
      "label" : {
        "preferences" : {
          "shape" : "RECTANGLE",
          "bgColor" : "#23F123",
          "textColor" : "#2CA123"
        },
        "name" : "Admin",
        "id" : "6000000158001",
        "logoUrl" : "https://desk.zoho.com/portal/api/publicImages/6000000158231?orgId=14132"
      },
      "type" : "ENDUSER"
    },
    "isFollowing" : false,
    "ticket" : {
      "number" : "665",
      "id" : "1310000001519003"
    },
    "subject" : "test123",
    "module" : "Community",
    "isDraft" : false,
    "likeCount" : "2",
    "label" : "NOSTATUS",
    "isVoted" : false,
    "type" : "QUESTION",
    "isSticky" : false,
    "content" : "testttttt",
    "commentCount" : "1",
    "isLocked" : false,
    "createdTime" : "2017-10-20T10:06:26.000Z",
    "tag" : [ ],
    "id" : "1226000000363014",
    "viewCount" : "2",
    "followersCount" : "0",
    "permalink" : "test123",
    "categoryId" : "1226000000121007",
    "status" : "PUBLISHED",
    "notifyMe" : true
  } ]
}

Knowledge base refers to the repository of help articles in your help desk. Help articles act as the first means of support and deliver self-service capabilities to your customers.

This API lists a particular number of help articles, based on the limit specified.

QueryParams

categoryId

long

ID of the category to which the articles must belong

sortBy

string

Key that sorts articles by a particular attribute: createdTime, modifiedTime, likeCount, viewCount, or unlikeCount

from

int

Number of articles to list. Default value is 1.

limit

int

Number of articles to list

tag

string

Key that filters articles, based on tags

GET /portal/api/kbArticles

Request Example

https://desk.zoho.com/portal/api/kbArticles?portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

{
  "data" : [ {
    "summary" : "If you're looking for a detachable keyboard for your zPad, you can either order one online or drop in to one of our Zylker Stores. Visit https://www.zylker.com/zPad/shop for shopping for accessories. Here's a list of Zylker showrooms - https://www.zylker.com/storefinder ",
    "modifiedTime" : "2019-11-04T05:10:46.000Z",
    "translationId" : "292101000000122001",
    "webUrl" : "https://desk.zoho.com/portal/zylker/kb/articles/buying-a-detachable-keyboard",
    "createdTime" : "2018-07-02T05:04:31.000Z",
    "id" : "292101000001113047",
    "category" : {
      "name" : "1",
      "id" : "292101000000216021",
      "locale" : "en"
    },
    "title" : "Buying a detachable keyboard",
    "permalink" : "buying-a-detachable-keyboard",
    "locale" : "en",
    "categoryId" : "292101000000216021",
    "rootCategoryId" : "292101000000088379"
  }, {
    "summary" : "While the device has been designed for a great battery life of 10 hours of use on a full charge, we would recommend using these following tips for saving battery life. 1. Turn off WiFi when you're not using it. 2. Turn off 3G in case you're on WiFi. 3. Turn ",
    "modifiedTime" : "2019-11-04T05:10:46.000Z",
    "translationId" : "292101000000200029",
    "webUrl" : "https://desk.zoho.com/portal/zylker/kb/articles/tips-to-save-zpad-battery-life",
    "createdTime" : "2018-09-08T06:52:36.000Z",
    "id" : "292101000001113049",
    "category" : {
      "name" : "1",
      "id" : "292101000000216021",
      "locale" : "en"
    },
    "title" : "Tips to save zPad battery life",
    "permalink" : "tips-to-save-zpad-battery-life",
    "locale" : "en",
    "categoryId" : "292101000000216021",
    "rootCategoryId" : "292101000000088379"
  } ]
}

This API fetches a single help article from the knowledge base.

QueryParams

GET /portal/api/kbArticles/{articles_id}

Request Example

https://desk.zoho.com/portal/api/kbArticles/292101000001113049?portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

{
  "summary" : "Looking for a detachable keyboard for your zPad",
  "modifiedTime" : "2019-11-04T05:10:46.000Z",
  "myVote" : null,
  "author" : {
    "photoURL" : "https://desk.zoho.com/api/v1/agents/292101000000088033/photo?orgId=669661594",
    "name" : "Yod Agbaria",
    "id" : "292101000000088033",
    "status" : "ACTIVE",
    "zuid" : "32435"
  },
  "departmentId" : "292101000000006907",
  "dislikeCount" : "2",
  "likeCount" : "110",
  "title" : "Buying a detachable keyboard",
  "locale" : "en",
  "tags" : [ "detachable keyboard", "zpad", "zboard", "accessory" ],
  "rootCategoryId" : "292101000000088379",
  "locales" : [ {
    "apiUrl" : "https://desk.zoho.com/portal/api/kbArticles/292101000001113049/locale/en?portalId=ae075d0de8621f986c07c1fe256e4243",
    "webUrl" : "https://desk.zoho.com/portal/zylker/kb/articles/buying-a-detachable-keyboard",
    "permalink" : "buying-a-detachable-keyboard",
    "locale" : "en"
  } ],
  "answer" : "If you're looking for a detachable keyboard for your zPad, you can either order one online or drop in to one of our Zylker Stores. Visit https://www.zylker.com/zPad/shop for shopping for accessories.

Here's a list of Zylker showrooms - https://www.zylker.com/storefinder

You can drop in any time between 10:00 AM and 10:00 PM, any day, to pick out a zBoard.
", "translationId" : "292101000000200029", "webUrl" : "https://desk.zoho.com/portal/zylker/kb/articles/buying-a-detachable-keyboard", "createdTime" : "2018-09-08T06:52:36.000Z", "id" : "292101000001113049", "category" : { "name" : "1", "id" : "292101000000216021", "locale" : "en" }, "permalink" : "buying-a-detachable-keyboard", "seo" : { "keywords" : "zPad, detachable keyboard, accessory, zBoard", "isEnabled" : true, "description" : "Follow these steps for buying a detachable keyboard.", "title" : "Buying a detachable keyboard" }, "categoryId" : "292101000000216021" }

This API fetches a single help article from the knowledge base based on locale.

QueryParams

GET /portal/api/kbArticles/{articles_id}/locale/{locale}

Request Example

https://desk.zoho.com/portal/api/kbArticles/292101000001113049/locale/en?portalId=edbsn9f6fab66f372a985f9c6787692a0b53dda6a5e6aa52db4477786bb56a42f1775f5f6e

Response Example

{
  "summary" : "If you're looking for a detachable keyboard for your zPad, you can either order one online or drop in to one of our Zylker Stores. Visit https://www.zylker.com/zPad/shop for shopping for accessories. Here's a list of Zylker showrooms - https://www.zylker.com/storefinder ",
  "modifiedTime" : "2019-11-04T05:10:46.000Z",
  "myVote" : null,
  "author" : {
    "photoURL" : "https://desk.zoho.com/api/v1/agents/292101000000088033/photo?orgId=669661594",
    "name" : "Yod Agbaria",
    "id" : "292101000000088033",
    "status" : "ACTIVE",
    "zuid" : "32435"
  },
  "departmentId" : "292101000000006907",
  "dislikeCount" : "2",
  "likeCount" : "110",
  "title" : "Buying a detachable keyboard",
  "locale" : "en",
  "tags" : [ "detachable keyboard", "zpad", "zboard", "accessory" ],
  "rootCategoryId" : "292101000000088379",
  "locales" : [ {
    "apiUrl" : "https://desk.zoho.com/portal/api/kbArticles/292101000001113049/locale/en?portalId=edbsn9f6fab66f372a985f9c6787692a0b53dda6a5e6aa52db4477786bb56a42f1775f5f6e",
    "webUrl" : "https://desk.zoho.com/portal/zylker/en/kb/articles/buying-a-detachable-keyboard",
    "permalink" : "buying-a-detachable-keyboard",
    "locale" : "en"
  } ],
  "answer" : "If you're looking for a detachable keyboard for your zPad, you can either order one online or drop in to one of our Zylker Stores. Visit https://www.zylker.com/zPad/shop for shopping for accessories.

Here's a list of Zylker showrooms - https://www.zylker.com/storefinder

You can drop in any time between 10:00 AM and 10:00 PM, any day, to pick out a zBoard.
", "translationId" : "292101000000200029", "webUrl" : "https://desk.zoho.com/portal/zylker/kb/articles/buying-a-detachable-keyboard", "createdTime" : "2018-09-08T06:52:36.000Z", "id" : "292101000001113049", "category" : { "name" : "1", "id" : "292101000000216021", "locale" : "en" }, "permalink" : "buying-a-detachable-keyboard", "seo" : { "keywords" : "zPad, detachable keyboard, accessory, zBoard", "isEnabled" : true, "description" : "Follow these steps for buying a detachable keyboard.", "title" : "Buying a detachable keyboard" }, "categoryId" : "292101000000216021" }

This API records a like (positive reaction) on an article.

POST /portal/api/kbArticles/{articles_id}/locale/{locale}/like

Request Example

https://desk.zoho.com/portal/api/kbArticles/124611000000081039/locale/en/like?portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

204

This API records an unlike (negative reaction) on an article.

POST /portal/api/kbArticles/{articles_id}/locale/{locale}/dislike

Request Example

https://desk.zoho.com/portal/api/kbArticles/124611000000081039/locale/en/dislike?portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

200

This API adds a feedback to an article.

Attributes

email

string

Optional

Email ID in the feedback

feedback

string

Required

Content of the feedback

POST /portal/api/kbArticles/{articles_id}/locale/{locale}/feedbacks

Request Example

https://desk.zoho.com/portal/api/kbArticles/124611000000081039/locale/en/feedbacks?portalId=ae075d0de8621f986c07c1fe256e4243
{
  "feedback" : "The Article is considering these constraints 1. 2. 3 . 4 ",
  "email" : "[email protected]"
}

Response Example

204

This API lists the files attached to help articles in the knowledge base.

GET /portal/api/kbArticles/{articles_id}/locale/{locale}/attachments

Request Example

https://desk.zoho.com/portal/api/kbArticles/180757000000724067/locale/en/attachments?portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

{
  "data" : [ {
    "contentUrl" : "https://desk.zoho.com/portal/api/kbArticles/180757000000724067/attachments/798cydff5ee6cad9600a9/content?portalId=ae075d0de8621f986c07c1fe256e4243",
    "size" : "733983",
    "name" : "DemoImage.png",
    "createdTime" : "2018-06-06T09:10:05.288Z",
    "inlineUrl" : "https://desk.zoho.com/portal/api/kbArticles/180757000000724067/attachments/798cydff5ee6cad9600a9/content?portalId=ae075d0de8621f986c07c1fe256e4243&inline=true",
    "id" : "798cydff5ee6cad9600a9"
  } ]
}

This API searches for articles in the knowledge base.

QueryParams

categoryId

long

ID of the category to which the articles must belong

from

int

Index number, starting from which the articles must be fetched. Default value is 1.

limit

int

Number of articles to list in the search result

searchStr

string

Keyword to use for the search

GET /portal/api/kbArticles/search

Request Example

https://desk.zoho.com/portal/api/kbArticles/search?portalId=ae075d0de8621f986c07c1fe256e4243&searchStr=first ticket

Response Example

{
  "data" : [ {
    "summary" : "Zoho Desk packs a bunch of features that are expressly there to help you respond to tickets smartly.The first of these, you've already discovered: Auto-Suggest Articles. Zoho Desk pulls up relevant articles on the ticket's content—so you can save time on frequently asked questions.

Every action that you can perform with respect to a ticket has a corresponding keyboard shortcut.", "modifiedTime" : "2019-11-04T05:10:46.000Z", "translationId" : "292101000000332013", "webUrl" : "https://desk.zoho.com/portal/informatica/en/kb/articles/answering-your-first-ticket", "createdTime" : "2018-12-27T06:58:26.000Z", "id" : "292101000001113069", "category" : { "name" : "1", "id" : "292101000000216021", "locale" : "en" }, "title" : "Answering your first ticket.", "permalink" : "answering-your-first-ticket", "locale" : "en", "categoryId" : "292101000000216021", "rootCategoryId" : "292101000000088379" } ] }

This API lists the comments recorded in an article.

QueryParams

from

integer

Index number, starting from which the comments must be listed. Default value is 1.

limit

integer

tNumber of comments to list

sortBy

string

sKey that sorts comments by the commentedTime attribute. The default sorting order is ascending. A ‘-‘ prefix denotes a descending order of sorting.

GET /portal/api/kbArticles/([0-9]+)/locale/{locale}/comments

Request Example

https://desk.zoho.com/portal/api/kbArticles/17883000000493017/locale/en/comments?portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

{
  "data" : [ {
    "modifiedTime" : "2020-07-06T12:43:30.000Z",
    "commentedTime" : "2018-10-22T06:54:45.000Z",
    "isPublic" : true,
    "id" : "180757000000996001",
    "contentType" : "html",
    "content" : "Good content management",
    "commenter" : {
      "photoURL" : "https://desk.zoho.com/portal/api/user/180757000000069005/photo",
      "name" : "Zylker",
      "id" : "180757000000069005"
    }
  } ]
}

This API searches for articles with a particular tag.

QueryParams

categoryId

long

ID of the category to which the articles must belong

from

int

Index number, starting from which the articles must be fetched. Default value is 1

limit

int

Number of articles to list in the search result

tag

string

Key that filters articles, based on tags

GET /portal/api/kbArticles/searchByTag

Request Example

https://desk.zoho.com/portal/api/kbArticles/searchByTag?portalId=3baf28131e9f8df2ce65d95ccc7819577594b0b7b4bb480af57d9b02e22471ff&tag=asdasdasd

Response Example

{
  "data" : [ {
    "summary" : "Zoho Desk packs a bunch of features that are expressly there to help you respond to tickets smartly. The first of these, you've already discovered: Auto-Suggest Articles. Zoho Desk pulls up relevant articles on the ticket's content—so you can save time on ",
    "webUrl" : "https://desk.zoho.com/portal/yahya1608/kb/articles/answering-your-first-tickets",
    "id" : "180757000000069120",
    "title" : "Answering your first ticket.",
    "permalink" : "answering-your-first-tickets",
    "categoryId" : "180757000000604004"
  } ]
}

List all root categories (UnAuthenticated URL)

QueryParams

from

integer

The from index. from starts with 1, not 0.

limit

sortBy

String

Sort order of the categories. Allowed values : name, order

searchValue

visibility

string

Search value to be searched in name

departmentId

hasArticles

boolean

This flag when set to true fetches only categories with articles

include

String

Include allowed values are allArticleCount or sectionsCount

GET /portal/api/kbRootCategories

Request Example

/portal/api/kbRootCategories?portalId=ae075d0de8621f986c07c1fe256e4243&limit=10

Response Example

{
  "data" : [ {
    "visibility" : "ALL_USERS",
    "articleViewType" : "LISTVIEW",
    "description" : "Engineering zone",
    "sectionsCount" : "1",
    "translatedName" : "Engineering zone",
    "locale" : "en",
    "logoUrl" : "https://desk.zoho.com/support/App/build/fonts/certificate.svg",
    "associatedDepartmentIds" : [ "5000000063895" ],
    "webUrl" : "https://desk.zoho.com/portal/informatica/en/kb/engineering-zone",
    "name" : "Engineering zone",
    "id" : "5000000066427",
    "articlesCount" : "2",
    "permalink" : "engineering-zone"
  } ]
}

To get complete category tree

QueryParams

sortBy

String

Sort order of the categories. Allowed values : name, order

include

String

Allowed values are allArticleCount, sectionsCount

hasArticles

boolean

This flag when set to true fetches only categories with articles

GET /portal/api/kbRootCategories/{rootCategoryId}/categoryTree

Request Example

/portal/api/kbRootCategories/5000000066427/categoryTree?include=allArticleCount&portalId=ae075d0de8621f986c07c1fe256e4243

Response Example

{
  "visibility" : "ALL_USERS",
  "articleViewType" : "LISTVIEW",
  "level" : "1",
  "description" : "Engineering zone",
  "translatedDescription" : "Engineering zone",
  "translatedName" : "Engineering zone",
  "locale" : "en",
  "logoUrl" : "https://desk.zoho.com/support/App/build/fonts/certificate.svg",
  "associatedDepartmentIds" : [ "59210100006907" ],
  "rootCategoryId" : "5000000066427",
  "webUrl" : "https://desk.zoho.com/portal/informatica/en/kb/engineering-zone",
  "name" : "Engineering zone",
  "parentCategoryId" : null,
  "id" : "5000000066427",
  "articlesCount" : "0",
  "permalink" : "engineering-zone",
  "child" : [ {
    "visibility" : "ALL_USERS",
    "level" : "2",
    "description" : "Design pattern analysis",
    "translatedDescription" : "Design pattern analysis",
    "translatedName" : "Design pattern analysis",
    "locale" : "en",
    "logoUrl" : "https://desk.zoho.com/support/App/build/fonts/certificate.svg",
    "rootCategoryId" : "5000000066427",
    "webUrl" : "https://desk.zoho.com/portal/informatica/en/kb/engineering-zone/design-patterns",
    "name" : "Design pattern analysis",
    "parentCategoryId" : "5000000066427",
    "id" : "5000000215001",
    "articlesCount" : "2",
    "permalink" : "design-patterns",
    "child" : [ ]
  }, {
    "visibility" : "ALL_USERS",
    "level" : "2",
    "description" : "Design pattern analysis",
    "translatedDescription" : "Design pattern analysis",
    "translatedName" : "General",
    "locale" : "en",
    "logoUrl" : "https://desk.zoho.com/support/App/build/fonts/certificate.svg",
    "rootCategoryId" : "5000000066427",
    "webUrl" : "https://desk.zoho.com/portal/informatica/en/kb/engineering-zone/general",
    "name" : "General",
    "parentCategoryId" : "5000000066427",
    "id" : "5000000016204",
    "articlesCount" : "0",
    "permalink" : "general",
    "child" : [ ]
  }, {
    "visibility" : "ALL_USERS",
    "level" : "2",
    "description" : "Design pattern analysis",
    "translatedDescription" : "Design pattern analysis",
    "translatedName" : "Review methodology",
    "locale" : "en",
    "logoUrl" : "https://desk.zoho.com/support/App/build/fonts/certificate.svg",
    "rootCategoryId" : "5000000066427",
    "webUrl" : "https://desk.zoho.com/portal/informatica/en/kb/engineering-zone/reviews",
    "name" : "Review methodology",
    "parentCategoryId" : "5000000066427",
    "id" : "5000000340014",
    "articlesCount" : "0",
    "permalink" : "reviews",
    "child" : [ {
      "visibility" : "ALL_USERS",
      "level" : "3",
      "description" : "Design pattern analysis",
      "translatedDescription" : "Design pattern analysis",
      "translatedName" : "Waterfall",
      "locale" : "en",
      "logoUrl" : "https://desk.zoho.com/support/App/build/fonts/certificate.svg",
      "rootCategoryId" : "5000000066427",
      "webUrl" : "https://desk.zoho.com/portal/informatica/en/kb/engineering-zone/reviews/waterfall",
      "name" : "Waterfall",
      "parentCategoryId" : "5000000340014",
      "id" : "5000000341001",
      "articlesCount" : "0",
      "permalink" : "waterfall",
      "child" : [ ]
    } ]
  } ]
}

Get list of badges that user obtained

QueryParams

from

int

Index from which the list is to be retrieved and it should start from 1

sortBy

string

Sort by the @createdTime@ attribute. The default sorting order is ascending. A @-@ prefix denotes descending order of sorting.

startTime

date

Start time should be in GMT time zone

endTime

date

End time should be in GMT time zone

GET /portal/api/users/([0-9]+)/badges

Request Example

https://desk.zoho.com/portal/api/users/([0-9]+)/badges

Response Example

{
  "data" : [ {
    "name" : "Cs Tiger",
    "description" : "Cs Tiger",
    "id" : "1",
    "iconUrl" : null
  }, {
    "name" : "Tenkasi Terrors",
    "description" : "Tenkasi Terrors",
    "id" : "2",
    "iconUrl" : null
  } ]
}

Get user’s actionwise points

GET /portal/api/users/([0-9]+)/scoreBoard

Request Example

https://desk.zoho.com/portal/api/users/([0-9]+)/scoreBoard

Response Example

{
  "data" : [ {
    "pointsEarned" : "3560",
    "name" : "Add Question",
    "description" : "Points will be given when a user post a Question"
  }, {
    "pointsEarned" : "230",
    "name" : "Add Idea",
    "description" : "Points will be given when a user post an Idea"
  }, {
    "pointsEarned" : "500",
    "name" : "Add Problem",
    "description" : "Points will be given when a user post an Problem"
  }, {
    "pointsEarned" : "600",
    "name" : "Add Reply",
    "description" : "Points will be given when a user reply to the post"
  }, {
    "pointsEarned" : "100",
    "name" : "Follow Topic",
    "description" : "Points will be given when a user Follow a topic"
  }, {
    "pointsEarned" : "100",
    "name" : "Profile Info Update",
    "description" : "Points will be given when a user update his profie info"
  }, {
    "pointsEarned" : "100",
    "name" : "Profile Photo Update",
    "description" : "Points will be given when a user update his profie photo"
  }, {
    "pointsEarned" : "100",
    "name" : "User Follower",
    "description" : "Points will be given when a user has been followed by another user"
  } ]
}

Error While Displaying Documentation null

July 17, 2022

Zoho Desk API Documentation

maximios / Blog

Request Example

Response Example

{
  "data" : [ {
    "name" : "Puerto Rico",
    "currencySymbol" : "USD",
    "id" : "PR",
    "currencyCode" : "USD"
  }, {
    "name" : "Palestinian Territories",
    "currencySymbol" : "ILS",
    "id" : "PS",
    "currencyCode" : "ILS"
  }, {
    "name" : "Portugal",
    "currencySymbol" : "EUR",
    "id" : "PT",
    "currencyCode" : "EUR"
  }, {
    "name" : "Palau",
    "currencySymbol" : "USD",
    "id" : "PW",
    "currencyCode" : "USD"
  }, {
    "name" : "Paraguay",
    "currencySymbol" : "PYG",
    "id" : "PY",
    "currencyCode" : "PYG"
  }, {
    "name" : "Qatar",
    "currencySymbol" : "QAR",
    "id" : "QA",
    "currencyCode" : "QAR"
  }, {
    "name" : "Andorra",
    "currencySymbol" : "EUR",
    "id" : "AD",
    "currencyCode" : "EUR"
  }, {
    "name" : "United Arab Emirates",
    "currencySymbol" : "AED",
    "id" : "AE",
    "currencyCode" : "AED"
  }, {
    "name" : "Afghanistan",
    "currencySymbol" : "AFN",
    "id" : "AF",
    "currencyCode" : "AFN"
  }, {
    "name" : "Antigua & Barbuda",
    "currencySymbol" : "XCD",
    "id" : "AG",
    "currencyCode" : "XCD"
  }, {
    "name" : "Anguilla",
    "currencySymbol" : "XCD",
    "id" : "AI",
    "currencyCode" : "XCD"
  }, {
    "name" : "Albania",
    "currencySymbol" : "ALL",
    "id" : "AL",
    "currencyCode" : "ALL"
  }, {
    "name" : "Armenia",
    "currencySymbol" : "AMD",
    "id" : "AM",
    "currencyCode" : "AMD"
  }, {
    "name" : "Netherlands Antilles",
    "currencySymbol" : "ANG",
    "id" : "AN",
    "currencyCode" : "ANG"
  }, {
    "name" : "Angola",
    "currencySymbol" : "AOA",
    "id" : "AO",
    "currencyCode" : "AOA"
  }, {
    "name" : "Antarctica",
    "currencySymbol" : "XXX",
    "id" : "AQ",
    "currencyCode" : "-"
  }, {
    "name" : "Argentina",
    "currencySymbol" : "ARS",
    "id" : "AR",
    "currencyCode" : "ARS"
  }, {
    "name" : "American Samoa",
    "currencySymbol" : "USD",
    "id" : "AS",
    "currencyCode" : "USD"
  }, {
    "name" : "Austria",
    "currencySymbol" : "EUR",
    "id" : "AT",
    "currencyCode" : "EUR"
  }, {
    "name" : "Réunion",
    "currencySymbol" : "EUR",
    "id" : "RE",
    "currencyCode" : "EUR"
  }, {
    "name" : "Australia",
    "currencySymbol" : "$",
    "id" : "AU",
    "currencyCode" : "AUD"
  }, {
    "name" : "Aruba",
    "currencySymbol" : "AWG",
    "id" : "AW",
    "currencyCode" : "AWG"
  }, {
    "name" : "Åland Islands",
    "currencySymbol" : "EUR",
    "id" : "AX",
    "currencyCode" : "EUR"
  }, {
    "name" : "Azerbaijan",
    "currencySymbol" : "AZN",
    "id" : "AZ",
    "currencyCode" : "AZN"
  }, {
    "name" : "Romania",
    "currencySymbol" : "RON",
    "id" : "RO",
    "currencyCode" : "RON"
  }, {
    "name" : "Bosnia & Herzegovina",
    "currencySymbol" : "BAM",
    "id" : "BA",
    "currencyCode" : "BAM"
  }, {
    "name" : "Barbados",
    "currencySymbol" : "BBD",
    "id" : "BB",
    "currencyCode" : "BBD"
  }, {
    "name" : "Serbia",
    "currencySymbol" : "RSD",
    "id" : "RS",
    "currencyCode" : "RSD"
  }, {
    "name" : "Bangladesh",
    "currencySymbol" : "BDT",
    "id" : "BD",
    "currencyCode" : "BDT"
  }, {
    "name" : "Belgium",
    "currencySymbol" : "EUR",
    "id" : "BE",
    "currencyCode" : "EUR"
  }, {
    "name" : "Russia",
    "currencySymbol" : "RUB",
    "id" : "RU",
    "currencyCode" : "RUB"
  }, {
    "name" : "Burkina Faso",
    "currencySymbol" : "XOF",
    "id" : "BF",
    "currencyCode" : "XOF"
  }, {
    "name" : "Bulgaria",
    "currencySymbol" : "BGN",
    "id" : "BG",
    "currencyCode" : "BGN"
  }, {
    "name" : "Rwanda",
    "currencySymbol" : "RWF",
    "id" : "RW",
    "currencyCode" : "RWF"
  }, {
    "name" : "Bahrain",
    "currencySymbol" : "BHD",
    "id" : "BH",
    "currencyCode" : "BHD"
  }, {
    "name" : "Burundi",
    "currencySymbol" : "BIF",
    "id" : "BI",
    "currencyCode" : "BIF"
  }, {
    "name" : "Benin",
    "currencySymbol" : "XOF",
    "id" : "BJ",
    "currencyCode" : "XOF"
  }, {
    "name" : "St. Barthélemy",
    "currencySymbol" : "EUR",
    "id" : "BL",
    "currencyCode" : "EUR"
  }, {
    "name" : "Bermuda",
    "currencySymbol" : "BMD",
    "id" : "BM",
    "currencyCode" : "BMD"
  }, {
    "name" : "Brunei",
    "currencySymbol" : "BND",
    "id" : "BN",
    "currencyCode" : "BND"
  }, {
    "name" : "Bolivia",
    "currencySymbol" : "BOB",
    "id" : "BO",
    "currencyCode" : "BOB"
  }, {
    "name" : "Saudi Arabia",
    "currencySymbol" : "SAR",
    "id" : "SA",
    "currencyCode" : "SAR"
  }, {
    "name" : "Caribbean Netherlands",
    "currencySymbol" : "USD",
    "id" : "BQ",
    "currencyCode" : "USD"
  }, {
    "name" : "Solomon Islands",
    "currencySymbol" : "SBD",
    "id" : "SB",
    "currencyCode" : "SBD"
  }, {
    "name" : "Brazil",
    "currencySymbol" : "BRL",
    "id" : "BR",
    "currencyCode" : "BRL"
  }, {
    "name" : "Seychelles",
    "currencySymbol" : "SCR",
    "id" : "SC",
    "currencyCode" : "SCR"
  }, {
    "name" : "Bahamas",
    "currencySymbol" : "BSD",
    "id" : "BS",
    "currencyCode" : "BSD"
  }, {
    "name" : "Sudan",
    "currencySymbol" : "SDG",
    "id" : "SD",
    "currencyCode" : "SDG"
  }, {
    "name" : "Bhutan",
    "currencySymbol" : "BTN",
    "id" : "BT",
    "currencyCode" : "BTN"
  }, {
    "name" : "Sweden",
    "currencySymbol" : "SEK",
    "id" : "SE",
    "currencyCode" : "SEK"
  }, {
    "name" : "Bouvet Island",
    "currencySymbol" : "NOK",
    "id" : "BV",
    "currencyCode" : "NOK"
  }, {
    "name" : "Singapore",
    "currencySymbol" : "$",
    "id" : "SG",
    "currencyCode" : "SGD"
  }, {
    "name" : "Botswana",
    "currencySymbol" : "BWP",
    "id" : "BW",
    "currencyCode" : "BWP"
  }, {
    "name" : "St. Helena",
    "currencySymbol" : "SHP",
    "id" : "SH",
    "currencyCode" : "SHP"
  }, {
    "name" : "Slovenia",
    "currencySymbol" : "EUR",
    "id" : "SI",
    "currencyCode" : "EUR"
  }, {
    "name" : "Belarus",
    "currencySymbol" : "BYN",
    "id" : "BY",
    "currencyCode" : "BYN"
  }, {
    "name" : "Svalbard & Jan Mayen",
    "currencySymbol" : "NOK",
    "id" : "SJ",
    "currencyCode" : "NOK"
  }, {
    "name" : "Belize",
    "currencySymbol" : "BZD",
    "id" : "BZ",
    "currencyCode" : "BZD"
  }, {
    "name" : "Slovakia",
    "currencySymbol" : "EUR",
    "id" : "SK",
    "currencyCode" : "EUR"
  }, {
    "name" : "Sierra Leone",
    "currencySymbol" : "SLL",
    "id" : "SL",
    "currencyCode" : "SLL"
  }, {
    "name" : "San Marino",
    "currencySymbol" : "EUR",
    "id" : "SM",
    "currencyCode" : "EUR"
  }, {
    "name" : "Senegal",
    "currencySymbol" : "XOF",
    "id" : "SN",
    "currencyCode" : "XOF"
  }, {
    "name" : "Somalia",
    "currencySymbol" : "SOS",
    "id" : "SO",
    "currencyCode" : "SOS"
  }, {
    "name" : "Canada",
    "currencySymbol" : "$",
    "id" : "CA",
    "currencyCode" : "CAD"
  }, {
    "name" : "Suriname",
    "currencySymbol" : "SRD",
    "id" : "SR",
    "currencyCode" : "SRD"
  }, {
    "name" : "Cocos (Keeling) Islands",
    "currencySymbol" : "AUD",
    "id" : "CC",
    "currencyCode" : "AUD"
  }, {
    "name" : "South Sudan",
    "currencySymbol" : "SSP",
    "id" : "SS",
    "currencyCode" : "SSP"
  }, {
    "name" : "Congo - Kinshasa",
    "currencySymbol" : "CDF",
    "id" : "CD",
    "currencyCode" : "CDF"
  }, {
    "name" : "São Tomé & Príncipe",
    "currencySymbol" : "STN",
    "id" : "ST",
    "currencyCode" : "STN"
  }, {
    "name" : "Central African Republic",
    "currencySymbol" : "XAF",
    "id" : "CF",
    "currencyCode" : "XAF"
  }, {
    "name" : "El Salvador",
    "currencySymbol" : "SVC",
    "id" : "SV",
    "currencyCode" : "SVC"
  }, {
    "name" : "Congo - Brazzaville",
    "currencySymbol" : "XAF",
    "id" : "CG",
    "currencyCode" : "XAF"
  }, {
    "name" : "Switzerland",
    "currencySymbol" : "CHF",
    "id" : "CH",
    "currencyCode" : "CHF"
  }, {
    "name" : "Sint Maarten",
    "currencySymbol" : "ANG",
    "id" : "SX",
    "currencyCode" : "ANG"
  }, {
    "name" : "Côte d’Ivoire",
    "currencySymbol" : "XOF",
    "id" : "CI",
    "currencyCode" : "XOF"
  }, {
    "name" : "Syria",
    "currencySymbol" : "SYP",
    "id" : "SY",
    "currencyCode" : "SYP"
  }, {
    "name" : "Eswatini",
    "currencySymbol" : "SZL",
    "id" : "SZ",
    "currencyCode" : "SZL"
  }, {
    "name" : "Cook Islands",
    "currencySymbol" : "NZD",
    "id" : "CK",
    "currencyCode" : "NZD"
  }, {
    "name" : "Chile",
    "currencySymbol" : "CLP",
    "id" : "CL",
    "currencyCode" : "CLP"
  }, {
    "name" : "Cameroon",
    "currencySymbol" : "XAF",
    "id" : "CM",
    "currencyCode" : "XAF"
  }, {
    "name" : "China",
    "currencySymbol" : "CNY",
    "id" : "CN",
    "currencyCode" : "CNY"
  }, {
    "name" : "Colombia",
    "currencySymbol" : "COP",
    "id" : "CO",
    "currencyCode" : "COP"
  }, {
    "name" : "Costa Rica",
    "currencySymbol" : "CRC",
    "id" : "CR",
    "currencyCode" : "CRC"
  }, {
    "name" : "Turks & Caicos Islands",
    "currencySymbol" : "USD",
    "id" : "TC",
    "currencyCode" : "USD"
  }, {
    "name" : "Chad",
    "currencySymbol" : "XAF",
    "id" : "TD",
    "currencyCode" : "XAF"
  }, {
    "name" : "Cuba",
    "currencySymbol" : "CUP",
    "id" : "CU",
    "currencyCode" : "CUP"
  }, {
    "name" : "French Southern Territories",
    "currencySymbol" : "EUR",
    "id" : "TF",
    "currencyCode" : "EUR"
  }, {
    "name" : "Cape Verde",
    "currencySymbol" : "CVE",
    "id" : "CV",
    "currencyCode" : "CVE"
  }, {
    "name" : "Togo",
    "currencySymbol" : "XOF",
    "id" : "TG",
    "currencyCode" : "XOF"
  }, {
    "name" : "Curaçao",
    "currencySymbol" : "ANG",
    "id" : "CW",
    "currencyCode" : "ANG"
  }, {
    "name" : "Thailand",
    "currencySymbol" : "THB",
    "id" : "TH",
    "currencyCode" : "THB"
  }, {
    "name" : "Christmas Island",
    "currencySymbol" : "AUD",
    "id" : "CX",
    "currencyCode" : "AUD"
  }, {
    "name" : "Cyprus",
    "currencySymbol" : "EUR",
    "id" : "CY",
    "currencyCode" : "EUR"
  }, {
    "name" : "Tajikistan",
    "currencySymbol" : "TJS",
    "id" : "TJ",
    "currencyCode" : "TJS"
  }, {
    "name" : "Czechia",
    "currencySymbol" : "CZK",
    "id" : "CZ",
    "currencyCode" : "CZK"
  }, {
    "name" : "Tokelau",
    "currencySymbol" : "NZD",
    "id" : "TK",
    "currencyCode" : "NZD"
  }, {
    "name" : "Timor-Leste",
    "currencySymbol" : "USD",
    "id" : "TL",
    "currencyCode" : "USD"
  }, {
    "name" : "Turkmenistan",
    "currencySymbol" : "TMT",
    "id" : "TM",
    "currencyCode" : "TMT"
  }, {
    "name" : "Tunisia",
    "currencySymbol" : "TND",
    "id" : "TN",
    "currencyCode" : "TND"
  }, {
    "name" : "Tonga",
    "currencySymbol" : "TOP",
    "id" : "TO",
    "currencyCode" : "TOP"
  }, {
    "name" : "Turkey",
    "currencySymbol" : "TRY",
    "id" : "TR",
    "currencyCode" : "TRY"
  }, {
    "name" : "Trinidad & Tobago",
    "currencySymbol" : "TTD",
    "id" : "TT",
    "currencyCode" : "TTD"
  }, {
    "name" : "Germany",
    "currencySymbol" : "EUR",
    "id" : "DE",
    "currencyCode" : "EUR"
  }, {
    "name" : "Tuvalu",
    "currencySymbol" : "AUD",
    "id" : "TV",
    "currencyCode" : "AUD"
  }, {
    "name" : "Taiwan",
    "currencySymbol" : "TWD",
    "id" : "TW",
    "currencyCode" : "TWD"
  }, {
    "name" : "Djibouti",
    "currencySymbol" : "DJF",
    "id" : "DJ",
    "currencyCode" : "DJF"
  }, {
    "name" : "Tanzania",
    "currencySymbol" : "TZS",
    "id" : "TZ",
    "currencyCode" : "TZS"
  }, {
    "name" : "Denmark",
    "currencySymbol" : "DKK",
    "id" : "DK",
    "currencyCode" : "DKK"
  }, {
    "name" : "Dominica",
    "currencySymbol" : "XCD",
    "id" : "DM",
    "currencyCode" : "XCD"
  }, {
    "name" : "Dominican Republic",
    "currencySymbol" : "DOP",
    "id" : "DO",
    "currencyCode" : "DOP"
  }, {
    "name" : "Ukraine",
    "currencySymbol" : "UAH",
    "id" : "UA",
    "currencyCode" : "UAH"
  }, {
    "name" : "Uganda",
    "currencySymbol" : "UGX",
    "id" : "UG",
    "currencyCode" : "UGX"
  }, {
    "name" : "Algeria",
    "currencySymbol" : "DZD",
    "id" : "DZ",
    "currencyCode" : "DZD"
  }, {
    "name" : "U.S. Outlying Islands",
    "currencySymbol" : "USD",
    "id" : "UM",
    "currencyCode" : "USD"
  }, {
    "name" : "Ecuador",
    "currencySymbol" : "USD",
    "id" : "EC",
    "currencyCode" : "USD"
  }, {
    "name" : "United States",
    "currencySymbol" : "$",
    "id" : "US",
    "currencyCode" : "USD"
  }, {
    "name" : "Estonia",
    "currencySymbol" : "EUR",
    "id" : "EE",
    "currencyCode" : "EUR"
  }, {
    "name" : "Egypt",
    "currencySymbol" : "EGP",
    "id" : "EG",
    "currencyCode" : "EGP"
  }, {
    "name" : "Western Sahara",
    "currencySymbol" : "MAD",
    "id" : "EH",
    "currencyCode" : "MAD"
  }, {
    "name" : "Uruguay",
    "currencySymbol" : "UYU",
    "id" : "UY",
    "currencyCode" : "UYU"
  }, {
    "name" : "Uzbekistan",
    "currencySymbol" : "UZS",
    "id" : "UZ",
    "currencyCode" : "UZS"
  }, {
    "name" : "Vatican City",
    "currencySymbol" : "EUR",
    "id" : "VA",
    "currencyCode" : "EUR"
  }, {
    "name" : "Eritrea",
    "currencySymbol" : "ERN",
    "id" : "ER",
    "currencyCode" : "ERN"
  }, {
    "name" : "St. Vincent & Grenadines",
    "currencySymbol" : "XCD",
    "id" : "VC",
    "currencyCode" : "XCD"
  }, {
    "name" : "Spain",
    "currencySymbol" : "EUR",
    "id" : "ES",
    "currencyCode" : "EUR"
  }, {
    "name" : "Ethiopia",
    "currencySymbol" : "ETB",
    "id" : "ET",
    "currencyCode" : "ETB"
  }, {
    "name" : "Venezuela",
    "currencySymbol" : "VES",
    "id" : "VE",
    "currencyCode" : "VES"
  }, {
    "name" : "British Virgin Islands",
    "currencySymbol" : "USD",
    "id" : "VG",
    "currencyCode" : "USD"
  }, {
    "name" : "U.S. Virgin Islands",
    "currencySymbol" : "USD",
    "id" : "VI",
    "currencyCode" : "USD"
  }, {
    "name" : "Vietnam",
    "currencySymbol" : "VND",
    "id" : "VN",
    "currencyCode" : "VND"
  }, {
    "name" : "Vanuatu",
    "currencySymbol" : "VUV",
    "id" : "VU",
    "currencyCode" : "VUV"
  }, {
    "name" : "Finland",
    "currencySymbol" : "EUR",
    "id" : "FI",
    "currencyCode" : "EUR"
  }, {
    "name" : "Fiji",
    "currencySymbol" : "FJD",
    "id" : "FJ",
    "currencyCode" : "FJD"
  }, {
    "name" : "Falkland Islands",
    "currencySymbol" : "FKP",
    "id" : "FK",
    "currencyCode" : "FKP"
  }, {
    "name" : "Micronesia",
    "currencySymbol" : "USD",
    "id" : "FM",
    "currencyCode" : "USD"
  }, {
    "name" : "Faroe Islands",
    "currencySymbol" : "DKK",
    "id" : "FO",
    "currencyCode" : "DKK"
  }, {
    "name" : "France",
    "currencySymbol" : "EUR",
    "id" : "FR",
    "currencyCode" : "EUR"
  }, {
    "name" : "Wallis & Futuna",
    "currencySymbol" : "XPF",
    "id" : "WF",
    "currencyCode" : "XPF"
  }, {
    "name" : "Gabon",
    "currencySymbol" : "XAF",
    "id" : "GA",
    "currencyCode" : "XAF"
  }, {
    "name" : "United Kingdom",
    "currencySymbol" : "£",
    "id" : "GB",
    "currencyCode" : "GBP"
  }, {
    "name" : "Samoa",
    "currencySymbol" : "WST",
    "id" : "WS",
    "currencyCode" : "WST"
  }, {
    "name" : "Grenada",
    "currencySymbol" : "XCD",
    "id" : "GD",
    "currencyCode" : "XCD"
  }, {
    "name" : "Georgia",
    "currencySymbol" : "GEL",
    "id" : "GE",
    "currencyCode" : "GEL"
  }, {
    "name" : "French Guiana",
    "currencySymbol" : "EUR",
    "id" : "GF",
    "currencyCode" : "EUR"
  }, {
    "name" : "Guernsey",
    "currencySymbol" : "GBP",
    "id" : "GG",
    "currencyCode" : "GBP"
  }, {
    "name" : "Ghana",
    "currencySymbol" : "GHS",
    "id" : "GH",
    "currencyCode" : "GHS"
  }, {
    "name" : "Gibraltar",
    "currencySymbol" : "GIP",
    "id" : "GI",
    "currencyCode" : "GIP"
  }, {
    "name" : "Greenland",
    "currencySymbol" : "DKK",
    "id" : "GL",
    "currencyCode" : "DKK"
  }, {
    "name" : "Gambia",
    "currencySymbol" : "GMD",
    "id" : "GM",
    "currencyCode" : "GMD"
  }, {
    "name" : "Guinea",
    "currencySymbol" : "GNF",
    "id" : "GN",
    "currencyCode" : "GNF"
  }, {
    "name" : "Guadeloupe",
    "currencySymbol" : "EUR",
    "id" : "GP",
    "currencyCode" : "EUR"
  }, {
    "name" : "Equatorial Guinea",
    "currencySymbol" : "XAF",
    "id" : "GQ",
    "currencyCode" : "XAF"
  }, {
    "name" : "Greece",
    "currencySymbol" : "EUR",
    "id" : "GR",
    "currencyCode" : "EUR"
  }, {
    "name" : "South Georgia & South Sandwich Islands",
    "currencySymbol" : "GBP",
    "id" : "GS",
    "currencyCode" : "GBP"
  }, {
    "name" : "Guatemala",
    "currencySymbol" : "GTQ",
    "id" : "GT",
    "currencyCode" : "GTQ"
  }, {
    "name" : "Guam",
    "currencySymbol" : "USD",
    "id" : "GU",
    "currencyCode" : "USD"
  }, {
    "name" : "Guinea-Bissau",
    "currencySymbol" : "XOF",
    "id" : "GW",
    "currencyCode" : "XOF"
  }, {
    "name" : "Guyana",
    "currencySymbol" : "GYD",
    "id" : "GY",
    "currencyCode" : "GYD"
  }, {
    "name" : "Kosovo",
    "currencySymbol" : "XXX",
    "id" : "XK",
    "currencyCode" : "-"
  }, {
    "name" : "Hong Kong SAR China",
    "currencySymbol" : "HKD",
    "id" : "HK",
    "currencyCode" : "HKD"
  }, {
    "name" : "Heard & McDonald Islands",
    "currencySymbol" : "AUD",
    "id" : "HM",
    "currencyCode" : "AUD"
  }, {
    "name" : "Honduras",
    "currencySymbol" : "HNL",
    "id" : "HN",
    "currencyCode" : "HNL"
  }, {
    "name" : "Croatia",
    "currencySymbol" : "HRK",
    "id" : "HR",
    "currencyCode" : "HRK"
  }, {
    "name" : "Haiti",
    "currencySymbol" : "HTG",
    "id" : "HT",
    "currencyCode" : "HTG"
  }, {
    "name" : "Yemen",
    "currencySymbol" : "YER",
    "id" : "YE",
    "currencyCode" : "YER"
  }, {
    "name" : "Hungary",
    "currencySymbol" : "HUF",
    "id" : "HU",
    "currencyCode" : "HUF"
  }, {
    "name" : "Indonesia",
    "currencySymbol" : "IDR",
    "id" : "ID",
    "currencyCode" : "IDR"
  }, {
    "name" : "Mayotte",
    "currencySymbol" : "EUR",
    "id" : "YT",
    "currencyCode" : "EUR"
  }, {
    "name" : "Ireland",
    "currencySymbol" : "€",
    "id" : "IE",
    "currencyCode" : "EUR"
  }, {
    "name" : "Israel",
    "currencySymbol" : "ILS",
    "id" : "IL",
    "currencyCode" : "ILS"
  }, {
    "name" : "Isle of Man",
    "currencySymbol" : "GBP",
    "id" : "IM",
    "currencyCode" : "GBP"
  }, {
    "name" : "India",
    "currencySymbol" : "Rs.",
    "id" : "IN",
    "currencyCode" : "INR"
  }, {
    "name" : "British Indian Ocean Territory",
    "currencySymbol" : "USD",
    "id" : "IO",
    "currencyCode" : "USD"
  }, {
    "name" : "South Africa",
    "currencySymbol" : "R",
    "id" : "ZA",
    "currencyCode" : "ZAR"
  }, {
    "name" : "Iraq",
    "currencySymbol" : "IQD",
    "id" : "IQ",
    "currencyCode" : "IQD"
  }, {
    "name" : "Iran",
    "currencySymbol" : "IRR",
    "id" : "IR",
    "currencyCode" : "IRR"
  }, {
    "name" : "Iceland",
    "currencySymbol" : "ISK",
    "id" : "IS",
    "currencyCode" : "ISK"
  }, {
    "name" : "Italy",
    "currencySymbol" : "EUR",
    "id" : "IT",
    "currencyCode" : "EUR"
  }, {
    "name" : "Zambia",
    "currencySymbol" : "ZMW",
    "id" : "ZM",
    "currencyCode" : "ZMW"
  }, {
    "name" : "Jersey",
    "currencySymbol" : "GBP",
    "id" : "JE",
    "currencyCode" : "GBP"
  }, {
    "name" : "Zimbabwe",
    "currencySymbol" : "ZWL",
    "id" : "ZW",
    "currencyCode" : "ZWL"
  }, {
    "name" : "Jamaica",
    "currencySymbol" : "JMD",
    "id" : "JM",
    "currencyCode" : "JMD"
  }, {
    "name" : "Jordan",
    "currencySymbol" : "JOD",
    "id" : "JO",
    "currencyCode" : "JOD"
  }, {
    "name" : "Japan",
    "currencySymbol" : "JPY",
    "id" : "JP",
    "currencyCode" : "JPY"
  }, {
    "name" : "Kenya",
    "currencySymbol" : "KES",
    "id" : "KE",
    "currencyCode" : "KES"
  }, {
    "name" : "Kyrgyzstan",
    "currencySymbol" : "KGS",
    "id" : "KG",
    "currencyCode" : "KGS"
  }, {
    "name" : "Cambodia",
    "currencySymbol" : "KHR",
    "id" : "KH",
    "currencyCode" : "KHR"
  }, {
    "name" : "Kiribati",
    "currencySymbol" : "AUD",
    "id" : "KI",
    "currencyCode" : "AUD"
  }, {
    "name" : "Comoros",
    "currencySymbol" : "KMF",
    "id" : "KM",
    "currencyCode" : "KMF"
  }, {
    "name" : "St. Kitts & Nevis",
    "currencySymbol" : "XCD",
    "id" : "KN",
    "currencyCode" : "XCD"
  }, {
    "name" : "North Korea",
    "currencySymbol" : "KPW",
    "id" : "KP",
    "currencyCode" : "KPW"
  }, {
    "name" : "South Korea",
    "currencySymbol" : "KRW",
    "id" : "KR",
    "currencyCode" : "KRW"
  }, {
    "name" : "Kuwait",
    "currencySymbol" : "KWD",
    "id" : "KW",
    "currencyCode" : "KWD"
  }, {
    "name" : "Cayman Islands",
    "currencySymbol" : "KYD",
    "id" : "KY",
    "currencyCode" : "KYD"
  }, {
    "name" : "Kazakhstan",
    "currencySymbol" : "KZT",
    "id" : "KZ",
    "currencyCode" : "KZT"
  }, {
    "name" : "Laos",
    "currencySymbol" : "LAK",
    "id" : "LA",
    "currencyCode" : "LAK"
  }, {
    "name" : "Lebanon",
    "currencySymbol" : "LBP",
    "id" : "LB",
    "currencyCode" : "LBP"
  }, {
    "name" : "St. Lucia",
    "currencySymbol" : "XCD",
    "id" : "LC",
    "currencyCode" : "XCD"
  }, {
    "name" : "Liechtenstein",
    "currencySymbol" : "CHF",
    "id" : "LI",
    "currencyCode" : "CHF"
  }, {
    "name" : "Sri Lanka",
    "currencySymbol" : "LKR",
    "id" : "LK",
    "currencyCode" : "LKR"
  }, {
    "name" : "Liberia",
    "currencySymbol" : "LRD",
    "id" : "LR",
    "currencyCode" : "LRD"
  }, {
    "name" : "Lesotho",
    "currencySymbol" : "LSL",
    "id" : "LS",
    "currencyCode" : "LSL"
  }, {
    "name" : "Lithuania",
    "currencySymbol" : "EUR",
    "id" : "LT",
    "currencyCode" : "EUR"
  }, {
    "name" : "Luxembourg",
    "currencySymbol" : "EUR",
    "id" : "LU",
    "currencyCode" : "EUR"
  }, {
    "name" : "Latvia",
    "currencySymbol" : "EUR",
    "id" : "LV",
    "currencyCode" : "EUR"
  }, {
    "name" : "Libya",
    "currencySymbol" : "LYD",
    "id" : "LY",
    "currencyCode" : "LYD"
  }, {
    "name" : "Morocco",
    "currencySymbol" : "MAD",
    "id" : "MA",
    "currencyCode" : "MAD"
  }, {
    "name" : "Monaco",
    "currencySymbol" : "EUR",
    "id" : "MC",
    "currencyCode" : "EUR"
  }, {
    "name" : "Moldova",
    "currencySymbol" : "MDL",
    "id" : "MD",
    "currencyCode" : "MDL"
  }, {
    "name" : "Montenegro",
    "currencySymbol" : "EUR",
    "id" : "ME",
    "currencyCode" : "EUR"
  }, {
    "name" : "St. Martin",
    "currencySymbol" : "EUR",
    "id" : "MF",
    "currencyCode" : "EUR"
  }, {
    "name" : "Madagascar",
    "currencySymbol" : "MGA",
    "id" : "MG",
    "currencyCode" : "MGA"
  }, {
    "name" : "Marshall Islands",
    "currencySymbol" : "USD",
    "id" : "MH",
    "currencyCode" : "USD"
  }, {
    "name" : "North Macedonia",
    "currencySymbol" : "MKD",
    "id" : "MK",
    "currencyCode" : "MKD"
  }, {
    "name" : "Mali",
    "currencySymbol" : "XOF",
    "id" : "ML",
    "currencyCode" : "XOF"
  }, {
    "name" : "Myanmar (Burma)",
    "currencySymbol" : "MMK",
    "id" : "MM",
    "currencyCode" : "MMK"
  }, {
    "name" : "Mongolia",
    "currencySymbol" : "MNT",
    "id" : "MN",
    "currencyCode" : "MNT"
  }, {
    "name" : "Macao SAR China",
    "currencySymbol" : "MOP",
    "id" : "MO",
    "currencyCode" : "MOP"
  }, {
    "name" : "Northern Mariana Islands",
    "currencySymbol" : "USD",
    "id" : "MP",
    "currencyCode" : "USD"
  }, {
    "name" : "Martinique",
    "currencySymbol" : "EUR",
    "id" : "MQ",
    "currencyCode" : "EUR"
  }, {
    "name" : "Mauritania",
    "currencySymbol" : "MRU",
    "id" : "MR",
    "currencyCode" : "MRU"
  }, {
    "name" : "Montserrat",
    "currencySymbol" : "XCD",
    "id" : "MS",
    "currencyCode" : "XCD"
  }, {
    "name" : "Malta",
    "currencySymbol" : "€",
    "id" : "MT",
    "currencyCode" : "EUR"
  }, {
    "name" : "Mauritius",
    "currencySymbol" : "MUR",
    "id" : "MU",
    "currencyCode" : "MUR"
  }, {
    "name" : "Maldives",
    "currencySymbol" : "MVR",
    "id" : "MV",
    "currencyCode" : "MVR"
  }, {
    "name" : "Malawi",
    "currencySymbol" : "MWK",
    "id" : "MW",
    "currencyCode" : "MWK"
  }, {
    "name" : "Mexico",
    "currencySymbol" : "MXN",
    "id" : "MX",
    "currencyCode" : "MXN"
  }, {
    "name" : "Malaysia",
    "currencySymbol" : "MYR",
    "id" : "MY",
    "currencyCode" : "MYR"
  }, {
    "name" : "Mozambique",
    "currencySymbol" : "MZN",
    "id" : "MZ",
    "currencyCode" : "MZN"
  }, {
    "name" : "Namibia",
    "currencySymbol" : "NAD",
    "id" : "NA",
    "currencyCode" : "NAD"
  }, {
    "name" : "New Caledonia",
    "currencySymbol" : "XPF",
    "id" : "NC",
    "currencyCode" : "XPF"
  }, {
    "name" : "Niger",
    "currencySymbol" : "XOF",
    "id" : "NE",
    "currencyCode" : "XOF"
  }, {
    "name" : "Norfolk Island",
    "currencySymbol" : "AUD",
    "id" : "NF",
    "currencyCode" : "AUD"
  }, {
    "name" : "Nigeria",
    "currencySymbol" : "NGN",
    "id" : "NG",
    "currencyCode" : "NGN"
  }, {
    "name" : "Nicaragua",
    "currencySymbol" : "NIO",
    "id" : "NI",
    "currencyCode" : "NIO"
  }, {
    "name" : "Netherlands",
    "currencySymbol" : "EUR",
    "id" : "NL",
    "currencyCode" : "EUR"
  }, {
    "name" : "Norway",
    "currencySymbol" : "NOK",
    "id" : "NO",
    "currencyCode" : "NOK"
  }, {
    "name" : "Nepal",
    "currencySymbol" : "NPR",
    "id" : "NP",
    "currencyCode" : "NPR"
  }, {
    "name" : "Nauru",
    "currencySymbol" : "AUD",
    "id" : "NR",
    "currencyCode" : "AUD"
  }, {
    "name" : "Niue",
    "currencySymbol" : "NZD",
    "id" : "NU",
    "currencyCode" : "NZD"
  }, {
    "name" : "New Zealand",
    "currencySymbol" : "$",
    "id" : "NZ",
    "currencyCode" : "NZD"
  }, {
    "name" : "Oman",
    "currencySymbol" : "OMR",
    "id" : "OM",
    "currencyCode" : "OMR"
  }, {
    "name" : "Panama",
    "currencySymbol" : "PAB",
    "id" : "PA",
    "currencyCode" : "PAB"
  }, {
    "name" : "Peru",
    "currencySymbol" : "PEN",
    "id" : "PE",
    "currencyCode" : "PEN"
  }, {
    "name" : "French Polynesia",
    "currencySymbol" : "XPF",
    "id" : "PF",
    "currencyCode" : "XPF"
  }, {
    "name" : "Papua New Guinea",
    "currencySymbol" : "PGK",
    "id" : "PG",
    "currencyCode" : "PGK"
  }, {
    "name" : "Philippines",
    "currencySymbol" : "Php",
    "id" : "PH",
    "currencyCode" : "PHP"
  }, {
    "name" : "Pakistan",
    "currencySymbol" : "PKR",
    "id" : "PK",
    "currencyCode" : "PKR"
  }, {
    "name" : "Poland",
    "currencySymbol" : "PLN",
    "id" : "PL",
    "currencyCode" : "PLN"
  }, {
    "name" : "St. Pierre & Miquelon",
    "currencySymbol" : "EUR",
    "id" : "PM",
    "currencyCode" : "EUR"
  }, {
    "name" : "Pitcairn Islands",
    "currencySymbol" : "NZD",
    "id" : "PN",
    "currencyCode" : "NZD"
  } ],
  "countries" : {
    "Papua New Guinea" : "en_PG",
    "Cambodia" : "km_KH",
    "Kazakhstan" : "ru_KZ",
    "Paraguay" : "es_PY",
    "Syria" : "ar_SY",
    "Bahamas" : "en_BS",
    "Solomon Islands" : "en_SB",
    "Montserrat" : "en_MS",
    "Mali" : "fr_ML",
    "Marshall Islands" : "en_MH",
    "Guadeloupe" : "fr_GP",
    "Panama" : "es_PA",
    "Laos" : "lo_LA",
    "Vatican" : "it_VA",
    "Argentina" : "es_AR",
    "Falkland Islands" : "en_FK",
    "Virgin Islands" : "en_VI",
    "Seychelles" : "en_SC",
    "Belize" : "en_BZ",
    "Zambia" : "en_ZM",
    "Bahrain" : "ar_BH",
    "Congo" : "fr_CG",
    "Namibia" : "en_NA",
    "Comoros" : "fr_KM",
    "Faroe Islands" : "fo_FO",
    "Finland" : "fi_FI",
    "Netherlands Antilles" : "nl_AN",
    "Georgia" : "ka_GE",
    "Yemen" : "ar_YE",
    "Eritrea" : "en_ER",
    "Puerto Rico" : "es_PR",
    "Aruba" : "nl_AW",
    "Madagascar" : "en_MG",
    "Libya" : "ar_LY",
    "Sweden" : "sv_SE",
    "Malawi" : "en_MW",
    "Andorra" : "ca_AD",
    "Liechtenstein" : "de_LI",
    "Algerian" : "ar_DZ",
    "Poland" : "pl_PL",
    "Bulgaria" : "bg_BG",
    "Jordan" : "ar_JO",
    "Tunisia" : "ar_TN",
    "Tuvalu" : "en_TV",
    "United Arab Emirates" : "ar_AE",
    "Kenya" : "sw_KE",
    "French Polynesia" : "fr_PF",
    "Brunei" : "ms_BN",
    "Djibouti" : "ar_DJ",
    "Lebanon" : "ar_LB",
    "Azerbaijan" : "az_AZ",
    "Cuba" : "es_CU",
    "Czech Republic" : "cs_CZ",
    "Mauritania" : "ar_MR",
    "Saint Lucia" : "en_LC",
    "Mayotte" : "fr_YT",
    "Israel" : "iw_IL",
    "San Marino" : "it_SM",
    "Australia" : "en_AU",
    "Tajikistan" : "fa_TJ",
    "Myanmar" : "my_MM",
    "Cameroon" : "fr_CM",
    "Gibraltar" : "en_GI",
    "Cyprus" : "el_CY",
    "Northern Mariana Islands" : "en_MP",
    "Malaysia" : "ms_MY",
    "BelgiumFrench" : "fr_BE",
    "dIvoire" : "fr_CI",
    "Iceland" : "is_IS",
    "Oman" : "ar_OM",
    "Armenia" : "hy_AM",
    "Gabon" : "fr_GA",
    "CanadaFrench" : "fr_CA",
    "Brazil" : "pt_BR",
    "Slovenia" : "sl_SI",
    "LuxembourgFrench" : "fr_LU",
    "Antigua and Barbuda" : "en_AG",
    "Colombia" : "es_CO",
    "Ecuador" : "es_EC",
    "Moldova" : "ro_MD",
    "Vanuatu" : "bi_VU",
    "United States Minor Outlying Islands" : "en_UM",
    "Cocos Islands" : "en_CC",
    "Honduras" : "es_HN",
    "Italy" : "it_IT",
    "Antarctica" : "en_AQ",
    "Nauru" : "en_NR",
    "SwitzerlandFrench" : "fr_CH",
    "Haiti" : "fr_HT",
    "Afghanistan" : "ps_AF",
    "Burundi" : "fr_BI",
    "CanadaEnglish" : "en_CA",
    "Singapore" : "en_SG",
    "French Guiana" : "fr_GF",
    "GuineaBissau" : "pt_GW",
    "American Samoa" : "en_AS",
    "Christmas Island" : "en_CX",
    "Russia" : "ru_RU",
    "Netherlands" : "nl_NL",
    "China" : "zh_CN",
    "Martinique" : "fr_MQ",
    "The Democratic Republic Of Congo" : "fr_CD",
    "Kyrgyzstan" : "uz_KG",
    "Wallis And Futuna" : "fr_WF",
    "Reunion" : "fr_RE",
    "Saint Pierre And Miquelon" : "fr_PM",
    "Bhutan" : "en_BT",
    "Romania" : "ro_RO",
    "Togo" : "fr_TG",
    "Philippines" : "en_PH",
    "Uzbekistan" : "uz_UZ",
    "Pitcairn" : "en_PN",
    "British Virgin Islands" : "en_VG",
    "Zimbabwe" : "en_ZW",
    "British Indian Ocean Territory" : "en_IO",
    "Dominica" : "en_DM",
    "Indonesia" : "id_ID",
    "Benin" : "fr_BJ",
    "Angola" : "pt_AO",
    "Sudan" : "ar_SD",
    "Portugal" : "pt_PT",
    "New Caledonia" : "fr_NC",
    "Grenada" : "en_GD",
    "North Korea" : "ko_KP",
    "Cayman Islands" : "en_KY",
    "Greece" : "el_GR",
    "Latvia" : "lv_LV",
    "Mongolia" : "mn_MN",
    "Iran" : "fa_IR",
    "Morocco" : "ar_MA",
    "Guatemala" : "es_GT",
    "Guyana" : "en_GY",
    "Iraq" : "ar_IQ",
    "Chile" : "es_CL",
    "Nepal" : "ne_NP",
    "SpainCatalan" : "ca_ES",
    "Tanzania" : "sw_TZ",
    "Ukraine" : "uk_UA",
    "Ghana" : "en_GH",
    "Anguilla" : "en_AI",
    "Saint Vincent And The Grenadines" : "en_VC",
    "SwitzerlandItalian" : "it_CH",
    "India" : "en_IN",
    "Maldives" : "dv_MV",
    "Turkey" : "tr_TR",
    "Taiwan" : "zh_TW",
    "South Africa" : "en_ZA",
    "Trinidad and Tobago" : "en_TT",
    "Bermuda" : "en_BM",
    "Central African Republic" : "fr_CF",
    "Jamaica" : "en_JM",
    "Peru" : "es_PE",
    "Turkmenistan" : "tk_TM",
    "Germany" : "de_DE",
    "Fiji" : "fj_FJ",
    "Tokelau" : "en_TK",
    "Hong Kong" : "zh_HK",
    "Guinea" : "fr_GN",
    "United States" : "en_US",
    "Chad" : "ar_TD",
    "Somalia" : "so_SO",
    "Thailand" : "th_TH",
    "Equatorial Guinea" : "es_GQ",
    "Kiribati" : "en_KI",
    "Costa Rica" : "es_CR",
    "Vietnam" : "vi_VN",
    "Kuwait" : "ar_KW",
    "Nigeria" : "en_NG",
    "Croatia" : "hr_HR",
    "Sao Tome And Principe" : "pt_ST",
    "Cook Islands" : "en_CK",
    "Sri Lanka" : "si_LK",
    "Uruguay" : "es_UY",
    "United Kingdom" : "en_GB",
    "Samoa" : "en_WS",
    "Palestine" : "ar_PS",
    "Liberia" : "en_LR",
    "Venezuela" : "es_VE",
    "Burkina Faso" : "fr_BF",
    "Swaziland" : "en_SZ",
    "Palau" : "en_PW",
    "Turks And Caicos Islands" : "en_TC",
    "Estonia" : "et_EE",
    "Niue" : "en_NU",
    "Heard Island And McDonald Islands" : "en_HM",
    "Svalbard And Jan Mayen" : "no_SJ",
    "BelgiumDutch" : "nl_BE",
    "SpainSpanish" : "es_ES",
    "Austria" : "de_AT",
    "South Korea" : "ko_KR",
    "Mozambique" : "pt_MZ",
    "El Salvador" : "es_SV",
    "Monaco" : "fr_MC",
    "Guam" : "en_GU",
    "Lesotho" : "en_LS",
    "Tonga" : "to_TO",
    "Western Sahara" : "ar_EH",
    "Hungary" : "hu_HU",
    "land Islands" : "sv_AX",
    "Japan" : "ja_JP",
    "Belarus" : "be_BY",
    "SwitzerlandGerman" : "de_CH",
    "Mauritius" : "en_MU",
    "Bouvet Island" : "no_BV",
    "Norfolk Island" : "en_NF",
    "New Zealand" : "en_NZ",
    "Senegal" : "fr_SN",
    "TimorLeste" : "pt_TL",
    "Macedonia" : "mk_MK",
    "Ethiopia" : "am_ET",
    "Egypt" : "ar_EG",
    "Sierra Leone" : "en_SL",
    "Bolivia" : "es_BO",
    "LuxembourgGerman" : "de_LU",
    "Malta" : "mt_MT",
    "Saudi Arabia" : "ar_SA",
    "Cape Verde" : "pt_CV",
    "South Georgia And The South Sandwich Islands" : "en_GS",
    "Pakistan" : "en_PK",
    "Kosovo" : "en_XK",
    "Gambia" : "en_GM",
    "Ireland" : "en_IE",
    "Qatar" : "ar_QA",
    "Serbia and Montenegro" : "sr_CS",
    "Slovakia" : "sk_SK",
    "France" : "fr_FR",
    "Lithuania" : "lt_LT",
    "Bosnia and Herzegovina" : "bs_BA",
    "Albanian" : "sq_AL",
    "Niger" : "fr_NE",
    "Rwanda" : "rw_RW",
    "Saint Kitts And Nevis" : "en_KN",
    "French Southern Territories" : "fr_TF",
    "Bangladesh" : "bn_BD",
    "Barbados" : "en_BB",
    "Nicaragua" : "es_NI",
    "Norway" : "no_NO",
    "Botswana" : "en_BW",
    "Macao" : "zh_MO",
    "Denmark" : "da_DK",
    "Dominican Republic" : "es_DO",
    "Mexico" : "es_MX",
    "Uganda" : "en_UG",
    "Micronesia" : "en_FM",
    "Suriname" : "nl_SR",
    "Greenland" : "kl_GL",
    "Saint Helena" : "en_SH"
  }
}
«‹ 6 7 8 9

Recent Posts

  • Como conseguir o Green Card? Entenda os requisitos
  • Winter is coming! 5 maneiras de se aquecer no inverno dos EUA – Monkey Money
  • Monkey Money App, Autor em Monkey Money
  • Escola pública nos Estados Unidos: como conseguir uma vaga
  • Limited Liability Company (LLC): como funciona o modelo nos EUA

Recent Comments

No comments to show.

Archives

  • July 2025
  • April 2025
  • March 2025
  • December 2024
  • October 2024
  • September 2024
  • August 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024
  • August 2022
  • July 2022

Categories

  • Blog

Como conseguir o Green Card? Entenda os requisitos

Quer construir de vez sua vida aqui nos Estados Unidos? Então, é importante entender direitinho os requisitos e o como funciona o processo para obter o famoso Green Card. Talvez você até já tenha sonhado com o momento de ter esse cartão de residente permanente em mãos, né? Inclusive, se já viu a série Modern […]

Winter is coming! 5 maneiras de se aquecer no inverno dos EUA – Monkey Money

Ei, ninguém merece passar frio ou correr o risco de pegar um resfriado, né? Vestir-se bem é o primeiro passo para curtir o inverno dos EUA sem tremer de frio. E claro, além da roupa, a gente pode contar com uns truques a mais, como aquecedores e aquele banho quente delicioso. Ficar bem agasalhado faz […]

Monkey Money App, Autor em Monkey Money

9 de janeiro de 2025 Já assistiu a algum filme de Hollywood, com crianças vendendo limonada na frente de casa? Ou pessoas fazendo bazar, para ganhar alguns dólares extras? Esses temas são comuns de a gente ver por que a cultura empreendedora é essencial nos Estados Unidos. Aliás, desde a infância, todo mundo é ensinado […]

Escola pública nos Estados Unidos: como conseguir uma vaga

Você com certeza já ouviu falar que aqui nos Estados Unidos as escolas públicas são de ótima qualidade, não é mesmo? E muitas delas são mesmo! Mas o que precisa ser feito para conseguir uma vaga na escola pública? É preciso dominar o idioma? Que documentos são necessários? A escola precisa ser perto de casa? […]

Limited Liability Company (LLC): como funciona o modelo nos EUA

Os Estados Unidos são a terra das oportunidades e disso ninguém discorda. Quer um exemplo? Há um modelo de empresa ideal para pequenos negócios, autônomos e imigrantes. Estou falando do Limited Liability Company, também conhecido pelos íntimos como LLC. Esse modelo de empresa permite a qualquer um abrir uma empresa rapidamente — e nem será […]

Monkey Money – Página 2 de 22 – Seu melhor amigo nos Estados Unidos

10 de outubro de 2024 Bora falar de um assunto que nunca desagradou a ninguém: comida! Nos Estados Unidos, esse tema é ainda mais delicioso, porque o tamanho do país garante uma variedade infinita de rangos, para todos os gostos e tamanhos de estômago. Um deles é o sanduíche. Você pode ter pensado: só “sanduíche”? […]

Monkey Money – Seu melhor amigo nos Estados Unidos

9 de janeiro de 2025 Já assistiu a algum filme de Hollywood, com crianças vendendo limonada na frente de casa? Ou pessoas fazendo bazar, para ganhar alguns dólares extras? Esses temas são comuns de a gente ver por que a cultura empreendedora é essencial nos Estados Unidos. Aliás, desde a infância, todo mundo é ensinado […]

↑

© parentsrightsined.com 2026
Powered by WordPress • Themify WordPress Themes