arcade-mcp/toolkits/squareup_api/arcade_squareup_api/wrapper_tools/BulkRetrieveCustomers.json
jottakka f2332a7682
[Moar][Rewrapping] Rewrapping tools (#653)
## Rewrapping

- Calendly
- Airtable
- Squareup
- PagerDuty
- Trello
- Miro

---------

Co-authored-by: Francisco Liberal <francisco@arcade.dev>
2025-10-24 18:05:33 -03:00

109 lines
4.2 KiB
JSON

{
"name": "BulkRetrieveCustomers",
"fully_qualified_name": "SquareupApi.BulkRetrieveCustomers@2.0.0",
"description": "Retrieve multiple customer profiles using IDs.\n\nUse this tool to fetch detailed customer profiles by providing a list of customer IDs. It is useful for applications needing to access multiple customer data at once.",
"toolkit": {
"name": "ArcadeSquareupApi",
"description": null,
"version": "2.0.0"
},
"input": {
"parameters": [
{
"name": "customer_ids",
"required": true,
"description": "List of customer profile IDs to retrieve.",
"value_schema": {
"val_type": "array",
"inner_val_type": "string",
"enum": null,
"properties": null,
"inner_properties": null,
"description": "The IDs of the [customer profiles](entity:Customer) to retrieve."
},
"inferrable": true,
"http_endpoint_parameter_name": "customer_ids"
}
]
},
"output": {
"description": "Response from the API endpoint 'BulkRetrieveCustomers'.",
"available_modes": [
"value",
"error",
"null"
],
"value_schema": {
"val_type": "json",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": null
}
},
"requirements": {
"authorization": {
"provider_id": "arcade-squareup",
"provider_type": "oauth2",
"id": null,
"oauth2": {
"scopes": [
"CUSTOMERS_READ"
]
}
},
"secrets": null,
"metadata": null
},
"deprecation_message": null,
"metadata": {
"object_type": "api_wrapper_tool",
"version": "1.1.0",
"description": "Tools that enable LLMs to interact directly with the squareup API."
},
"http_endpoint": {
"metadata": {
"object_type": "http_endpoint",
"version": "1.2.0",
"description": ""
},
"url": "https://connect.squareup.com/v2/customers/bulk-retrieve",
"http_method": "POST",
"headers": {},
"parameters": [
{
"name": "customer_ids",
"tool_parameter_name": "customer_ids",
"description": "The IDs of the [customer profiles](entity:Customer) to retrieve.",
"value_schema": {
"val_type": "array",
"inner_val_type": "string",
"enum": null,
"properties": null,
"inner_properties": null,
"description": "The IDs of the [customer profiles](entity:Customer) to retrieve."
},
"accepted_as": "body",
"required": true,
"deprecated": false,
"default": null,
"documentation_urls": []
}
],
"documentation_urls": [],
"secrets": [
{
"arcade_key": "auth_token",
"parameter_name": "Authorization",
"accepted_as": "header",
"formatted_value": "Bearer {authorization}",
"description": "The OAuth token to use for authentication.",
"is_auth_token": true
}
],
"request_body_spec": "{\n \"required\": true,\n \"description\": \"An object containing the fields to POST for the request.\\n\\nSee the corresponding object definition for field details.\",\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"type\": \"object\",\n \"description\": \"Defines the body parameters that can be included in requests to the\\n[BulkRetrieveCustomers](api-endpoint:Customers-BulkRetrieveCustomers) endpoint.\",\n \"x-release-status\": \"PUBLIC\",\n \"required\": [\n \"customer_ids\"\n ],\n \"properties\": {\n \"customer_ids\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"The IDs of the [customer profiles](entity:Customer) to retrieve.\"\n }\n },\n \"example\": {\n \"customer_ids\": [\n \"8DDA5NZVBZFGAX0V3HPF81HHE0\",\n \"N18CPRVXR5214XPBBA6BZQWF3C\",\n \"2GYD7WNXF7BJZW1PMGNXZ3Y8M8\"\n ]\n }\n }\n }\n }\n}",
"use_request_body_schema_mode": false,
"validate_request_body_schema": false
}
}