server_name
stringclasses
156 values
category
stringclasses
1 value
tool
stringlengths
176
38.2k
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_save_as_pdf', 'description': 'Save the current page as a PDF file', 'parameters': {'type': 'object', 'properties': {'filename': {'type': 'string', 'description': 'Name of the PDF file (default: page.pdf)'}, 'format': {'type': 'string', 'description': "Page format (e.g. 'A4', 'Letter')"}, 'margin': {'type': 'object', 'description': 'Page margins', 'properties': {'bottom': {'type': 'string'}, 'left': {'type': 'string'}, 'right': {'type': 'string'}, 'top': {'type': 'string'}}}, 'outputPath': {'type': 'string', 'description': 'Directory path where PDF will be saved'}, 'printBackground': {'type': 'boolean', 'description': 'Whether to print background graphics'}}, 'required': ['outputPath'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_screenshot', 'description': 'Take a screenshot of the current page or a specific element', 'parameters': {'type': 'object', 'properties': {'downloadsDir': {'type': 'string', 'description': "Custom downloads directory path (default: user's Downloads folder)"}, 'fullPage': {'type': 'boolean', 'description': 'Store screenshot of the entire page (default: false)'}, 'height': {'type': 'number', 'description': 'Height in pixels (default: 600)'}, 'name': {'type': 'string', 'description': 'Name for the screenshot'}, 'savePng': {'type': 'boolean', 'description': 'Save screenshot as PNG file (default: false)'}, 'selector': {'type': 'string', 'description': 'CSS selector for element to screenshot'}, 'storeBase64': {'type': 'boolean', 'description': 'Store screenshot in base64 format (default: true)'}, 'width': {'type': 'number', 'description': 'Width in pixels (default: 800)'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_select', 'description': 'Select an element on the page with Select tag', 'parameters': {'type': 'object', 'properties': {'selector': {'type': 'string', 'description': 'CSS selector for element to select'}, 'value': {'type': 'string', 'description': 'Value to select'}}, 'required': ['selector', 'value'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_upload_file', 'description': "Upload a file to an input[type='file'] element on the page", 'parameters': {'type': 'object', 'properties': {'filePath': {'type': 'string', 'description': 'Absolute path to the file to upload'}, 'selector': {'type': 'string', 'description': 'CSS selector for the file input element'}}, 'required': ['selector', 'filePath'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'start_codegen_session', 'description': 'Start a new code generation session to record Playwright actions', 'parameters': {'type': 'object', 'properties': {'options': {'type': 'object', 'description': 'Code generation options', 'required': ['outputPath'], 'properties': {'includeComments': {'type': 'boolean', 'description': 'Whether to include descriptive comments in generated tests'}, 'outputPath': {'type': 'string', 'description': 'Directory path where generated tests will be saved (use absolute path)'}, 'testNamePrefix': {'type': 'string', 'description': "Prefix to use for generated test names (default: 'GeneratedTest')"}}}}, 'required': ['options'], 'additionalProperties': False}, 'strict': True}
pluggedin-mcp-proxy
other
{'type': 'function', 'name': 'pluggedin_ask_knowledge_base', 'description': 'Ask questions and get AI-generated answers from your knowledge base. Returns synthesized responses based on all your documents.', 'parameters': {'type': 'object', 'properties': {'query': {'type': 'string', 'description': 'Your question or query to get AI-generated answers from the knowledge base.', 'minLength': 1, 'maxLength': 1000}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
pluggedin-mcp-proxy
other
{'type': 'function', 'name': 'pluggedin_delete_notification', 'description': 'Delete a notification from the Plugged.in system', 'parameters': {'type': 'object', 'properties': {'notificationId': {'type': 'string', 'description': 'The ID of the notification to delete'}}, 'required': ['notificationId'], 'additionalProperties': False}, 'strict': True}
pluggedin-mcp-proxy
other
{'type': 'function', 'name': 'pluggedin_discover_tools', 'description': 'Triggers discovery of tools (and resources/templates) for configured MCP servers in the Pluggedin App.', 'parameters': {'type': 'object', 'properties': {'force_refresh': {'type': 'boolean', 'description': 'Set to true to bypass cache and force a fresh discovery. Defaults to false.', 'default': False}, 'server_uuid': {'type': 'string', 'description': 'Optional UUID of a specific server to discover. If omitted, attempts to discover all.', 'format': 'uuid'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
pluggedin-mcp-proxy
other
{'type': 'function', 'name': 'pluggedin_list_notifications', 'description': 'List notifications from the Plugged.in system with optional filters for unread only and result limit', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'integer', 'description': 'Limit the number of notifications returned (1-100)', 'minimum': 1, 'maximum': 100}, 'onlyUnread': {'type': 'boolean', 'description': 'Filter to show only unread notifications', 'default': False}}, 'required': [], 'additionalProperties': False}, 'strict': True}
pluggedin-mcp-proxy
other
{'type': 'function', 'name': 'pluggedin_mark_notification_done', 'description': 'Mark a notification as done in the Plugged.in system', 'parameters': {'type': 'object', 'properties': {'notificationId': {'type': 'string', 'description': 'The ID of the notification to mark as read'}}, 'required': ['notificationId'], 'additionalProperties': False}, 'strict': True}
pluggedin-mcp-proxy
other
{'type': 'function', 'name': 'pluggedin_send_notification', 'description': 'Send custom notifications through the Plugged.in system with optional email delivery. You can provide a custom title or let the system use a localized default.', 'parameters': {'type': 'object', 'properties': {'message': {'type': 'string', 'description': 'The notification message content'}, 'sendEmail': {'type': 'boolean', 'description': 'Whether to also send the notification via email', 'default': False}, 'severity': {'type': 'string', 'description': 'The severity level of the notification (defaults to INFO)', 'default': 'INFO', 'enum': ['INFO', 'SUCCESS', 'WARNING', 'ALERT']}, 'title': {'type': 'string', 'description': 'Optional notification title. If not provided, a localized default will be used. Consider generating a descriptive title based on the message content.'}}, 'required': ['message'], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'create_category', 'description': 'Create a new category or project', 'parameters': {'type': 'object', 'properties': {'color': {'type': 'string', 'description': 'Category color (default: #3b82f6)'}, 'is_project': {'type': 'boolean', 'description': 'Whether this is a project (default: false)'}, 'name': {'type': 'string', 'description': 'Category/Project name (required)'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'create_note', 'description': 'Create a new note in PomoDash', 'parameters': {'type': 'object', 'properties': {'content': {'type': 'string', 'description': 'Note content (required)'}, 'reference_id': {'type': 'string', 'description': 'Reference ID (default: general)'}, 'reference_type': {'type': 'string', 'description': 'Type of reference (default: general)', 'enum': ['general', 'task', 'project', 'category']}}, 'required': ['content'], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'create_note_for_project', 'description': 'Create a note linked to a specific project', 'parameters': {'type': 'object', 'properties': {'content': {'type': 'string', 'description': 'Note content (required)'}, 'project_id': {'type': 'string', 'description': 'ID of the project to link the note to (required)'}}, 'required': ['project_id', 'content'], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'create_note_for_task', 'description': 'Create a note linked to a specific task', 'parameters': {'type': 'object', 'properties': {'content': {'type': 'string', 'description': 'Note content (required)'}, 'task_id': {'type': 'string', 'description': 'ID of the task to link the note to (required)'}}, 'required': ['task_id', 'content'], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'create_task', 'description': 'Create a new task in PomoDash', 'parameters': {'type': 'object', 'properties': {'description': {'type': 'string', 'description': 'Task description (optional)'}, 'due_date': {'type': 'string', 'description': 'Due date in ISO format (optional)', 'format': 'date-time'}, 'end_time': {'type': 'string', 'description': 'End time for timeboxing (optional)', 'format': 'date-time'}, 'priority': {'type': 'string', 'description': 'Task priority (default: medium)', 'enum': ['low', 'medium', 'high']}, 'start_time': {'type': 'string', 'description': 'Start time for timeboxing (optional)', 'format': 'date-time'}, 'title': {'type': 'string', 'description': 'Task title (required)'}}, 'required': ['title'], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'create_task_for_project', 'description': 'Create a task linked to a specific project', 'parameters': {'type': 'object', 'properties': {'description': {'type': 'string', 'description': 'Task description (optional)'}, 'due_date': {'type': 'string', 'description': 'Due date in ISO format (optional)', 'format': 'date-time'}, 'priority': {'type': 'string', 'description': 'Task priority (optional)', 'enum': ['low', 'medium', 'high']}, 'project_id': {'type': 'string', 'description': 'Project ID to link task to (required)'}, 'title': {'type': 'string', 'description': 'Task title (required)'}}, 'required': ['title', 'project_id'], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'delete_note', 'description': 'Delete a note', 'parameters': {'type': 'object', 'properties': {'note_id': {'type': 'string', 'description': 'Note ID to delete (required)'}}, 'required': ['note_id'], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'delete_task', 'description': 'Delete a task', 'parameters': {'type': 'object', 'properties': {'task_id': {'type': 'string', 'description': 'Task ID to delete (required)'}}, 'required': ['task_id'], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'list_categories', 'description': 'List all categories and projects', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'list_note_references', 'description': 'List available tasks and projects for note linking', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'list_notes', 'description': 'List all notes', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'list_tasks', 'description': 'List all tasks', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'update_note', 'description': 'Update an existing note', 'parameters': {'type': 'object', 'properties': {'content': {'type': 'string', 'description': 'New note content (optional)'}, 'note_id': {'type': 'string', 'description': 'Note ID to update (required)'}}, 'required': ['note_id'], 'additionalProperties': False}, 'strict': True}
pomodash
other
{'type': 'function', 'name': 'update_task', 'description': 'Update an existing task', 'parameters': {'type': 'object', 'properties': {'description': {'type': 'string', 'description': 'New task description (optional)'}, 'priority': {'type': 'string', 'description': 'New task priority (optional)', 'enum': ['low', 'medium', 'high']}, 'status': {'type': 'string', 'description': 'New task status (optional)', 'enum': ['pending', 'in_progress', 'completed', 'archived']}, 'task_id': {'type': 'string', 'description': 'Task ID to update (required)'}, 'title': {'type': 'string', 'description': 'New task title (optional)'}}, 'required': ['task_id'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'createCollection', 'description': 'Creates a collection using the [Postman Collection v2.1.0 schema format](https://schema.postman.com/collection/json/v2.1.0/draft-07/docs/index.html).\n\n**Note:**\n\n- If you do not include the \\`workspace\\` query parameter, the system creates the collection in the oldest personal Internal workspace you own.\n- For a complete list of available property values for this endpoint, use the following references available in the [Postman Collection Format documentation](https://schema.postman.com/collection/json/v2.1.0/draft-07/docs/index.html):\n - \\`info\\` object — Refer to the **Information** entry.\n - \\`item\\` object — Refer to the **Items** entry.\n- For all other possible values, refer to the [Postman Collection Format documentation](https://schema.postman.com/collection/json/v2.1.0/draft-07/docs/index.html).', 'parameters': {'type': 'object', 'properties': {'collection': {'type': 'object', 'required': ['info', 'item'], 'properties': {'auth': {'type': 'object', 'description': 'The [authorization type supported by Postman](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['type'], 'properties': {'apikey': {'type': 'array', 'description': "The API key's authentication information.", 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'awsv4': {'type': 'array', 'description': 'The attributes for [AWS Signature](https://learning.postman.com/docs/sending-requests/authorization/aws-signature/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'basic': {'type': 'array', 'description': 'The attributes for [Basic Auth](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/#basic-auth).', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'bearer': {'type': 'array', 'description': 'The attributes for [Bearer Token](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/#bearer-token) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'digest': {'type': 'array', 'description': 'The attributes for [Digest](https://learning.postman.com/docs/sending-requests/authorization/digest-auth/) access authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'edgegrid': {'type': 'array', 'description': 'The attributes for [Akamai Edgegrid](https://learning.postman.com/docs/sending-requests/authorization/akamai-edgegrid/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'hawk': {'type': 'array', 'description': 'The attributes for [Hawk](https://learning.postman.com/docs/sending-requests/authorization/hawk-authentication/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'noauth': True, 'ntlm': {'type': 'array', 'description': 'The attributes for [NTLM](https://learning.postman.com/docs/sending-requests/authorization/ntlm-authentication/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'oauth1': {'type': 'array', 'description': 'The attributes for [OAuth1](https://learning.postman.com/docs/sending-requests/authorization/oauth-10/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'oauth2': {'type': 'array', 'description': 'The attributes for [OAuth2](https://learning.postman.com/docs/sending-requests/authorization/oauth-20/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'type': {'type': 'string', 'description': 'The authorization type.', 'enum': ['noauth', 'basic', 'bearer', 'apikey', 'digest', 'oauth1', 'oauth2', 'hawk', 'awsv4', 'ntlm', 'edgegrid']}}, 'additionalProperties': False}, 'event': {'type': 'array', 'description': 'A list of scripts configured to run when specific events occur.', 'items': {'type': 'object', 'description': "Information about the collection's events.", 'required': ['listen'], 'properties': {'listen': {'type': 'string', 'description': 'Can be set to `test` or `prerequest` for test scripts or pre-request scripts respectively.', 'enum': ['test', 'prerequest']}, 'script': {'type': 'object', 'description': 'Information about the Javascript code that can be used to to perform setup or teardown operations in a response.', 'properties': {'exec': {'type': 'array', 'description': 'A list of script strings, where each line represents a line of code. Separate lines makes it easy to track script changes.', 'items': {'type': ['string', 'null']}}, 'type': {'type': 'string', 'description': 'The type of script. For example, `text/javascript`.'}}, 'additionalProperties': False}}, 'additionalProperties': False}}, 'info': {'type': 'object', 'description': 'Information about the collection.', 'required': ['name', 'schema'], 'properties': {'description': {'type': 'string', 'description': "The collection's description."}, 'name': {'type': 'string', 'description': "The collection's name."}, 'schema': {'type': 'string', 'description': 'The "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" Postman Collection Format v2.1.0 schema.', 'const': 'https://schema.getpostman.com/json/collection/v2.1.0/collection.json'}}, 'additionalProperties': False}, 'item': {'type': 'array', 'items': {'type': 'object', 'description': 'Information about the collection request or folder.', 'properties': {'description': {'type': ['string', 'null'], 'description': "The item's description."}, 'event': {'type': 'array', 'description': 'A list of scripts configured to run when specific events occur.', 'items': {'type': 'object', 'description': "Information about the collection's events.", 'required': ['listen'], 'properties': {'listen': {'type': 'string', 'description': 'Can be set to `test` or `prerequest` for test scripts or pre-request scripts respectively.', 'enum': ['test', 'prerequest']}, 'script': {'type': 'object', 'description': 'Information about the Javascript code that can be used to to perform setup or teardown operations in a response.', 'properties': {'exec': {'type': 'array', 'description': 'A list of script strings, where each line represents a line of code. Separate lines makes it easy to track script changes.', 'items': {'type': ['string', 'null']}}, 'type': {'type': 'string', 'description': 'The type of script. For example, `text/javascript`.'}}, 'additionalProperties': False}}, 'additionalProperties': False}}, 'name': {'type': 'string', 'description': "The item's name."}, 'protocolProfileBehavior': {'type': 'object', 'description': 'The [settings](https://learning.postman.com/docs/sending-requests/create-requests/request-settings/) used to alter the [Protocol Profile Behavior](https://github.com/postmanlabs/postman-runtime/blob/develop/docs/protocol-profile-behavior.md) of sending a request.', 'properties': {'disableBodyPruning': {'type': 'boolean', 'description': 'If true, disables request body pruning for the GET, COPY, HEAD, PURGE, and UNLOCK methods.'}, 'disableUrlEncoding': {'type': 'boolean', 'description': 'If true, disables the percent encoding of auth, path, query, and fragment URL segments.'}, 'disabledSystemHeaders': {'type': 'object', 'description': 'Disable the system headers which are added implicitly.', 'properties': {'accept-encoding': {'type': 'boolean'}, 'cache-control': {'type': 'boolean'}, 'connection': {'type': 'boolean'}, 'content-length': {'type': 'boolean'}, 'content-type': {'type': 'boolean'}, 'host': {'type': 'boolean'}, 'postman-token': {'type': 'boolean'}}, 'additionalProperties': False}, 'followAuthorizationHeader': {'type': 'boolean', 'description': 'If true, retains the `authorization` header when a redirect happens to a different hostname.'}, 'followOriginalHttpMethod': {'type': 'boolean', 'description': 'If true, redirects with the original HTTP method. Redirects with the GET HTTP method by default.'}, 'followRedirects': {'type': 'boolean', 'description': 'If true, follow HTTP 3xx responses as redirects.'}, 'insecureHTTPParser': {'type': 'boolean', 'description': 'If true, uses an insecure HTTP parser that accepts invalid HTTP headers.'}, 'maxRedirects': {'type': 'number', 'description': 'The maximum number of redirects to follow.'}, 'protocolVersion': {'type': 'string', 'description': 'The HTTP protocol version to use. Supports the `http1`, `http2`, and `auto` values.', 'enum': ['http1', 'http2', 'auto']}, 'removeRefererHeaderOnRedirect': {'type': 'boolean', 'description': 'If true, removes the `referer` header when a redirect happens.'}, 'strictSSL': {'type': 'boolean', 'description': 'If true, enables certificate verification.'}, 'tlsCipherSelection': {'type': 'array', 'description': 'The order of cipher suites that the SSL server profile uses to establish a secure connection.', 'items': {'type': 'string'}}, 'tlsDisabledProtocols': {'type': 'array', 'description': 'The SSL and TLS protocol versions to disable during negotiation.', 'items': {'type': 'string'}}, 'tlsPreferServerCiphers': {'type': 'boolean', 'description': "If true, uses the server's cipher suite order instead of the client's during negotiation."}}, 'additionalProperties': False}, 'request': {'type': 'object', 'description': 'Information about the collection request.', 'properties': {'auth': {'type': 'object', 'description': 'The [authorization type supported by Postman](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['type'], 'properties': {'apikey': {'type': 'array', 'description': "The API key's authentication information.", 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'awsv4': {'type': 'array', 'description': 'The attributes for [AWS Signature](https://learning.postman.com/docs/sending-requests/authorization/aws-signature/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'basic': {'type': 'array', 'description': 'The attributes for [Basic Auth](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/#basic-auth).', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'bearer': {'type': 'array', 'description': 'The attributes for [Bearer Token](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/#bearer-token) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'digest': {'type': 'array', 'description': 'The attributes for [Digest](https://learning.postman.com/docs/sending-requests/authorization/digest-auth/) access authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'edgegrid': {'type': 'array', 'description': 'The attributes for [Akamai Edgegrid](https://learning.postman.com/docs/sending-requests/authorization/akamai-edgegrid/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'hawk': {'type': 'array', 'description': 'The attributes for [Hawk](https://learning.postman.com/docs/sending-requests/authorization/hawk-authentication/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'noauth': True, 'ntlm': {'type': 'array', 'description': 'The attributes for [NTLM](https://learning.postman.com/docs/sending-requests/authorization/ntlm-authentication/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'oauth1': {'type': 'array', 'description': 'The attributes for [OAuth1](https://learning.postman.com/docs/sending-requests/authorization/oauth-10/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'oauth2': {'type': 'array', 'description': 'The attributes for [OAuth2](https://learning.postman.com/docs/sending-requests/authorization/oauth-20/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'type': {'type': 'string', 'description': 'The authorization type.', 'enum': ['noauth', 'basic', 'bearer', 'apikey', 'digest', 'oauth1', 'oauth2', 'hawk', 'awsv4', 'ntlm', 'edgegrid']}}, 'additionalProperties': False}, 'body': {'type': 'object', 'description': 'Information about the collection\'s request body. To set this to "none", pass an empty object.', 'properties': {'file': {'type': 'object', 'description': 'If the `mode` value is `file`, an object containing the file request information.', 'properties': {'src': {'type': ['string', 'null'], 'description': 'The name of the file to upload (not its path). A null value indicates that no file is selected as a part of the request body.'}}, 'additionalProperties': False}, 'formdata': {'type': 'array', 'description': 'If the `mode` value is `formdata`, then a list of form-data key/pair values.', 'items': {'allOf': [{'type': 'object', 'additionalProperties': True}, {'anyOf': [{'type': 'object', 'properties': {'contentType': {'type': 'string', 'description': 'The form-data Content-Type header.'}, 'description': {'type': ['string', 'null'], 'description': "The key's description."}, 'key': {'type': 'string', 'description': 'The key value.'}, 'type': {'type': 'string', 'description': 'The `text` value.', 'const': 'text'}, 'value': {'type': 'string', 'description': "The key's value."}}, 'additionalProperties': False}, {'type': 'object', 'properties': {'contentType': {'type': 'string', 'description': 'The form-data Content-Type header.'}, 'description': {'type': ['string', 'null'], 'description': "The key's description."}, 'key': {'type': 'string', 'description': 'The key value.'}, 'src': True, 'type': {'type': 'string', 'description': 'The `file` value.', 'const': 'file'}}, 'additionalProperties': False}]}]}}, 'graphql': {'type': 'object', 'description': 'If the `mode` value is `graphql`, an object containing the GraphQL request information.', 'properties': {'query': {'type': 'string', 'description': 'The GraphQL query.'}, 'variables': {'type': ['string', 'null'], 'description': 'The GraphQL query variables, in JSON format.'}}, 'additionalProperties': False}, 'mode': {'type': 'string', 'description': 'The data associated with the request.', 'enum': ['raw', 'urlencoded', 'formdata', 'file', 'graphql']}, 'options': {'type': 'object', 'description': 'Additional configurations and options set for various modes.', 'additionalProperties': True}, 'raw': {'type': 'string', 'description': 'If the `mode` value is `raw`, the raw content of the request body.'}, 'urlencoded': {'type': 'array', 'description': 'A list of x-www-form-encoded key/value pairs.', 'items': {'type': 'object', 'required': ['key'], 'properties': {'description': {'type': ['string', 'null'], 'description': "The key's description."}, 'key': {'type': 'string', 'description': 'The key value.'}, 'value': {'type': 'string', 'description': "The key's value."}}, 'additionalProperties': False}}}, 'additionalProperties': False}, 'description': {'type': ['string', 'null'], 'description': "The request's description."}, 'header': {'type': 'array', 'description': 'A list of headers.', 'items': {'type': 'object', 'description': 'Information about the header.', 'required': ['key', 'value'], 'properties': {'description': {'type': ['string', 'null'], 'description': "The header's description."}, 'disabled': {'type': 'boolean', 'description': "If true, the current header isn't sent with requests.", 'default': False}, 'key': {'type': 'string', 'description': "The header's key, such as `Content-Type` or `X-Custom-Header`."}, 'value': {'type': 'string', 'description': "The header key's value."}}, 'additionalProperties': False}}, 'method': {'type': 'string', 'description': "The request's standard HTTP method."}, 'url': {'description': 'Information about the URL.', 'anyOf': [{'type': ['string', 'null'], 'description': "The request's raw URL."}, {'type': 'object', 'properties': {'host': {'type': 'array', 'description': "The host's URL.", 'items': {'type': ['string', 'null']}}, 'path': {'type': 'array', 'description': "A list of the URL's path components.", 'items': {'type': 'string'}}, 'port': {'type': 'string', 'description': "The URL's port number. An empty value indicates port `80` (http) or `443` (https)."}, 'protocol': {'type': 'string', 'description': 'The request protocol.'}, 'query': {'type': 'array', 'description': 'A list of query parameters. These are the query string parts of the URL, parsed as separate variables.', 'items': {'type': 'object', 'properties': {'description': {'type': ['string', 'null'], 'description': "The query parameter's description."}, 'disabled': {'type': 'boolean', 'description': "If true, the query parameter isn't sent with the request.", 'default': False}, 'key': {'type': ['string', 'null'], 'description': "The query parameter's key."}, 'value': {'type': ['string', 'null'], 'description': "The key's value."}}, 'additionalProperties': False}}, 'raw': {'type': 'string', 'description': "The request's raw URL."}}, 'additionalProperties': False}]}}, 'additionalProperties': False}, 'variable': {'type': 'array', 'description': "A list of the collection's [variables](https://learning.postman.com/docs/sending-requests/variables/variables/). Make certain not to include sensitive information in variables.", 'items': {'type': 'object', 'description': 'Information about the variable.', 'properties': {'description': {'type': 'string', 'description': "The variable's description. Doesn't apply to collection-level variables."}, 'disabled': {'type': 'boolean', 'description': 'If true, the variable is not enabled.', 'default': False}, 'key': {'type': 'string', 'description': "The variable's key (name)."}, 'type': {'type': 'string', 'description': "The variable's type.", 'enum': ['string', 'boolean', 'integer']}, 'value': {'type': 'string', 'description': "The key's value."}}, 'additionalProperties': False}}}, 'additionalProperties': False}}, 'protocolProfileBehavior': {'type': 'object', 'description': 'The [settings](https://learning.postman.com/docs/sending-requests/create-requests/request-settings/) used to alter the [Protocol Profile Behavior](https://github.com/postmanlabs/postman-runtime/blob/develop/docs/protocol-profile-behavior.md) of sending a request.', 'properties': {'disableBodyPruning': {'type': 'boolean', 'description': 'If true, disables request body pruning for the GET, COPY, HEAD, PURGE, and UNLOCK methods.'}, 'disableUrlEncoding': {'type': 'boolean', 'description': 'If true, disables the percent encoding of auth, path, query, and fragment URL segments.'}, 'disabledSystemHeaders': {'type': 'object', 'description': 'Disable the system headers which are added implicitly.', 'properties': {'accept-encoding': {'type': 'boolean'}, 'cache-control': {'type': 'boolean'}, 'connection': {'type': 'boolean'}, 'content-length': {'type': 'boolean'}, 'content-type': {'type': 'boolean'}, 'host': {'type': 'boolean'}, 'postman-token': {'type': 'boolean'}}, 'additionalProperties': False}, 'followAuthorizationHeader': {'type': 'boolean', 'description': 'If true, retains the `authorization` header when a redirect happens to a different hostname.'}, 'followOriginalHttpMethod': {'type': 'boolean', 'description': 'If true, redirects with the original HTTP method. Redirects with the GET HTTP method by default.'}, 'followRedirects': {'type': 'boolean', 'description': 'If true, follow HTTP 3xx responses as redirects.'}, 'insecureHTTPParser': {'type': 'boolean', 'description': 'If true, uses an insecure HTTP parser that accepts invalid HTTP headers.'}, 'maxRedirects': {'type': 'number', 'description': 'The maximum number of redirects to follow.'}, 'protocolVersion': {'type': 'string', 'description': 'The HTTP protocol version to use. Supports the `http1`, `http2`, and `auto` values.', 'enum': ['http1', 'http2', 'auto']}, 'removeRefererHeaderOnRedirect': {'type': 'boolean', 'description': 'If true, removes the `referer` header when a redirect happens.'}, 'strictSSL': {'type': 'boolean', 'description': 'If true, enables certificate verification.'}, 'tlsCipherSelection': {'type': 'array', 'description': 'The order of cipher suites that the SSL server profile uses to establish a secure connection.', 'items': {'type': 'string'}}, 'tlsDisabledProtocols': {'type': 'array', 'description': 'The SSL and TLS protocol versions to disable during negotiation.', 'items': {'type': 'string'}}, 'tlsPreferServerCiphers': {'type': 'boolean', 'description': "If true, uses the server's cipher suite order instead of the client's during negotiation."}}, 'additionalProperties': False}, 'variable': {'type': 'array', 'description': "A list of the collection's [variables](https://learning.postman.com/docs/sending-requests/variables/variables/). Make certain not to include sensitive information in variables.", 'items': {'type': 'object', 'description': 'Information about the variable.', 'properties': {'description': {'type': 'string', 'description': "The variable's description. Doesn't apply to collection-level variables."}, 'disabled': {'type': 'boolean', 'description': 'If true, the variable is not enabled.', 'default': False}, 'key': {'type': 'string', 'description': "The variable's key (name)."}, 'type': {'type': 'string', 'description': "The variable's type.", 'enum': ['string', 'boolean', 'integer']}, 'value': {'type': 'string', 'description': "The key's value."}}, 'additionalProperties': False}}}, 'additionalProperties': False}, 'workspace': {'type': 'string', 'description': "The workspace's ID."}}, 'required': ['workspace'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'createCollectionRequest', 'description': 'Creates a request in a collection. For a complete list of properties, refer to the **Request** entry in the [Postman Collection Format documentation](https://schema.postman.com/collection/json/v2.1.0/draft-07/docs/index.html).\n\n**Note:**\n\nIt is recommended that you pass the \\`name\\` property in the request body. If you do not, the system uses a null value. As a result, this creates a request with a blank name.', 'parameters': {'type': 'object', 'properties': {'collectionId': {'type': 'string', 'description': "The collection's ID."}, 'folderId': {'type': 'string', 'description': 'The folder ID in which to create the request. By default, the system will create the request at the collection level.'}, 'name': {'type': 'string', 'description': "The request's name. It is recommended that you pass the `name` property in the request body. If you do not, the system uses a null value. As a result, this creates a request with a blank name."}}, 'required': ['collectionId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'createCollectionResponse', 'description': 'Creates a request response in a collection. For a complete list of request body properties, refer to the **Response** entry in the [Postman Collection Format documentation](https://schema.postman.com/collection/json/v2.1.0/draft-07/docs/index.html).\n\n**Note:**\n\nIt is recommended that you pass the \\`name\\` property in the request body. If you do not, the system uses a null value. As a result, this creates a response with a blank name.', 'parameters': {'type': 'object', 'properties': {'collectionId': {'type': 'string', 'description': "The collection's ID."}, 'name': {'type': 'string', 'description': "The response's name. It is recommended that you pass the `name` property in the request body. If you do not, the system uses a null value. As a result, this creates a response with a blank name."}, 'requestId': {'type': 'string', 'description': "The parent request's ID."}}, 'required': ['collectionId', 'requestId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'createEnvironment', 'description': 'Creates an environment.\n\n**Note:**\n\n- The request body size cannot exceed the maximum allowed size of 30MB.\n- If you receive an HTTP \\`411 Length Required\\` error response, manually pass the \\`Content-Length\\` header and its value in the request header.\n- If you do not include the \\`workspace\\` query parameter, the system creates the environment in the oldest personal Internal workspace you own.', 'parameters': {'type': 'object', 'properties': {'environment': {'type': 'object', 'description': 'Information about the environment.', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': "The environment's name."}, 'values': {'type': 'array', 'description': "Information about the environment's variables.", 'items': {'type': 'object', 'description': "Information about the environment's variables.", 'properties': {'description': {'type': 'string', 'description': "The variable's description.", 'maxLength': 512}, 'enabled': {'type': 'boolean', 'description': 'If true, the variable is enabled.'}, 'key': {'type': 'string', 'description': "The variable's name."}, 'type': {'type': 'string', 'description': "The variable's type:\n- `secret` — The variable value is masked.\n- `default` — The variable value is visible in plain text.\n", 'enum': ['secret', 'default']}, 'value': {'type': 'string', 'description': "The variable's value."}}, 'additionalProperties': False}}}, 'additionalProperties': False}, 'workspace': {'type': 'string', 'description': "The workspace's ID."}}, 'required': ['workspace'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'createMock', 'description': 'Creates a mock server in a collection.\n\n**Note:**\n\n- You cannot create mocks for collections added to an API definition.\n- If you do not include the \\`workspaceId\\` query parameter, the system creates the mock server in the oldest personal Internal workspace you own.', 'parameters': {'type': 'object', 'properties': {'mock': {'type': 'object', 'required': ['collection'], 'properties': {'collection': {'type': 'string', 'description': "The unique ID of the mock's associated collection."}, 'environment': {'type': 'string', 'description': "The unique ID of the mock's associated environment."}, 'name': {'type': 'string', 'description': "The mock server's name."}, 'private': {'type': 'boolean', 'description': 'If true, the mock server is set private. By default, mock servers are public and can receive requests from anyone and anywhere.', 'default': False}}, 'additionalProperties': False}, 'workspace': {'type': 'string', 'description': "The workspace's ID."}}, 'required': ['workspace'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'createSpec', 'description': "Creates an API specification in Postman's [Spec Hub](https://learning.postman.com/docs/design-apis/specifications/overview/). Specifications can be single or multi-file.\n\n**Note:**\n- Postman supports OpenAPI 3.0 and AsyncAPI 2.0 specifications.\n- If the file path contains a \\`/\\` (forward slash) character, then a folder is created. For example, if the path is the \\`components/schemas.json\\` value, then a \\`components\\` folder is created with the \\`schemas.json\\` file inside.\n- Multi-file specifications can only have one root file.\n- Files cannot exceed a maximum of 10 MB in size.", 'parameters': {'type': 'object', 'properties': {'files': {'type': 'array', 'description': "A list of the specification's files and their contents.", 'items': {'anyOf': [{'type': 'object', 'required': ['path', 'content', 'type'], 'properties': {'content': {'type': 'string', 'description': "The file's stringified contents."}, 'path': {'type': 'string', 'description': "The file's path. Accepts JSON or YAML files."}, 'type': {'type': 'string', 'description': 'The type of file. This property is required when creating multi-file specifications:\n- `ROOT` — The file containing the full OpenAPI structure. This serves as the entry point for the API spec and references other (`DEFAULT`) spec files. Multi-file specs can only have one root file.\n- `DEFAULT` — A file referenced by the `ROOT` file.\n', 'enum': ['DEFAULT', 'ROOT']}}, 'additionalProperties': False}, {'type': 'object', 'required': ['path', 'content'], 'properties': {'content': {'type': 'string', 'description': "The file's stringified contents."}, 'path': {'type': 'string', 'description': "The file's path. Accepts JSON or YAML files."}}, 'additionalProperties': False}]}}, 'name': {'type': 'string', 'description': "The specification's name."}, 'type': {'type': 'string', 'description': "The specification's type.", 'enum': ['OPENAPI:3.0', 'ASYNCAPI:2.0']}, 'workspaceId': {'type': 'string', 'description': "The workspace's ID."}}, 'required': ['workspaceId', 'name', 'type', 'files'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'createSpecFile', 'description': 'Creates an API specification file.\n\n**Note:**\n\n- If the file path contains a \\`/\\` (forward slash) character, then a folder is created. For example, if the path is the \\`components/schemas.json\\` value, then a \\`components\\` folder is created with the \\`schemas.json\\` file inside.\n- Creating a spec file assigns it the \\`DEFAULT\\` file type.\n- Multi-file specifications can only have one root file.\n- Files cannot exceed a maximum of 10 MB in size.', 'parameters': {'type': 'object', 'properties': {'content': {'type': 'string', 'description': "The file's stringified contents."}, 'path': {'type': 'string', 'description': "The file's path. Accepts JSON or YAML files."}, 'specId': {'type': 'string', 'description': "The spec's ID."}}, 'required': ['specId', 'path', 'content'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'createWorkspace', 'description': 'Creates a new [workspace](https://learning.postman.com/docs/collaborating-in-postman/using-workspaces/creating-workspaces/).\n\n**Note:**\n\n- This endpoint returns a 403 \\`Forbidden\\` response if the user does not have permission to create workspaces. [Admins and Super Admins](https://learning.postman.com/docs/collaborating-in-postman/roles-and-permissions/#team-roles) can configure workspace permissions to restrict users and/or user groups from creating workspaces or require approvals for the creation of team workspaces.\n- There are rate limits when publishing public workspaces.\n- Public team workspace names must be unique.\n\n### Important\n\nWe deprecated linking collections or environments between workspaces. We do not recommend that you do this.\n\nIf you have a linked collection or environment, note the following:\n- The endpoint does not create a clone of a collection or environment.\n- Any changes you make to a linked collection or environment changes them in all workspaces.\n- If you delete a collection or environment linked between workspaces, the system deletes it in all the workspaces.', 'parameters': {'type': 'object', 'properties': {'workspace': {'type': 'object', 'description': 'Information about the workspace.', 'required': ['name', 'type'], 'properties': {'about': {'type': 'string', 'description': 'A brief summary about the workspace.'}, 'description': {'type': 'string', 'description': "The workspace's description."}, 'name': {'type': 'string', 'description': "The workspace's name."}, 'type': {'type': 'string', 'description': 'The type of workspace:\n- `personal`\n- `private` — Private workspaces are available on Postman [**Professional** and **Enterprise** plans](https://www.postman.com/pricing).\n- `public`\n- `team`\n- `partner` — [Partner Workspaces](https://learning.postman.com/docs/collaborating-in-postman/using-workspaces/partner-workspaces/) are available on Postman [**Professional** and **Enterprise** plans](https://www.postman.com/pricing)).\n', 'enum': ['personal', 'private', 'public', 'team', 'partner']}}, 'additionalProperties': False}}, 'required': [], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'duplicateCollection', 'description': "Creates a duplicate of the given collection in another workspace.\n\nUse the GET \\`/collection-duplicate-tasks/{taskId}\\` endpoint to get the duplication task's current status.", 'parameters': {'type': 'object', 'properties': {'collectionId': {'type': 'string', 'description': "The collection's unique ID."}, 'suffix': {'type': 'string', 'description': "An optional suffix to append to the duplicated collection's name."}, 'workspace': {'type': 'string', 'description': 'The workspace ID in which to duplicate the collection.'}}, 'required': ['collectionId', 'workspace'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'generateCollection', 'description': 'Creates a collection from the given API specification. The response contains a polling link to the task status.', 'parameters': {'type': 'object', 'properties': {'elementType': {'type': 'string', 'description': 'The `collection` element type.', 'const': 'collection'}, 'name': {'type': 'string', 'description': "The generated collection's name."}, 'options': {'type': 'object', 'description': "The advanced creation options and their values. For more details, see Postman's [OpenAPI to Postman Collection Converter OPTIONS documentation](https://github.com/postmanlabs/openapi-to-postman/blob/develop/OPTIONS.md). These properties are case-sensitive.", 'properties': {'alwaysInheritAuthentication': {'type': 'boolean', 'description': 'Whether authentication details should be included in all requests, or always inherited from the collection.', 'default': False}, 'enableOptionalParameters': {'type': 'boolean', 'description': 'If true, enables optional parameters in the collection and its requests.', 'default': True}, 'folderStrategy': {'type': 'string', 'description': "Whether to create folders based on the specification's `paths` or `tags` properties.", 'default': 'Paths', 'enum': ['Paths', 'Tags']}, 'includeAuthInfoInExample': {'type': 'boolean', 'description': 'If true, include the authentication parameters in the example request.', 'default': True}, 'includeDeprecated': {'type': 'boolean', 'description': 'If true, includes all deprecated operations, parameters, and properties in generated collection.', 'default': True}, 'indentCharacter': {'type': 'string', 'description': 'The option for setting the indentation character type.', 'default': 'Space', 'enum': ['Tab', 'Space']}, 'keepImplicitHeaders': {'type': 'boolean', 'description': 'If true, keep the implicit headers from the OpenAPI specification, which are removed by default.', 'default': False}, 'nestedFolderHierarchy': {'type': 'boolean', 'description': "If true, creates subfolders in the generated collection based on the order of the endpoints' tags.", 'default': False}, 'parametersResolution': {'type': 'string', 'description': "Whether to generate the request and response parameters based on the specification or the specification's examples.", 'default': 'Schema', 'enum': ['Schema', 'Example']}, 'requestNameSource': {'type': 'string', 'description': "Determines how the generated collection's requests are named. If the `Fallback` value is passed, then the request is named after one of the following values in the schema:\n- `summary`\n- `operationId`\n- `description`\n- `url`\n", 'default': 'Fallback', 'enum': ['Fallback', 'URL']}}, 'additionalProperties': False}, 'specId': {'type': 'string', 'description': "The spec's ID."}}, 'required': ['specId', 'elementType'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'generateSpecFromCollection', 'description': 'Generates an API specification for the given collection. The response contains a polling link to the task status.', 'parameters': {'type': 'object', 'properties': {'collectionUid': {'type': 'string', 'description': "The collection's unique ID."}, 'elementType': {'type': 'string', 'description': 'The `spec` value.', 'const': 'spec'}, 'format': {'type': 'string', 'description': 'The format of the API specification.', 'enum': ['JSON', 'YAML']}, 'name': {'type': 'string', 'description': "The API specification's name."}, 'type': {'type': 'string', 'description': "The specification's type.", 'const': 'OPENAPI:3.0'}}, 'required': ['collectionUid', 'elementType', 'name', 'type', 'format'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getAllSpecs', 'description': 'Gets all API specifications in a workspace.', 'parameters': {'type': 'object', 'properties': {'cursor': {'type': 'string', 'description': 'The pointer to the first record of the set of paginated results. To view the next response, use the `nextCursor` value for this parameter.'}, 'limit': {'type': 'integer', 'description': 'The maximum number of rows to return in the response.', 'default': 10}, 'workspaceId': {'type': 'string', 'description': "The workspace's ID."}}, 'required': ['workspaceId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getAuthenticatedUser', 'description': 'Gets information about the authenticated user.\n\n**Note:**\n\n- This API returns a different response for users with the [Guest and Partner roles](https://learning.postman.com/docs/collaborating-in-postman/roles-and-permissions/#team-roles).\n- The \\`flow_count\\` response only returns for users on [Free plans](https://www.postman.com/pricing/).', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getCollection', 'description': "Gets information about a collection. For a complete list of this endpoint's possible values, refer to the [Postman Collection Format documentation](https://schema.postman.com/collection/json/v2.1.0/draft-07/docs/index.html).", 'parameters': {'type': 'object', 'properties': {'access_key': {'type': 'string', 'description': "A collection's read-only access key. Using this query parameter does not require an API key to call the endpoint."}, 'collectionId': {'type': 'string', 'description': 'The collection ID must be in the form <OWNER_ID>-<UUID> (e.g. 12345-33823532ab9e41c9b6fd12d0fd459b8b).'}, 'model': {'type': 'string', 'description': "Return a list of only the collection's root-level request (`rootLevelRequests`) and folder (`rootLevelFolders`) IDs instead of the full collection element data.", 'const': 'minimal'}}, 'required': ['collectionId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getCollections', 'description': 'The workspace ID query is required for this endpoint. If not provided, the LLM should ask the user to provide it.', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'integer', 'description': 'The maximum number of rows to return in the response.'}, 'name': {'type': 'string', 'description': 'Filter results by collections that match the given name.'}, 'offset': {'type': 'integer', 'description': 'The zero-based offset of the first item to return.'}, 'workspace': {'type': 'string', 'description': "The workspace's ID."}}, 'required': ['workspace'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getEnvironment', 'description': 'Gets information about an environment.', 'parameters': {'type': 'object', 'properties': {'environmentId': {'type': 'string', 'description': "The environment's ID."}}, 'required': ['environmentId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getEnvironments', 'description': 'Gets information about all of your [environments](https://learning.postman.com/docs/sending-requests/managing-environments/).', 'parameters': {'type': 'object', 'properties': {'workspace': {'type': 'string', 'description': "The workspace's ID."}}, 'required': [], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getGeneratedCollectionSpecs', 'description': 'Gets the API specification generated for the given collection.', 'parameters': {'type': 'object', 'properties': {'collectionUid': {'type': 'string', 'description': "The collection's unique ID."}, 'elementType': {'type': 'string', 'description': 'The `spec` value.', 'const': 'spec'}}, 'required': ['collectionUid', 'elementType'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getMock', 'description': 'Gets information about a mock server.', 'parameters': {'type': 'object', 'properties': {'mockId': {'type': 'string', 'description': "The mock's ID."}}, 'required': ['mockId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getMocks', 'description': 'Gets all active mock servers. By default, this endpoint returns only mock servers you created across all workspaces.\n\n**Note:**\n\nIf you pass both the \\`teamId\\` and \\`workspace\\` query parameters, this endpoint only accepts the \\`workspace\\` query.', 'parameters': {'type': 'object', 'properties': {'teamId': {'type': 'string', 'description': 'Return only results that belong to the given team ID.'}, 'workspace': {'type': 'string', 'description': 'Return only results found in the given workspace ID.'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getSpec', 'description': 'Gets information about an API specification.', 'parameters': {'type': 'object', 'properties': {'specId': {'type': 'string', 'description': "The spec's ID."}}, 'required': ['specId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getSpecCollections', 'description': "Gets all of an API specification's generated collections.", 'parameters': {'type': 'object', 'properties': {'cursor': {'type': 'string', 'description': 'The pointer to the first record of the set of paginated results. To view the next response, use the `nextCursor` value for this parameter.'}, 'elementType': {'type': 'string', 'description': 'The `collection` element type.', 'const': 'collection'}, 'limit': {'type': 'integer', 'description': 'The maximum number of rows to return in the response.', 'default': 10}, 'specId': {'type': 'string', 'description': "The spec's ID."}}, 'required': ['specId', 'elementType'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getSpecDefinition', 'description': "Gets the complete contents of an API specification's definition.", 'parameters': {'type': 'object', 'properties': {'specId': {'type': 'string', 'description': "The spec's ID."}}, 'required': ['specId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getSpecFile', 'description': "Gets the contents of an API specification's file.", 'parameters': {'type': 'object', 'properties': {'filePath': {'type': 'string', 'description': 'The path to the file.'}, 'specId': {'type': 'string', 'description': "The spec's ID."}}, 'required': ['specId', 'filePath'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getSpecFiles', 'description': 'Gets all the files in an API specification.', 'parameters': {'type': 'object', 'properties': {'specId': {'type': 'string', 'description': "The spec's ID."}}, 'required': ['specId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getStatusOfAnAsyncApiTask', 'description': 'Gets the status of an asynchronous task.', 'parameters': {'type': 'object', 'properties': {'Accept': {'type': 'string', 'description': 'The `application/vnd.api.v10+json` request header required to use the endpoint.', 'const': 'application/vnd.api.v10+json'}, 'apiId': {'type': 'string', 'description': "The API's ID."}, 'taskId': {'type': 'string', 'description': "The task's ID."}}, 'required': ['apiId', 'taskId', 'Accept'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getTaggedEntities', 'description': 'Gets Postman elements (entities) by a given tag. Tags enable you to organize and search [workspaces](https://learning.postman.com/docs/collaborating-in-postman/using-workspaces/managing-workspaces/#tagging-a-workspace), [APIs](https://learning.postman.com/docs/designing-and-developing-your-api/managing-apis/#tagging-apis), and [collections](https://learning.postman.com/docs/collections/using-collections/#tagging-a-collection) that contain shared tags.\n\n**Note:**\n\nTagging is available on Postman [**Enterprise** plans](https://www.postman.com/pricing/).', 'parameters': {'type': 'object', 'properties': {'cursor': {'type': 'string', 'description': 'The cursor to get the next set of results in the paginated response. If you pass an invalid value, the API only returns the first set of results.'}, 'direction': {'type': 'string', 'description': "The ascending (`asc`) or descending (`desc`) order to sort the results by, based on the time of the entity's tagging.", 'default': 'desc', 'enum': ['asc', 'desc']}, 'entityType': {'type': 'string', 'description': 'Filter results for the given entity type.', 'enum': ['api', 'collection', 'workspace']}, 'limit': {'type': 'integer', 'description': 'The maximum number of tagged elements to return in a single call.', 'default': 10, 'maximum': 50}, 'slug': {'type': 'string', 'description': "The tag's ID within a team or individual (non-team) user scope.", 'minLength': 2, 'maxLength': 64, 'pattern': '^[a-z][a-z0-9-]*[a-z0-9]+$'}}, 'required': ['slug'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getWorkspace', 'description': "Gets information about a workspace.\n\n**Note:**\n\nThis endpoint's response contains the \\`visibility\\` field. [Visibility](https://learning.postman.com/docs/collaborating-in-postman/using-workspaces/managing-workspaces/#changing-workspace-visibility) determines who can access the workspace:\n- \\`personal\\` — Only you can access the workspace.\n- \\`team\\` — All team members can access the workspace.\n- \\`private\\` — Only invited team members can access the workspace ([**Professional** and **Enterprise** plans only](https://www.postman.com/pricing)).\n- \\`public\\` — Everyone can access the workspace.\n- \\`partner\\` — Only invited team members and [partners](https://learning.postman.com/docs/collaborating-in-postman/using-workspaces/partner-workspaces/) can access the workspace ([**Professional** and **Enterprise** plans only](https://www.postman.com/pricing)).\n\n### Important\n\nWe have deprecated the \\`name\\` and \\`uid\\` responses in the following array of objects:\n- \\`collections\\`\n- \\`environments\\`\n- \\`mocks\\`\n- \\`monitors\\`\n- \\`apis\\`", 'parameters': {'type': 'object', 'properties': {'include': {'type': 'string', 'description': "Include the following information in the endpoint's response:\n- `mocks:deactivated` — Include all deactivated mock servers in the response.\n- `scim` — Return the SCIM user IDs of the workspace creator and who last modified it.\n", 'enum': ['mocks:deactivated', 'scim']}, 'workspaceId': {'type': 'string', 'description': "The workspace's ID."}}, 'required': ['workspaceId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'getWorkspaces', 'description': "Gets all [workspaces](https://learning.postman.com/docs/collaborating-in-postman/using-workspaces/creating-workspaces/). The response includes your workspaces and any workspaces that you have access to.\n\n**Note:**\n\nThis endpoint's response contains the visibility field. Visibility determines who can access the workspace:\n- \\`personal\\` — Only you can access the workspace.\n- \\`team\\` — All team members can access the workspace.\n- \\`private\\` — Only invited team members can access the workspace ([**Professional** and **Enterprise** plans only](https://www.postman.com/pricing)).\n- \\`public\\` — Everyone can access the workspace.\n- \\`partner\\` — Only invited team members and [partners](https://learning.postman.com/docs/collaborating-in-postman/using-workspaces/partner-workspaces/) can access the workspace ([**Professional** and **Enterprise** plans only](https://www.postman.com/pricing)).", 'parameters': {'type': 'object', 'properties': {'createdBy': {'type': 'integer', 'description': 'Return only workspaces created by a specific user ID. For multiple users, pass this value as a comma-separated list of user IDs. The response only returns workspaces that you have access to.'}, 'include': {'type': 'string', 'description': "Include the following information in the endpoint's response:\n- `mocks:deactivated` — Include all deactivated mock servers in the response.\n- `scim` — Return the SCIM user IDs of the workspace creator and who last modified it.\n", 'enum': ['mocks:deactivated', 'scim']}, 'type': {'type': 'string', 'description': 'The type of workspace to filter the response by.', 'enum': ['personal', 'team', 'private', 'public', 'partner']}}, 'required': [], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'publishMock', 'description': 'Publishes a mock server. Publishing a mock server sets its **Access Control** configuration setting to public.', 'parameters': {'type': 'object', 'properties': {'mockId': {'type': 'string', 'description': "The mock's ID."}}, 'required': ['mockId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'putCollection', 'description': "Replaces the contents of a collection using the [Postman Collection v2.1.0 schema format](https://schema.postman.com/collection/json/v2.1.0/draft-07/docs/index.html). Include the collection's ID values in the request body. If you do not, the endpoint removes the existing items and creates new items.\n\nTo perform an update asynchronously, use the \\`Prefer\\` header with the \\`respond-async\\` value. When performing an async update, this endpoint returns a HTTP \\`202 Accepted\\` response.\n\n> The maximum collection size this endpoint accepts cannot exceed 100 MB.\n\nFor a complete list of available property values for this endpoint, use the following references available in the [Postman Collection Format documentation](https://schema.postman.com/collection/json/v2.1.0/draft-07/docs/index.html):\n- \\`info\\` object — Refer to the **Information** entry.\n- \\`item\\` object — Refer to the **Items** entry.\n- For all other possible values, refer to the [Postman Collection Format documentation](https://schema.postman.com/collection/json/v2.1.0/draft-07/docs/index.html).\n- For protocol profile behavior, refer to Postman's [Protocol Profile Behavior documentation](https://github.com/postmanlabs/postman-runtime/blob/develop/docs/protocol-profile-behavior.md).\n\n**Note:**\n\n- If you don't include the collection items' ID values from the request body, the endpoint **removes** the existing items and recreates the items with new ID values.\n- To copy another collection's contents to the given collection, remove all ID values before you pass it in this endpoint. If you do not, this endpoint returns an error. These values include the \\`id\\`, \\`uid\\`, and \\`postman_id\\` values.", 'parameters': {'type': 'object', 'properties': {'Prefer': {'type': 'string', 'description': 'The `respond-async` header to perform the update asynchronously.', 'const': 'respond-async'}, 'collection': {'type': 'object', 'required': ['info', 'item'], 'properties': {'auth': {'type': 'object', 'description': 'The [authorization type supported by Postman](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['type'], 'properties': {'apikey': {'type': 'array', 'description': "The API key's authentication information.", 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'asap': {'type': 'array', 'description': 'The attributes for ASAP (Atlassian S2S Authentication Protocol). Includes the `kid`, `aud`, `iss`, `alg`, `privateKey`, and `claims` properties.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'awsv4': {'type': 'array', 'description': 'The attributes for [AWS Signature](https://learning.postman.com/docs/sending-requests/authorization/aws-signature/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'basic': {'type': 'array', 'description': 'The attributes for [Basic Auth](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/#basic-auth).', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'bearer': {'type': 'array', 'description': 'The attributes for [Bearer Token](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/#bearer-token) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'digest': {'type': 'array', 'description': 'The attributes for [Digest](https://learning.postman.com/docs/sending-requests/authorization/digest-auth/) access authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'edgegrid': {'type': 'array', 'description': 'The attributes for [Akamai Edgegrid](https://learning.postman.com/docs/sending-requests/authorization/akamai-edgegrid/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'hawk': {'type': 'array', 'description': 'The attributes for [Hawk](https://learning.postman.com/docs/sending-requests/authorization/hawk-authentication/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'jwt': {'type': 'array', 'description': 'The attributes for JWT (JSON Web Token). Includes the `payload`, `secret`, `algorithm`, `addTokenTo`, and `headerPrefix` properties.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'ntlm': {'type': 'array', 'description': 'The attributes for [NTLM](https://learning.postman.com/docs/sending-requests/authorization/ntlm-authentication/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'oauth1': {'type': 'array', 'description': 'The attributes for [OAuth1](https://learning.postman.com/docs/sending-requests/authorization/oauth-10/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'oauth2': {'type': 'array', 'description': 'The attributes for [OAuth2](https://learning.postman.com/docs/sending-requests/authorization/oauth-20/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'type': {'type': 'string', 'description': 'The authorization type.', 'enum': ['basic', 'bearer', 'apikey', 'digest', 'oauth1', 'oauth2', 'hawk', 'awsv4', 'ntlm', 'edgegrid', 'jwt', 'asap']}}, 'additionalProperties': False}, 'event': {'type': 'array', 'description': 'A list of scripts configured to run when specific events occur. These scripts can be referenced in the collection by their ID.', 'items': {'type': 'object', 'description': "Information about the collection's events.", 'required': ['listen'], 'properties': {'id': {'type': 'string', 'description': "The event's ID."}, 'listen': {'type': 'string', 'description': 'The `prerequest` (pre-request) or `test` (post-response) value.', 'enum': ['test', 'prerequest']}, 'script': {'type': 'object', 'description': 'Information about the Javascript code that can be used to to perform setup or teardown operations in a response.', 'properties': {'exec': {'type': 'array', 'description': 'A list of script strings, where each line represents a line of code. Separate lines makes it easy to track script changes.', 'items': {'type': ['string', 'null']}}, 'id': {'type': 'string', 'description': "The script's ID."}, 'type': {'type': 'string', 'description': 'The type of script. For example, `text/javascript`.'}}, 'additionalProperties': False}}, 'additionalProperties': False}}, 'info': {'type': 'object', 'description': 'Information about the collection.', 'required': ['name', 'schema'], 'properties': {'_postman_id': {'type': 'string', 'description': "The collection's Postman ID. This field exists for Postman Collection Format v1 compatibility."}, 'createdat': {'type': 'string', 'description': 'The date and time when the collection was created.', 'format': 'date-time'}, 'description': {'type': 'string', 'description': "The collection's description."}, 'lastUpdatedBy': {'type': 'string', 'description': 'The user ID of the person who last updated the collection.'}, 'name': {'type': 'string', 'description': "The collection's name."}, 'schema': {'type': 'string', 'description': 'The "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" Postman Collection Format v2.1.0 schema.', 'const': 'https://schema.getpostman.com/json/collection/v2.1.0/collection.json'}, 'uid': {'type': 'string', 'description': "The collection's unique ID."}, 'updatedAt': {'type': 'string', 'description': 'The date and time when the collection was last updated.', 'format': 'date-time'}}, 'additionalProperties': False}, 'item': {'type': 'array', 'items': {'type': 'object', 'description': 'Information about the collection request or folder.', 'required': ['id'], 'properties': {'description': {'type': ['string', 'null'], 'description': "The item's description."}, 'event': {'type': 'array', 'description': 'A list of scripts configured to run when specific events occur. These scripts can be referenced in the collection by their ID.', 'items': {'type': 'object', 'description': "Information about the collection's events.", 'required': ['listen'], 'properties': {'id': {'type': 'string', 'description': "The event's ID."}, 'listen': {'type': 'string', 'description': 'The `prerequest` (pre-request) or `test` (post-response) value.', 'enum': ['test', 'prerequest']}, 'script': {'type': 'object', 'description': 'Information about the Javascript code that can be used to to perform setup or teardown operations in a response.', 'properties': {'exec': {'type': 'array', 'description': 'A list of script strings, where each line represents a line of code. Separate lines makes it easy to track script changes.', 'items': {'type': ['string', 'null']}}, 'id': {'type': 'string', 'description': "The script's ID."}, 'type': {'type': 'string', 'description': 'The type of script. For example, `text/javascript`.'}}, 'additionalProperties': False}}, 'additionalProperties': False}}, 'id': {'type': 'string', 'description': "The collection item's ID."}, 'name': {'type': 'string', 'description': "The item's name."}, 'protocolProfileBehavior': {'type': 'object', 'description': 'The [settings](https://learning.postman.com/docs/sending-requests/create-requests/request-settings/) used to alter the [Protocol Profile Behavior](https://github.com/postmanlabs/postman-runtime/blob/develop/docs/protocol-profile-behavior.md) of sending a request.', 'properties': {'disableBodyPruning': {'type': 'boolean', 'description': 'If true, disables request body pruning for the GET, COPY, HEAD, PURGE, and UNLOCK methods.'}, 'disableUrlEncoding': {'type': 'boolean', 'description': 'If true, disables the percent encoding of auth, path, query, and fragment URL segments.'}, 'disabledSystemHeaders': {'type': 'object', 'description': 'Disable the system headers which are added implicitly.', 'properties': {'accept-encoding': {'type': 'boolean'}, 'cache-control': {'type': 'boolean'}, 'connection': {'type': 'boolean'}, 'content-length': {'type': 'boolean'}, 'content-type': {'type': 'boolean'}, 'host': {'type': 'boolean'}, 'postman-token': {'type': 'boolean'}}, 'additionalProperties': False}, 'followAuthorizationHeader': {'type': 'boolean', 'description': 'If true, retains the `authorization` header when a redirect happens to a different hostname.'}, 'followOriginalHttpMethod': {'type': 'boolean', 'description': 'If true, redirects with the original HTTP method. Redirects with the GET HTTP method by default.'}, 'followRedirects': {'type': 'boolean', 'description': 'If true, follow HTTP 3xx responses as redirects.'}, 'insecureHTTPParser': {'type': 'boolean', 'description': 'If true, uses an insecure HTTP parser that accepts invalid HTTP headers.'}, 'maxRedirects': {'type': 'number', 'description': 'The maximum number of redirects to follow.'}, 'protocolVersion': {'type': 'string', 'description': 'The HTTP protocol version to use. Supports the `http1`, `http2`, and `auto` values.', 'enum': ['http1', 'http2', 'auto']}, 'removeRefererHeaderOnRedirect': {'type': 'boolean', 'description': 'If true, removes the `referer` header when a redirect happens.'}, 'strictSSL': {'type': 'boolean', 'description': 'If true, enables certificate verification.'}, 'tlsCipherSelection': {'type': 'array', 'description': 'The order of cipher suites that the SSL server profile uses to establish a secure connection.', 'items': {'type': 'string'}}, 'tlsDisabledProtocols': {'type': 'array', 'description': 'The SSL and TLS protocol versions to disable during negotiation.', 'items': {'type': 'string'}}, 'tlsPreferServerCiphers': {'type': 'boolean', 'description': "If true, uses the server's cipher suite order instead of the client's during negotiation."}}, 'additionalProperties': False}, 'request': {'type': 'object', 'description': 'Information about the collection request.', 'properties': {'auth': {'type': 'object', 'description': 'The [authorization type supported by Postman](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['type'], 'properties': {'apikey': {'type': 'array', 'description': "The API key's authentication information.", 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'asap': {'type': 'array', 'description': 'The attributes for ASAP (Atlassian S2S Authentication Protocol). Includes the `kid`, `aud`, `iss`, `alg`, `privateKey`, and `claims` properties.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'awsv4': {'type': 'array', 'description': 'The attributes for [AWS Signature](https://learning.postman.com/docs/sending-requests/authorization/aws-signature/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'basic': {'type': 'array', 'description': 'The attributes for [Basic Auth](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/#basic-auth).', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'bearer': {'type': 'array', 'description': 'The attributes for [Bearer Token](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/#bearer-token) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'digest': {'type': 'array', 'description': 'The attributes for [Digest](https://learning.postman.com/docs/sending-requests/authorization/digest-auth/) access authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'edgegrid': {'type': 'array', 'description': 'The attributes for [Akamai Edgegrid](https://learning.postman.com/docs/sending-requests/authorization/akamai-edgegrid/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'hawk': {'type': 'array', 'description': 'The attributes for [Hawk](https://learning.postman.com/docs/sending-requests/authorization/hawk-authentication/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'jwt': {'type': 'array', 'description': 'The attributes for JWT (JSON Web Token). Includes the `payload`, `secret`, `algorithm`, `addTokenTo`, and `headerPrefix` properties.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'ntlm': {'type': 'array', 'description': 'The attributes for [NTLM](https://learning.postman.com/docs/sending-requests/authorization/ntlm-authentication/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'oauth1': {'type': 'array', 'description': 'The attributes for [OAuth1](https://learning.postman.com/docs/sending-requests/authorization/oauth-10/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'oauth2': {'type': 'array', 'description': 'The attributes for [OAuth2](https://learning.postman.com/docs/sending-requests/authorization/oauth-20/) authentication.', 'items': {'type': 'object', 'description': 'Information about the supported Postman [authorization type](https://learning.postman.com/docs/sending-requests/authorization/authorization-types/).', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "The auth method's key value."}, 'type': {'type': 'string', 'description': "The value's type.", 'enum': ['string', 'boolean', 'number', 'array', 'object', 'any']}, 'value': {'description': "The key's value.", 'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}}]}}, 'additionalProperties': False}}, 'type': {'type': 'string', 'description': 'The authorization type.', 'enum': ['basic', 'bearer', 'apikey', 'digest', 'oauth1', 'oauth2', 'hawk', 'awsv4', 'ntlm', 'edgegrid', 'jwt', 'asap']}}, 'additionalProperties': False}, 'body': {'type': 'object', 'description': "Information about the collection's request body.", 'properties': {'file': {'type': 'object', 'description': 'If the `mode` value is `file`, an object containing the file request information.', 'properties': {'src': {'type': ['string', 'null'], 'description': 'The name of the file to upload (not its path). A null value indicates that no file is selected as a part of the request body.'}}, 'additionalProperties': False}, 'formdata': {'type': 'array', 'description': 'If the `mode` value is `formdata`, then a list of form-data key/pair values.', 'items': {'allOf': [{'type': 'object', 'additionalProperties': True}, {'anyOf': [{'type': 'object', 'properties': {'contentType': {'type': 'string', 'description': 'The form-data Content-Type header.'}, 'description': {'type': ['string', 'null'], 'description': "The key's description."}, 'key': {'type': 'string', 'description': 'The key value.'}, 'type': {'type': 'string', 'description': 'The `text` value.', 'const': 'text'}, 'value': {'type': 'string', 'description': "The key's value."}}, 'additionalProperties': False}, {'type': 'object', 'properties': {'contentType': {'type': 'string', 'description': 'The form-data Content-Type header.'}, 'description': {'type': ['string', 'null'], 'description': "The key's description."}, 'key': {'type': 'string', 'description': 'The key value.'}, 'src': True, 'type': {'type': 'string', 'description': 'The `file` value.', 'const': 'file'}}, 'additionalProperties': False}]}]}}, 'graphql': {'type': 'object', 'description': 'If the `mode` value is `graphql`, an object containing the GraphQL request information.', 'properties': {'query': {'type': 'string', 'description': 'The GraphQL query.'}, 'variables': {'type': ['string', 'null'], 'description': 'The GraphQL query variables, in JSON format.'}}, 'additionalProperties': False}, 'mode': {'type': 'string', 'description': 'The data associated with the request.', 'enum': ['raw', 'urlencoded', 'formdata', 'file', 'graphql']}, 'options': {'type': 'object', 'description': 'Additional configurations and options set for various modes.', 'additionalProperties': True}, 'raw': {'type': 'string', 'description': 'If the `mode` value is `raw`, the raw content of the request body.'}, 'urlencoded': {'type': 'array', 'description': 'A list of x-www-form-encoded key/value pairs.', 'items': {'type': 'object', 'required': ['key'], 'properties': {'description': {'type': ['string', 'null'], 'description': "The key's description."}, 'key': {'type': 'string', 'description': 'The key value.'}, 'value': {'type': 'string', 'description': "The key's value."}}, 'additionalProperties': False}}}, 'additionalProperties': False}, 'description': {'type': ['string', 'null'], 'description': "The request's description."}, 'header': {'type': 'array', 'description': 'A list of headers.', 'items': {'type': 'object', 'description': 'Information about the header.', 'required': ['key', 'value'], 'properties': {'description': {'type': ['string', 'null'], 'description': "The header's description."}, 'key': {'type': 'string', 'description': "The header's key, such as `Content-Type` or `X-Custom-Header`."}, 'value': {'type': 'string', 'description': "The header key's value."}}, 'additionalProperties': False}}, 'method': {'type': 'string', 'description': "The request's standard HTTP method."}, 'url': {'description': 'Information about the URL.', 'anyOf': [{'type': ['string', 'null'], 'description': "The request's raw URL."}, {'type': 'object', 'properties': {'host': {'type': 'array', 'description': "The host's URL.", 'items': {'type': ['string', 'null']}}, 'path': {'type': 'array', 'description': "A list of the URL's path components.", 'items': {'type': 'string'}}, 'port': {'type': 'string', 'description': "The URL's port number. An empty value indicates port `80` (http) or `443` (https)."}, 'protocol': {'type': 'string', 'description': 'The request protocol.'}, 'query': {'type': 'array', 'description': 'A list of query parameters. These are the query string parts of the URL, parsed as separate variables.', 'items': {'type': 'object', 'properties': {'description': {'type': ['string', 'null'], 'description': "The query parameter's description."}, 'disabled': {'type': 'boolean', 'description': "If true, the query parameter isn't sent with the request.", 'default': False}, 'key': {'type': ['string', 'null'], 'description': "The query parameter's key."}, 'value': {'type': ['string', 'null'], 'description': "The key's value."}}, 'additionalProperties': False}}, 'raw': {'type': 'string', 'description': "The request's raw URL."}}, 'additionalProperties': False}]}}, 'additionalProperties': False}, 'uid': {'type': 'string', 'description': "The collection item's unique ID."}, 'variable': {'type': 'array', 'description': "A list of the collection's [variables](https://learning.postman.com/docs/sending-requests/variables/variables/). Make certain not to include sensitive information in variables.", 'items': {'type': 'object', 'description': 'Information about the variable.', 'properties': {'description': {'type': 'string', 'description': "The variable's description. Doesn't apply to collection-level variables."}, 'disabled': {'type': 'boolean', 'description': 'If true, the variable is not enabled. Applies only to query parameter variables.', 'default': False}, 'id': {'type': 'string', 'description': "The variable's ID. Doesn't apply to collection-level variables."}, 'key': {'type': 'string', 'description': "The variable's key (name)."}, 'type': {'type': 'string', 'description': "The variable's type.", 'enum': ['string', 'boolean', 'integer']}, 'value': {'type': 'string', 'description': "The key's value."}}, 'additionalProperties': False}}}, 'additionalProperties': False}}, 'protocolProfileBehavior': {'type': 'object', 'description': 'The [settings](https://learning.postman.com/docs/sending-requests/create-requests/request-settings/) used to alter the [Protocol Profile Behavior](https://github.com/postmanlabs/postman-runtime/blob/develop/docs/protocol-profile-behavior.md) of sending a request.', 'properties': {'disableBodyPruning': {'type': 'boolean', 'description': 'If true, disables request body pruning for the GET, COPY, HEAD, PURGE, and UNLOCK methods.'}, 'disableUrlEncoding': {'type': 'boolean', 'description': 'If true, disables the percent encoding of auth, path, query, and fragment URL segments.'}, 'disabledSystemHeaders': {'type': 'object', 'description': 'Disable the system headers which are added implicitly.', 'properties': {'accept-encoding': {'type': 'boolean'}, 'cache-control': {'type': 'boolean'}, 'connection': {'type': 'boolean'}, 'content-length': {'type': 'boolean'}, 'content-type': {'type': 'boolean'}, 'host': {'type': 'boolean'}, 'postman-token': {'type': 'boolean'}}, 'additionalProperties': False}, 'followAuthorizationHeader': {'type': 'boolean', 'description': 'If true, retains the `authorization` header when a redirect happens to a different hostname.'}, 'followOriginalHttpMethod': {'type': 'boolean', 'description': 'If true, redirects with the original HTTP method. Redirects with the GET HTTP method by default.'}, 'followRedirects': {'type': 'boolean', 'description': 'If true, follow HTTP 3xx responses as redirects.'}, 'insecureHTTPParser': {'type': 'boolean', 'description': 'If true, uses an insecure HTTP parser that accepts invalid HTTP headers.'}, 'maxRedirects': {'type': 'number', 'description': 'The maximum number of redirects to follow.'}, 'protocolVersion': {'type': 'string', 'description': 'The HTTP protocol version to use. Supports the `http1`, `http2`, and `auto` values.', 'enum': ['http1', 'http2', 'auto']}, 'removeRefererHeaderOnRedirect': {'type': 'boolean', 'description': 'If true, removes the `referer` header when a redirect happens.'}, 'strictSSL': {'type': 'boolean', 'description': 'If true, enables certificate verification.'}, 'tlsCipherSelection': {'type': 'array', 'description': 'The order of cipher suites that the SSL server profile uses to establish a secure connection.', 'items': {'type': 'string'}}, 'tlsDisabledProtocols': {'type': 'array', 'description': 'The SSL and TLS protocol versions to disable during negotiation.', 'items': {'type': 'string'}}, 'tlsPreferServerCiphers': {'type': 'boolean', 'description': "If true, uses the server's cipher suite order instead of the client's during negotiation."}}, 'additionalProperties': False}, 'variable': {'type': 'array', 'description': "A list of the collection's [variables](https://learning.postman.com/docs/sending-requests/variables/variables/). Make certain not to include sensitive information in variables.", 'items': {'type': 'object', 'description': 'Information about the variable.', 'properties': {'description': {'type': 'string', 'description': "The variable's description. Doesn't apply to collection-level variables."}, 'disabled': {'type': 'boolean', 'description': 'If true, the variable is not enabled. Applies only to query parameter variables.', 'default': False}, 'id': {'type': 'string', 'description': "The variable's ID. Doesn't apply to collection-level variables."}, 'key': {'type': 'string', 'description': "The variable's key (name)."}, 'type': {'type': 'string', 'description': "The variable's type.", 'enum': ['string', 'boolean', 'integer']}, 'value': {'type': 'string', 'description': "The key's value."}}, 'additionalProperties': False}}}, 'additionalProperties': False}, 'collectionId': {'type': 'string', 'description': 'The collection ID must be in the form <OWNER_ID>-<UUID> (e.g. 12345-33823532ab9e41c9b6fd12d0fd459b8b).'}}, 'required': ['collectionId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'putEnvironment', 'description': 'Replaces all the contents of an environment with the given information.\n\n**Note:**\n\n- The request body size cannot exceed the maximum allowed size of 30MB.\n- If you receive an HTTP \\`411 Length Required\\` error response, manually pass the \\`Content-Length\\` header and its value in the request header.', 'parameters': {'type': 'object', 'properties': {'environment': {'type': 'object', 'description': 'Information about the environment.', 'properties': {'name': {'type': 'string', 'description': "The environment's name."}, 'values': {'type': 'array', 'description': "Information about the environment's variables.", 'items': {'type': 'object', 'description': "Information about the environment's variables.", 'properties': {'description': {'type': 'string', 'description': "The variable's description.", 'maxLength': 512}, 'enabled': {'type': 'boolean', 'description': 'If true, the variable is enabled.'}, 'key': {'type': 'string', 'description': "The variable's name."}, 'type': {'type': 'string', 'description': "The variable's type:\n- `secret` — The variable value is masked.\n- `default` — The variable value is visible in plain text.\n", 'enum': ['secret', 'default']}, 'value': {'type': 'string', 'description': "The variable's value."}}, 'additionalProperties': False}}}, 'additionalProperties': False}, 'environmentId': {'type': 'string', 'description': "The environment's ID."}}, 'required': ['environmentId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'syncCollectionWithSpec', 'description': 'Syncs a collection generated from an API specification. This is an asynchronous endpoint that returns an HTTP \\`202 Accepted\\` response.\n\n**Note:**\n\n- This endpoint only supports the OpenAPI 3.0 specification type.\n- You can only sync collections generated from the given spec ID.', 'parameters': {'type': 'object', 'properties': {'collectionUid': {'type': 'string', 'description': "The collection's unique ID."}, 'specId': {'type': 'string', 'description': "The spec's ID."}}, 'required': ['collectionUid', 'specId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'syncSpecWithCollection', 'description': 'Syncs an API specification linked to a collection. This is an asynchronous endpoint that returns an HTTP \\`202 Accepted\\` response.\n\n**Note:**\n\n- This endpoint only supports the OpenAPI 3.0 specification type.\n- You can only sync specs generated from the given collection ID.', 'parameters': {'type': 'object', 'properties': {'collectionUid': {'type': 'string', 'description': "The collection's unique ID."}, 'specId': {'type': 'string', 'description': "The spec's ID."}}, 'required': ['specId', 'collectionUid'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'updateMock', 'description': 'Updates a mock server.', 'parameters': {'type': 'object', 'properties': {'mock': {'type': 'object', 'properties': {'config': {'type': 'object', 'description': "The mock server's configuration settings.", 'properties': {'serverResponseId': {'type': ['string', 'null'], 'description': 'The server response ID. This sets the given server response as the default response for each request. To deactivate a server response, pass a null value.'}}, 'additionalProperties': False}, 'description': {'type': 'string', 'description': "The mock server's description."}, 'environment': {'type': 'string', 'description': "The associated environment's unique ID."}, 'name': {'type': 'string', 'description': "The mock server's name."}, 'private': {'type': 'boolean', 'description': 'If true, the mock server is set private. By default, mock servers are public and can receive requests from anyone and anywhere.', 'default': False}, 'versionTag': {'type': 'string', 'description': "The API's version tag ID."}}, 'additionalProperties': False}, 'mockId': {'type': 'string', 'description': "The mock's ID."}}, 'required': ['mockId'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'updateSpecFile', 'description': "Updates an API specification's file.\n\n**Note:**\n\n- This endpoint does not accept an empty request body. You must pass one of the accepted values.\n- This endpoint does not accept multiple request body properties in a single call. For example, you cannot pass both the \\`content\\` and \\`type\\` property at the same time.\n- Multi-file specifications can only have one root file.\n- When updating a file type to \\`ROOT\\`, the previous root file is updated to the \\`DEFAULT\\` file type.\n- Files cannot exceed a maximum of 10 MB in size.", 'parameters': {'type': 'object', 'properties': {'content': {'type': 'string', 'description': "The specification's stringified contents."}, 'filePath': {'type': 'string', 'description': 'The path to the file.'}, 'name': {'type': 'string', 'description': "The file's name."}, 'specId': {'type': 'string', 'description': "The spec's ID."}, 'type': {'type': 'string', 'description': 'The type of file:\n- `ROOT` — The file containing the full OpenAPI structure. This serves as the entry point for the API spec and references other (`DEFAULT`) spec files. Multi-file specs can only have one root file.\n- `DEFAULT` — A file referenced by the `ROOT` file.\n', 'enum': ['DEFAULT', 'ROOT']}}, 'required': ['specId', 'filePath'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'updateSpecProperties', 'description': "Updates an API specification's properties, such as its name.", 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': "The spec's name."}, 'specId': {'type': 'string', 'description': "The spec's ID."}}, 'required': ['specId', 'name'], 'additionalProperties': False}, 'strict': True}
postman
other
{'type': 'function', 'name': 'updateWorkspace', 'description': 'Updates a workspace.\n\n**Note:**\n\n- There are rate limits when publishing public workspaces.\n- Public team workspace names must be unique.\n\n### Important\n\nWe deprecated linking collections or environments between workspaces. We do not recommend that you do this.\n\nIf you have a linked collection or environment, note the following:\n- The endpoint does not create a clone of a collection or environment.\n- Any changes you make to a linked collection or environment changes them in all workspaces.\n- If you delete a collection or environment linked between workspaces, the system deletes it in all the workspaces.', 'parameters': {'type': 'object', 'properties': {'workspace': {'type': 'object', 'properties': {'about': {'type': 'string', 'description': 'A brief summary about the workspace.'}, 'description': {'type': 'string', 'description': 'The new workspace description.'}, 'name': {'type': 'string', 'description': "The workspace's new name."}, 'type': {'type': 'string', 'description': 'The new workspace visibility [type](https://learning.postman.com/docs/collaborating-in-postman/using-workspaces/managing-workspaces/#changing-workspace-visibility). This property does not support the following workspace visibility changes:\n- `private` to `public`, `public` to `private`, and `private` to `personal` for Free and Basic [plans](https://www.postman.com/pricing/).\n- `public` to `personal` for team users.\n', 'enum': ['private', 'personal', 'team', 'public']}}, 'additionalProperties': False}, 'workspaceId': {'type': 'string', 'description': "The workspace's ID."}}, 'required': ['workspaceId'], 'additionalProperties': False}, 'strict': True}
pref-editor
other
{'type': 'function', 'name': 'add_preference', 'description': 'Adds a new preference given the name, value and type.', 'parameters': {'type': 'object', 'properties': {'appId': {'type': 'string', 'description': "The application's package name."}, 'deviceId': {'type': 'string', 'description': "The device's serial number."}, 'filename': {'type': 'string', 'description': 'The filename with or without the extension.'}, 'name': {'type': 'string', 'description': 'The name/key of the user preference'}, 'type': {'type': 'string', 'description': 'The type of the preference value: integer, boolean, float, double, long or string'}, 'value': {'type': 'string', 'description': 'The value of user preference'}}, 'required': ['name', 'value', 'type', 'deviceId', 'appId', 'filename'], 'additionalProperties': False}, 'strict': True}
pref-editor
other
{'type': 'function', 'name': 'change_preference', 'description': 'Changes the value of an existing preference', 'parameters': {'type': 'object', 'properties': {'appId': {'type': 'string', 'description': "The application's package name."}, 'deviceId': {'type': 'string', 'description': "The device's serial number."}, 'filename': {'type': 'string', 'description': 'The filename with or without the extension.'}, 'name': {'type': 'string', 'description': 'The name/key of the user preference'}, 'value': {'type': 'string', 'description': 'The value of user preference'}}, 'required': ['name', 'value', 'deviceId', 'appId', 'filename'], 'additionalProperties': False}, 'strict': True}
pref-editor
other
{'type': 'function', 'name': 'delete_preference', 'description': 'Delete an existing preference', 'parameters': {'type': 'object', 'properties': {'appId': {'type': 'string', 'description': "The application's package name."}, 'deviceId': {'type': 'string', 'description': "The device's serial number."}, 'filename': {'type': 'string', 'description': 'The filename with or without the extension.'}, 'name': {'type': 'string', 'description': 'The name/key of the user preference'}}, 'required': ['name', 'deviceId', 'appId', 'filename'], 'additionalProperties': False}, 'strict': True}
pref-editor
other
{'type': 'function', 'name': 'devices', 'description': 'Lists connected Android devices', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
pref-editor
other
{'type': 'function', 'name': 'list_apps', 'description': 'Lists apps installed on device', 'parameters': {'type': 'object', 'properties': {'deviceId': {'type': 'string', 'description': "The device's serial number."}}, 'required': ['deviceId'], 'additionalProperties': False}, 'strict': True}
pref-editor
other
{'type': 'function', 'name': 'list_files', 'description': 'Lists preference files for an app', 'parameters': {'type': 'object', 'properties': {'appId': {'type': 'string', 'description': "The application's package name."}, 'deviceId': {'type': 'string', 'description': "The device's serial number."}}, 'required': ['deviceId', 'appId'], 'additionalProperties': False}, 'strict': True}
pref-editor
other
{'type': 'function', 'name': 'read_preferences', 'description': 'Reads all user preferences in a file', 'parameters': {'type': 'object', 'properties': {'appId': {'type': 'string', 'description': "The application's package name."}, 'deviceId': {'type': 'string', 'description': "The device's serial number."}, 'filename': {'type': 'string', 'description': 'The filename with or without the extension.'}}, 'required': ['deviceId', 'appId', 'filename'], 'additionalProperties': False}, 'strict': True}
ramparts
other
{'type': 'function', 'name': 'scan', 'description': 'Scan an MCP server URL and return security findings as JSON', 'parameters': {'type': 'object', 'properties': {'auth_headers': {'type': 'object', 'default': None, 'additionalProperties': {'type': 'string'}, 'nullable': True}, 'detailed': {'type': 'boolean', 'default': False}, 'format': {'type': 'string', 'default': None, 'nullable': True}, 'httpTimeout': {'type': 'integer', 'default': None, 'minimum': 0, 'format': 'uint64', 'nullable': True}, 'returnPrompts': {'type': 'boolean', 'description': 'If true, do not call the LLM; return prompts instead', 'default': None, 'nullable': True}, 'timeout': {'type': 'integer', 'default': None, 'minimum': 0, 'format': 'uint64', 'nullable': True}, 'url': {'type': 'string'}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
ramparts
other
{'type': 'function', 'name': 'scan-config', 'description': 'Scan MCP servers from IDE configuration files and return results as JSON', 'parameters': {'type': 'object', 'properties': {'auth_headers': {'type': 'object', 'default': None, 'additionalProperties': {'type': 'string'}, 'nullable': True}, 'detailed': {'type': 'boolean', 'default': None, 'nullable': True}, 'format': {'type': 'string', 'default': None, 'nullable': True}, 'httpTimeout': {'type': 'integer', 'default': None, 'minimum': 0, 'format': 'uint64', 'nullable': True}, 'returnPrompts': {'type': 'boolean', 'description': 'If true, do not call the LLM; return prompts instead', 'default': None, 'nullable': True}, 'timeout': {'type': 'integer', 'default': None, 'minimum': 0, 'format': 'uint64', 'nullable': True}}, 'required': [], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'capture_payment', 'description': "Use this tool to capture a previously authorized payment. Only payments with 'authorized' status can be captured", 'parameters': {'type': 'object', 'properties': {'amount': {'type': 'number', 'description': 'The amount to be captured (in paisa). Should be equal to the authorized amount'}, 'currency': {'type': 'string', 'description': 'ISO code of the currency in which the payment was made (e.g., INR)'}, 'payment_id': {'type': 'string', 'description': "Unique identifier of the payment to be captured. Should start with 'pay_'"}}, 'required': ['payment_id', 'amount', 'currency'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'close_qr_code', 'description': "Close a QR Code that's no longer needed", 'parameters': {'type': 'object', 'properties': {'qr_code_id': {'type': 'string', 'description': "Unique identifier of the QR Code to be closedThe QR code id should start with 'qr_'"}}, 'required': ['qr_code_id'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'create_instant_settlement', 'description': 'Create an instant settlement to get funds transferred to your bank account', 'parameters': {'type': 'object', 'properties': {'amount': {'type': 'number', 'description': 'The amount you want to get settled instantly in amount in the smallest currency sub-unit (e.g., for ₹295, use 29500)', 'minimum': 200}, 'description': {'type': 'string', 'description': 'Custom note for the instant settlement.', 'maxLength': 30, 'pattern': '^[a-zA-Z0-9 ]*$'}, 'notes': {'type': 'object', 'description': 'Key-value pairs for additional information. Max 15 pairs, 256 chars each', 'maxProperties': 15}, 'settle_full_balance': {'type': 'boolean', 'description': 'If true, Razorpay will settle the maximum amount possible and ignore amount parameter', 'default': False}}, 'required': ['amount'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'create_order', 'description': 'Create a new order in Razorpay', 'parameters': {'type': 'object', 'properties': {'amount': {'type': 'number', 'description': 'Payment amount in the smallest currency sub-unit (e.g., for ₹295, use 29500)', 'minimum': 100}, 'currency': {'type': 'string', 'description': 'ISO code for the currency (e.g., INR, USD, SGD)', 'pattern': '^[A-Z]{3}$'}, 'first_payment_min_amount': {'type': 'number', 'description': 'Minimum amount for first partial payment (only if partial_payment is true)', 'minimum': 100}, 'notes': {'type': 'object', 'description': 'Key-value pairs for additional information (max 15 pairs, 256 chars each)', 'maxProperties': 15}, 'partial_payment': {'type': 'boolean', 'description': 'Whether the customer can make partial payments', 'default': False}, 'receipt': {'type': 'string', 'description': 'Receipt number for internal reference (max 40 chars, must be unique)', 'maxLength': 40}, 'transfers': {'type': 'array', 'description': 'Array of transfer objects for distributing payment amounts among multiple linked accounts. Each transfer object should contain: account (linked account ID), amount (in currency subunits), currency (ISO code), and optional fields like notes, linked_account_notes, on_hold, on_hold_until'}}, 'required': ['amount', 'currency'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'create_payment_link', 'description': 'Create a new standard payment link in Razorpay with a specified amount', 'parameters': {'type': 'object', 'properties': {'accept_partial': {'type': 'boolean', 'description': 'Indicates whether customers can make partial payments using the Payment Link. Default: false'}, 'amount': {'type': 'number', 'description': 'Amount to be paid using the link in smallest currency unit(e.g., ₹300, use 30000)', 'minimum': 100}, 'callback_method': {'type': 'string', 'description': "HTTP method for callback redirection. Must be 'get' if callback_url is set."}, 'callback_url': {'type': 'string', 'description': 'If specified, adds a redirect URL to the Payment Link. Customer will be redirected here after payment.'}, 'currency': {'type': 'string', 'description': 'Three-letter ISO code for the currency (e.g., INR)'}, 'customer_contact': {'type': 'string', 'description': 'Contact number of the customer.'}, 'customer_email': {'type': 'string', 'description': 'Email address of the customer.'}, 'customer_name': {'type': 'string', 'description': 'Name of the customer.'}, 'description': {'type': 'string', 'description': 'A brief description of the Payment Link explaining the intent of the payment.'}, 'expire_by': {'type': 'number', 'description': 'Timestamp, in Unix, when the Payment Link will expire. By default, a Payment Link will be valid for six months.'}, 'first_min_partial_amount': {'type': 'number', 'description': 'Minimum amount that must be paid by the customer as the first partial payment. Default value is 100.'}, 'notes': {'type': 'object', 'description': 'Key-value pairs that can be used to store additional information. Maximum 15 pairs, each value limited to 256 characters.'}, 'notify_email': {'type': 'boolean', 'description': 'Send email notifications for the Payment Link.'}, 'notify_sms': {'type': 'boolean', 'description': 'Send SMS notifications for the Payment Link.'}, 'reference_id': {'type': 'string', 'description': 'Reference number tagged to a Payment Link. Must be unique for each Payment Link. Max 40 characters.'}, 'reminder_enable': {'type': 'boolean', 'description': 'Enable payment reminders for the Payment Link.'}}, 'required': ['amount', 'currency'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'create_qr_code', 'description': 'Create a new QR code in Razorpay that can be used to accept UPI payments', 'parameters': {'type': 'object', 'properties': {'close_by': {'type': 'number', 'description': 'Unix timestamp at which QR Code should be automatically closed (min 2 mins after current time)'}, 'customer_id': {'type': 'string', 'description': 'The unique identifier of the customer to link with the QR Code'}, 'description': {'type': 'string', 'description': 'A brief description about the QR Code'}, 'fixed_amount': {'type': 'boolean', 'description': 'Whether QR should accept only specific amount (true) or any amount (false)', 'default': False}, 'name': {'type': 'string', 'description': "Label to identify the QR Code (e.g., 'Store Front Display')"}, 'notes': {'type': 'object', 'description': 'Key-value pairs for additional information (max 15 pairs, 256 chars each)', 'maxProperties': 15}, 'payment_amount': {'type': 'number', 'description': 'The specific amount allowed for transaction in smallest currency unit', 'minimum': 1}, 'type': {'type': 'string', 'description': "The type of the QR Code. Currently only supports 'upi_qr'", 'pattern': '^upi_qr$'}, 'usage': {'type': 'string', 'description': "Whether QR should accept single or multiple payments. Possible values: 'single_use', 'multiple_use'", 'enum': ['single_use', 'multiple_use']}}, 'required': ['type', 'usage'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'create_refund', 'description': 'Use this tool to create a normal refund for a payment. Amount should be in the smallest currency unit (e.g., for ₹295, use 29500)', 'parameters': {'type': 'object', 'properties': {'amount': {'type': 'number', 'description': 'Payment amount in the smallest currency unit (e.g., for ₹295, use 29500)', 'minimum': 100}, 'notes': {'type': 'object', 'description': 'Key-value pairs used to store additional information. A maximum of 15 key-value pairs can be included.'}, 'payment_id': {'type': 'string', 'description': 'Unique identifier of the payment which needs to be refunded. ID should have a pay_ prefix.'}, 'receipt': {'type': 'string', 'description': 'A unique identifier provided by you for your internal reference.'}, 'speed': {'type': 'string', 'description': "The speed at which the refund is to be processed. Default is 'normal'. For instant refunds, speed is set as 'optimum'."}}, 'required': ['payment_id', 'amount'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_all_instant_settlements', 'description': 'Fetch all instant settlements with optional filtering, pagination, and payout details', 'parameters': {'type': 'object', 'properties': {'count': {'type': 'number', 'description': 'Number of instant settlement records to fetch (default: 10, max: 100)', 'minimum': 1, 'maximum': 100}, 'expand': {'type': 'array', 'description': 'Pass this if you want to fetch payout details as part of the response for all instant settlements. Supported values: ondemand_payouts'}, 'from': {'type': 'number', 'description': 'Unix timestamp (in seconds) from when instant settlements are to be fetched', 'minimum': 0}, 'skip': {'type': 'number', 'description': 'Number of instant settlement records to skip (default: 0)', 'minimum': 0}, 'to': {'type': 'number', 'description': 'Unix timestamp (in seconds) up till when instant settlements are to be fetched', 'minimum': 0}}, 'required': [], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_all_orders', 'description': 'Fetch all orders with optional filtering and pagination', 'parameters': {'type': 'object', 'properties': {'authorized': {'type': 'number', 'description': 'Filter orders based on payment authorization status. Values: 0 (orders with unauthorized payments), 1 (orders with authorized payments)', 'minimum': 0, 'maximum': 1}, 'count': {'type': 'number', 'description': 'Number of orders to be fetched (default: 10, max: 100)', 'minimum': 1, 'maximum': 100}, 'expand': {'type': 'array', 'description': 'Used to retrieve additional information. Supported values: payments, payments.card, transfers, virtual_account'}, 'from': {'type': 'number', 'description': 'Timestamp (in Unix format) from when the orders should be fetched', 'minimum': 0}, 'receipt': {'type': 'string', 'description': 'Filter orders that contain the provided value for receipt'}, 'skip': {'type': 'number', 'description': 'Number of orders to be skipped (default: 0)', 'minimum': 0}, 'to': {'type': 'number', 'description': 'Timestamp (in Unix format) up till when orders are to be fetched', 'minimum': 0}}, 'required': [], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_all_payment_links', 'description': 'Fetch all payment links with optional filtering by payment ID or reference ID.You can specify the upi_link parameter to filter by link type.', 'parameters': {'type': 'object', 'properties': {'payment_id': {'type': 'string', 'description': 'Optional: Filter by payment ID associated with payment links'}, 'reference_id': {'type': 'string', 'description': 'Optional: Filter by reference ID used when creating payment links'}, 'upi_link': {'type': 'number', 'description': 'Optional: Filter only upi links. Value should be 1 if you want only upi links, 0 for only standard linksIf not provided, all types of links will be returned'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_all_payments', 'description': 'Fetch all payments with optional filtering and pagination', 'parameters': {'type': 'object', 'properties': {'count': {'type': 'number', 'description': 'Number of payments to fetch (default: 10, max: 100)', 'minimum': 1, 'maximum': 100}, 'from': {'type': 'number', 'description': 'Unix timestamp (in seconds) from when payments are to be fetched', 'minimum': 0}, 'skip': {'type': 'number', 'description': 'Number of payments to skip (default: 0)', 'minimum': 0}, 'to': {'type': 'number', 'description': 'Unix timestamp (in seconds) up till when payments are to be fetched', 'minimum': 0}}, 'required': [], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_all_payouts', 'description': 'Fetch all payouts for a bank account number', 'parameters': {'type': 'object', 'properties': {'account_number': {'type': 'string', 'description': 'The account from which the payouts were done.For example, 7878780080316316'}, 'count': {'type': 'number', 'description': 'Number of payouts to be fetched. Default value is 10.Maximum value is 100. This can be used for pagination,in combination with the skip parameter', 'minimum': 1}, 'skip': {'type': 'number', 'description': 'Numbers of payouts to be skipped. Default value is 0.This can be used for pagination, in combination with count', 'minimum': 0}}, 'required': ['account_number'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_all_qr_codes', 'description': 'Fetch all QR codes with optional filtering and pagination', 'parameters': {'type': 'object', 'properties': {'count': {'type': 'number', 'description': 'Number of QR Codes to be retrieved (default: 10, max: 100)', 'minimum': 1, 'maximum': 100}, 'from': {'type': 'number', 'description': 'Unix timestamp, in seconds, from when QR Codes are to be retrieved', 'minimum': 0}, 'skip': {'type': 'number', 'description': 'Number of QR Codes to be skipped (default: 0)', 'minimum': 0}, 'to': {'type': 'number', 'description': 'Unix timestamp, in seconds, till when QR Codes are to be retrieved', 'minimum': 0}}, 'required': [], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_all_refunds', 'description': 'Use this tool to retrieve details of all refunds. By default, only the last 10 refunds are returned.', 'parameters': {'type': 'object', 'properties': {'count': {'type': 'number', 'description': 'The number of refunds to fetch. You can fetch a maximum of 100 refunds'}, 'from': {'type': 'number', 'description': 'Unix timestamp at which the refunds were created'}, 'skip': {'type': 'number', 'description': 'The number of refunds to be skipped'}, 'to': {'type': 'number', 'description': 'Unix timestamp till which the refunds were created'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_all_settlements', 'description': 'Fetch all settlements with optional filtering and pagination', 'parameters': {'type': 'object', 'properties': {'count': {'type': 'number', 'description': 'Number of settlement records to fetch (default: 10, max: 100)', 'minimum': 1, 'maximum': 100}, 'from': {'type': 'number', 'description': 'Unix timestamp (in seconds) from when settlements are to be fetched', 'minimum': 0}, 'skip': {'type': 'number', 'description': 'Number of settlement records to skip (default: 0)', 'minimum': 0}, 'to': {'type': 'number', 'description': 'Unix timestamp (in seconds) up till when settlements are to be fetched', 'minimum': 0}}, 'required': [], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_instant_settlement_with_id', 'description': 'Fetch details of a specific instant settlement using its ID', 'parameters': {'type': 'object', 'properties': {'settlement_id': {'type': 'string', 'description': "The ID of the instant settlement to fetch. ID starts with 'setlod_'"}}, 'required': ['settlement_id'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_multiple_refunds_for_payment', 'description': 'Use this tool to retrieve multiple refunds for a payment. By default, only the last 10 refunds are returned.', 'parameters': {'type': 'object', 'properties': {'count': {'type': 'number', 'description': 'The number of refunds to fetch for the payment.'}, 'from': {'type': 'number', 'description': 'Unix timestamp at which the refunds were created.'}, 'payment_id': {'type': 'string', 'description': 'Unique identifier of the payment for which refunds are to be retrieved. ID should have a pay_ prefix.'}, 'skip': {'type': 'number', 'description': 'The number of refunds to be skipped for the payment.'}, 'to': {'type': 'number', 'description': 'Unix timestamp till which the refunds were created.'}}, 'required': ['payment_id'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_order', 'description': "Fetch an order's details using its ID", 'parameters': {'type': 'object', 'properties': {'order_id': {'type': 'string', 'description': 'Unique identifier of the order to be retrieved'}}, 'required': ['order_id'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_order_payments', 'description': 'Fetch all payments made for a specific order in Razorpay', 'parameters': {'type': 'object', 'properties': {'order_id': {'type': 'string', 'description': 'Unique identifier of the order for which payments should be retrieved. Order id should start with `order_`'}}, 'required': ['order_id'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_payment', 'description': 'Use this tool to retrieve the details of a specific payment using its id. Amount returned is in paisa', 'parameters': {'type': 'object', 'properties': {'payment_id': {'type': 'string', 'description': 'payment_id is unique identifier of the payment to be retrieved.'}}, 'required': ['payment_id'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_payment_card_details', 'description': 'Use this tool to retrieve the details of the card used to make a payment. Only works for payments made using a card.', 'parameters': {'type': 'object', 'properties': {'payment_id': {'type': 'string', 'description': "Unique identifier of the payment for which you want to retrieve card details. Must start with 'pay_'"}}, 'required': ['payment_id'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_payment_link', 'description': "Fetch payment link details using it's ID. Response contains the basic details like amount, status etc. The link could be of any type(standard or UPI)", 'parameters': {'type': 'object', 'properties': {'payment_link_id': {'type': 'string', 'description': 'ID of the payment link to be fetched(ID should have a plink_ prefix).'}}, 'required': ['payment_link_id'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_payments_for_qr_code', 'description': 'Fetch all payments made on a QR code', 'parameters': {'type': 'object', 'properties': {'count': {'type': 'number', 'description': 'Number of payments to be fetched (default: 10, max: 100)', 'minimum': 1, 'maximum': 100}, 'from': {'type': 'number', 'description': 'Unix timestamp, in seconds, from when payments are to be retrieved', 'minimum': 0}, 'qr_code_id': {'type': 'string', 'description': "The unique identifier of the QR Code to fetch payments forThe QR code id should start with 'qr_'"}, 'skip': {'type': 'number', 'description': 'Number of records to be skipped while fetching the payments', 'minimum': 0}, 'to': {'type': 'number', 'description': 'Unix timestamp, in seconds, till when payments are to be fetched', 'minimum': 0}}, 'required': ['qr_code_id'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_payout_with_id', 'description': "Fetch a payout's details using its ID", 'parameters': {'type': 'object', 'properties': {'payout_id': {'type': 'string', 'description': "The unique identifier of the payout. For example, 'pout_00000000000001'"}}, 'required': ['payout_id'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_qr_code', 'description': "Fetch a QR code's details using it's ID", 'parameters': {'type': 'object', 'properties': {'qr_code_id': {'type': 'string', 'description': "Unique identifier of the QR Code to be retrievedThe QR code id should start with 'qr_'"}}, 'required': ['qr_code_id'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_qr_codes_by_customer_id', 'description': 'Fetch all QR codes for a specific customer', 'parameters': {'type': 'object', 'properties': {'customer_id': {'type': 'string', 'description': 'The unique identifier of the customer'}}, 'required': ['customer_id'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_qr_codes_by_payment_id', 'description': 'Fetch all QR codes for a specific payment', 'parameters': {'type': 'object', 'properties': {'payment_id': {'type': 'string', 'description': "The unique identifier of the paymentThe payment id always should start with 'pay_'"}}, 'required': ['payment_id'], 'additionalProperties': False}, 'strict': True}
razorpay
other
{'type': 'function', 'name': 'fetch_refund', 'description': 'Use this tool to retrieve the details of a specific refund using its id.', 'parameters': {'type': 'object', 'properties': {'refund_id': {'type': 'string', 'description': 'Unique identifier of the refund which is to be retrieved. ID should have a rfnd_ prefix.'}}, 'required': ['refund_id'], 'additionalProperties': False}, 'strict': True}