live · Productivity & Work · JSON · API for agents
Returns Identik company overview: name, description, location, products, certifications, technology partner, and integration options.
{
"name": "get_company_info",
"kind": "read",
"impl": "imperative",
"description": "Returns Identik company overview: name, description, location, products, certifications, technology partner, and integration options.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}Returns array of all 7 Identik products with id, name, short description, URL, and key features. Products: Firma Online (self-service portal, currently pre-launch), Firma Digital, Firma Electrónica, Verificación de Identidad, Wallet Digital, Archivo Digital, Notificaciones Electrónicas Certificadas.
{
"name": "list_products",
"kind": "read",
"impl": "imperative",
"description": "Returns array of all 7 Identik products with id, name, short description, URL, and key features. Products: Firma Online (self-service portal, currently pre-launch), Firma Digital, Firma Electrónica, Verificación de Identidad, Wallet Digital, Archivo Digital, Notificaciones Electrónicas Certificadas.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}Returns full details of a specific Identik product including description, features, use cases, Argentine legal basis, and technology info.
{
"name": "get_product_details",
"kind": "read",
"impl": "imperative",
"description": "Returns full details of a specific Identik product including description, features, use cases, Argentine legal basis, and technology info.",
"inputSchema": {
"type": "object",
"properties": {
"product_id": {
"type": "string",
"enum": [
"firma-online",
"firma-digital",
"firma-electronica",
"verificacion-identidad",
"wallet-digital",
"archivo-digital",
"notificaciones"
],
"description": "The product identifier"
}
},
"required": [
"product_id"
]
},
"page": "/"
}Returns the 6 industry solutions offered by Identik with typical workflows: Banca, Salud, Legal, Inmobiliario, RRHH, Gobierno.
{
"name": "list_industries",
"kind": "read",
"impl": "imperative",
"description": "Returns the 6 industry solutions offered by Identik with typical workflows: Banca, Salud, Legal, Inmobiliario, RRHH, Gobierno.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}Returns Argentine legal framework for digital signatures: Ley 25.506 articles (2, 5, 7, 10, 12), Código Civil y Comercial (Art. 286, 319), jurisprudencia, and IFDRA infrastructure.
{
"name": "get_legal_framework",
"kind": "read",
"impl": "imperative",
"description": "Returns Argentine legal framework for digital signatures: Ley 25.506 articles (2, 5, 7, 10, 12), Código Civil y Comercial (Art. 286, 319), jurisprudencia, and IFDRA infrastructure.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}Returns list of 8 technical blog articles about digital signature infrastructure, legal framework, compliance, certified notifications, digital archiving, and end-to-end signing/verification under Ley 25.506.
{
"name": "get_blog_articles",
"kind": "read",
"impl": "imperative",
"description": "Returns list of 8 technical blog articles about digital signature infrastructure, legal framework, compliance, certified notifications, digital archiving, and end-to-end signing/verification under Ley 25.506.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}Submits a contact inquiry to Identik to request a demo or ask commercial/technical questions. Returns instructions to complete the form at /contacto/ (an agent can fill it via its declarative WebMCP form tool). Ask the user to confirm before calling.
{
"name": "contact_company",
"kind": "action",
"impl": "imperative",
"description": "Submits a contact inquiry to Identik to request a demo or ask commercial/technical questions. Returns instructions to complete the form at /contacto/ (an agent can fill it via its declarative WebMCP form tool). Ask the user to confirm before calling.",
"inputSchema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Full name of the person contacting"
},
"email": {
"type": "string",
"description": "Corporate email address"
},
"company": {
"type": "string",
"description": "Company name"
},
"phone": {
"type": "string",
"description": "Phone number (optional)"
},
"tipo_consulta": {
"type": "string",
"enum": [
"Solicitar Demo",
"Consulta Comercial",
"Consulta Técnica / API",
"Partnership"
],
"description": "Type of inquiry (optional, defaults to Solicitar Demo)"
},
"mensaje": {
"type": "string",
"description": "Message or description of the project (optional)"
}
},
"required": [
"name",
"email",
"company"
]
},
"page": "/"
}