For all operations listed below you will need to provide HTTP Request Header Authorization param. For more details see Login/Auth page.

Get the list of country notes

Route: /country_note

Method: GET

Example result

{
    "entities": [
        {
            "country_id": "1",
            "note_type_id": "123",
            "content": "Country Note Text",
            "name": "Name of the Note",
            "id": "1",
            "country_name": "Name of the Country",
            "note_type_name": "Name of the Note Type"
        },
        {
            ...
        }
        ...
    "result": true

In the country_note object:

  • country_id: Internal id of the country
  • country_name: Name of the country
  • note_type_id: Note category
  • note_type_name: Name of the note category
  • name: Name of the country note
  • content: Contents of the country note
  • id: internal identifier of the country note object

Get country note by internal ID

Route: /country_note/{internal_id}

Method: GET

Example result

{
    "entity": {
        "country_id": "1",
        "note_type_id": "123",
        "content": "Country Note Text",
        "name": "Name of the Note",
        "id": "1",
        "country_name": "Name of the Country",
        "note_type_name": "Name of the Note Type"
    },
    "result": true
}