get_service_info
Retrieve essential details about a specific Square API service, such as 'catalog' or 'payments', to facilitate informed API usage and integration planning.
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"
}