{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PostPassthroughToolApiRequestBody",
"title": "PostPassthroughToolApiRequestBody",
"type": "object",
"properties": {
"method": {
"type": "string",
"enum": [
"GET",
"POST",
"DELETE",
"PUT",
"PATCH"
],
"description": "The HTTP method (e.g., `GET`) of the request."
},
"path": {
"type": "string",
"description": "The path of the endpoint you want to call. We automatically prepend the base URL of the API (all base URLs are documented in the endpoint description)."
},
"headers": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "The headers to send with the request. Note that we automatically supply any authentication-related headers."
},
"params": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "The query parameters to send in addition to the ones in the `path`."
},
"data": {
"description": "The data to submit as part of the request body. This can either be an array or object (in which case we will forward it as JSON) or a string (in which case we will forward it raw)."
},
"response_as_base64": {
"type": "boolean",
"description": "If set to `true`, the response will be returned as a base64-encoded string. This is useful for binary data (e.g., PDFs)."
},
"multipart_form_data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The key of the form data"
},
"value": {
"oneOf": [
{
"type": "string",
"description": "The value of the form data (Can be an object if the field is of the type file)"
},
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "File name of the file you want to upload. We recommend providing something human-readable with a valid file extension (like `Resume.pdf`), as this might be shown in your customer's system."
},
"content_type": {
"type": "string",
"pattern": "^[\\w.-]+\\/[\\w.-]+$",
"description": "Content/MIME type of the file (e.g., `application/pdf`).\n\nIf you provide `data`, this is required. If you provide `data_url`, this is optional and we'll attempt to use the `Content-Type` header of the response.\n\n**Note:** Please validate that the content type you provide is actually meaningful (and not something generic like [`application/octet-stream`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/MIME_types#applicationoctet-stream)). Especially when using object storage (like AWS S3), it's easy to accidentally discard the content types of user-provided files, so make sure to explicitly persist them when processing uploads from your users (see guides for [AWS](https://docs.aws.amazon.com/AmazonS3/latest/userguide/UsingMetadata.html#SysMetadata), [Google Cloud](https://cloud.google.com/storage/docs/metadata#content-type), and [Azure](https://learn.microsoft.com/en-us/rest/api/storageservices/put-blob#request-headers-all-blob-types))."
},
"data_url": {
"type": "string",
"format": "uri",
"description": "URL to the file you want to upload that can be accessed without authentication headers. We will download the content immediately when receiving the request, so the URL can be short-lived.\n\nIf you're using an object storage provider (like AWS S3), we strongly recommend providing a signed URL for secure access (see guides for [AWS](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ShareObjectPreSignedURL.html), [Google Cloud](https://cloud.google.com/storage/docs/access-control/signed-urls), and [Azure](https://learn.microsoft.com/en-us/azure/storage/common/storage-sas-overview)).\n\n**Note:** You must provide either this or `data_url`. We recommend `data_url` over `data` for most cases."
},
"data": {
"type": "string",
"description": "Base64-encoded contents of the file you want to upload.\n\n**Note:** You must provide either this or `data_url`. We recommend `data_url` over `data` for most cases."
}
},
"required": [
"name"
]
}
]
}
},
"required": [
"name",
"value"
],
"description": "The data to submit as part of the request body if the request's `Content-Type` is `multipart/form-data`."
}
},
"api_options": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Custom options interpreted by the passthrough API adapter you've selected. These options are not documented right now as they're only for very advanced use cases."
}
},
"required": [
"method",
"path"
]
}