arcade-mcp/toolkits/pylon_api/pylon_api/wrapper_tools/DeleteAccountHighlight.json
jottakka 0247c2561b
[MOAR][Pylon] Pylon Starter Toolkit (#658)
Co-authored-by: Francisco Liberal <francisco@arcade.dev>
2025-10-28 15:17:11 -03:00

137 lines
4.1 KiB
JSON

{
"name": "DeleteAccountHighlight",
"fully_qualified_name": "PylonApi.DeleteAccountHighlight@0.1.0",
"description": "Delete a specific highlight from an account.\n\nUse this tool to delete a specific highlight by providing the account ID and highlight ID. It should be called when a user wants to remove a highlight linked to an account.",
"toolkit": {
"name": "PylonApi",
"description": null,
"version": "0.1.0"
},
"input": {
"parameters": [
{
"name": "account_identifier",
"required": true,
"description": "The ID or external ID of the account that the highlight belongs to. Can be a UUID or any string.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "The ID or external ID of the account that the highlight belongs to."
},
"inferrable": true,
"http_endpoint_parameter_name": "account_id"
},
{
"name": "highlight_id",
"required": true,
"description": "The unique ID of the highlight you intend to delete.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "The ID of the highlight to delete."
},
"inferrable": true,
"http_endpoint_parameter_name": "highlight_id"
}
]
},
"output": {
"description": "Response from the API endpoint 'DeleteAccountHighlight'.",
"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": null,
"secrets": [
{
"key": "PYLON_SECRET_TOKEN"
}
],
"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 pylon API."
},
"http_endpoint": {
"metadata": {
"object_type": "http_endpoint",
"version": "1.2.0",
"description": ""
},
"url": "https://api.usepylon.com/accounts/{account_id}/highlights/{highlight_id}",
"http_method": "DELETE",
"headers": {},
"parameters": [
{
"name": "account_id",
"tool_parameter_name": "account_identifier",
"description": "The ID or external ID of the account that the highlight belongs to.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "The ID or external ID of the account that the highlight belongs to."
},
"accepted_as": "path",
"required": true,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "highlight_id",
"tool_parameter_name": "highlight_id",
"description": "The ID of the highlight to delete.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "The ID of the highlight to delete."
},
"accepted_as": "path",
"required": true,
"deprecated": false,
"default": null,
"documentation_urls": []
}
],
"documentation_urls": [],
"secrets": [
{
"arcade_key": "PYLON_SECRET_TOKEN",
"parameter_name": "Authorization",
"accepted_as": "header",
"formatted_value": "Bearer {authorization}",
"description": "",
"is_auth_token": false
}
],
"request_body_spec": null,
"use_request_body_schema_mode": false,
"validate_request_body_schema": false
}
}