Packs
Update Pack
Update an existing Pack for non-versioned fields.
patch/packs/{packId}
Path parameters
packIdinteger required
ID of a Pack
Request body
Example request
{
"overallRateLimit": {
"intervalSeconds": 3600,
"operationsPerInterval": 20
},
"perConnectionRateLimit": {
"intervalSeconds": 3600,
"operationsPerInterval": 20
},
"logo": {
"mimeType": "image/jpeg"
},
"cover": {
"mimeType": "image/jpeg"
},
"exampleImages": [
{
"mimeType": "image/jpeg"
}
],
"agentImages": [
{
"mimeType": "image/jpeg"
}
],
"name": "Cool Geometry Formulas",
"description": "This Pack allows users to calculate the surface area and volume of a few common 3D shapes, like cubes and pyramids.",
"shortDescription": "Calculate cool geometric formulas like surface area.",
"agentShortDescription": "Chat with a tool that can calculate cool geometric formulas like surface area.",
"agentDescription": "Chat with a comprehensive tool that can calculate cool geometric formulas like surface area, volume, and other mathematical operations. This agent can help with complex calculations and provide detailed explanations.",
"supportEmail": "user@email.com"
}Response
Info about the Pack that was just updated.
Example response
{
"id": 1003,
"exampleImages": [
{
"mimeType": "image/jpeg"
}
],
"agentImages": [
{
"mimeType": "image/jpeg"
}
],
"workspaceId": "ws-asdf",
"categories": [
{
"categoryId": "aBCdEFg",
"categoryName": "Project management",
"categorySlug": "project-management"
}
],
"verifiedVersion": "1.0.0",
"name": "Cool Geometry Formulas",
"description": "This Pack allows users to calculate the surface area and volume of a few common 3D shapes, like cubes and pyramids.",
"shortDescription": "Calculate cool geometric formulas like surface area.",
"agentShortDescription": "Chat with a tool that can calculate cool geometric formulas like surface area.",
"agentDescription": "Chat with a comprehensive tool that can calculate cool geometric formulas like surface area, volume, and other mathematical operations. This agent can help with complex calculations and provide detailed explanations.",
"supportEmail": "user@email.com",
"overallRateLimit": {
"intervalSeconds": 3600,
"operationsPerInterval": 20
},
"perConnectionRateLimit": {
"intervalSeconds": 3600,
"operationsPerInterval": 20
}
}