monica_lookup_country
Retrieve the supported country catalog, including names, ISO codes, and Monica IDs, to map human-friendly country names to correct identifiers in Monica CRM.
Instructions
Retrieve the supported country catalog (name, ISO code, Monica ID). Use this before creating or updating addresses so you can map human-friendly names to the correct country identifier.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | No | ||
iso | No | ||
limit | No | ||
page | No | ||
search | No |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"maxLength": 5,
"minLength": 2,
"type": "string"
},
"iso": {
"pattern": "^[A-Za-z]{2,3}$",
"type": "string"
},
"limit": {
"maximum": 250,
"minimum": 1,
"type": "integer"
},
"page": {
"minimum": 1,
"type": "integer"
},
"search": {
"minLength": 2,
"type": "string"
}
},
"type": "object"
}