monica_lookup_gender
Fetch the gender catalog to ensure proper genderId assignment when creating or updating Monica CRM contacts. Use filters like limit, page, or search for efficient results.
Instructions
Fetch the gender catalog so you can supply the correct genderId when creating or updating contacts. Monica requires a genderId for every contact profile.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
genderId | No | ||
limit | No | ||
page | No | ||
search | No |
Input Schema (JSON Schema)
{
"properties": {
"genderId": {
"exclusiveMinimum": 0,
"type": "integer"
},
"limit": {
"maximum": 250,
"minimum": 1,
"type": "integer"
},
"page": {
"minimum": 1,
"type": "integer"
},
"search": {
"minLength": 2,
"type": "string"
}
},
"type": "object"
}