get_service_info
Retrieve details about a Square API service category, such as 'catalog' or 'payments', to understand its structure and functionality. Use this tool to prepare for accessing type-specific information.
Instructions
Get information about a Square API service. Call me before trying to get type info
Input Schema
Name | Required | Description | Default |
---|---|---|---|
service | Yes | The Square API service category (e.g., 'catalog', 'payments') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"service": {
"description": "The Square API service category (e.g., 'catalog', 'payments')",
"type": "string"
}
},
"required": [
"service"
],
"type": "object"
}