{
  "item": [
    {
      "name": "🔐 OAuth Flow (Run in Order)",
      "description": "Complete OAuth 2.0 Authorization Code flow. Run these requests in order:\n\n1. **1. Initiate Auth** - Sends OTP to user's email\n2. **⏸️ PAUSE** - Check email for OTP code, set `otp_code` variable\n3. **2. Verify OTP** - Validates OTP and creates session\n4. **2b. Check Consent** (optional) - Check if user already consented\n5. **3. Grant Consent** - User consents to scopes, gets authorization code\n6. **4. Exchange Token** - Exchange auth code for access/refresh tokens\n7. **5. Test API Call** - Verify the token works\n8. **6. Refresh Token** (optional) - Get new tokens using refresh token\n9. **7. Introspect ID Token** (optional) - Examine token claims\n\n**Prerequisites:**\n- Set `partner_client_id` and `partner_client_secret`\n- Set `oauth_email` to a valid user email\n- Set `redirect_uri` to match your partner app config\n- Set `oauth_scopes` to the scopes you need",
      "item": [
        {
          "name": "1. Initiate Auth (sends OTP)",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"{{oauth_email}}\",\n  \"client_id\": \"{{partner_client_id}}\"\n}"
            },
            "url": {
              "raw": "{{target_host}}/auth/initiate",
              "host": [
                "{{target_host}}"
              ],
              "path": [
                "auth",
                "initiate"
              ]
            },
            "description": "Initiates passwordless auth flow. Sends OTP to user's email.\n\n**After this request:**\n1. Check the user's email for the OTP code\n2. Set the `otp_code` collection variable\n3. Run the next request within 10 minutes"
          },
          "event": [
            {
              "listen": "prerequest",
              "script": {
                "exec": [
                  "// Generate state for CSRF protection if not set",
                  "let state = pm.variables.get('oauth_state');",
                  "if (!state) {",
                  "    state = 'state_' + Math.random().toString(36).substring(2, 15);",
                  "    pm.collectionVariables.set('oauth_state', state);",
                  "    console.log('🎲 Generated OAuth state:', state);",
                  "}"
                ],
                "type": "text/javascript"
              }
            },
            {
              "listen": "test",
              "script": {
                "exec": [
                  "pm.test('Auth initiation successful', function() {",
                  "    pm.response.to.have.status(200);",
                  "});",
                  "",
                  "if (pm.response.code === 200) {",
                  "    const response = pm.response.json();",
                  "    if (response.session) {",
                  "        pm.collectionVariables.set('oauth_session', response.session);",
                  "        console.log('📧 OTP sent to email. Session captured.');",
                  "        console.log('⚠️ ACTION REQUIRED: Check email for OTP, then set otp_code variable');",
                  "    }",
                  "}"
                ],
                "type": "text/javascript"
              }
            }
          ]
        },
        {
          "name": "2. Verify OTP (validates code)",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"{{oauth_email}}\",\n  \"client_id\": \"{{partner_client_id}}\",\n  \"code\": \"{{otp_code}}\",\n  \"session\": \"{{oauth_session}}\"\n}"
            },
            "url": {
              "raw": "{{target_host}}/auth/verify",
              "host": [
                "{{target_host}}"
              ],
              "path": [
                "auth",
                "verify"
              ]
            },
            "description": "Verifies the OTP code from email.\n\n**Before running:**\n- Set `otp_code` to the 6-digit code from email\n\n**This request:**\n- Validates the OTP\n- Stores auth tokens in server-side temp storage\n- These tokens are used in the next step"
          },
          "event": [
            {
              "listen": "test",
              "script": {
                "exec": [
                  "pm.test('OTP verification successful', function() {",
                  "    pm.response.to.have.status(200);",
                  "});",
                  "",
                  "if (pm.response.code === 200) {",
                  "    const response = pm.response.json();",
                  "    if (response.success) {",
                  "        console.log('✅ OTP verified! User authenticated.');",
                  "        console.log('➡️ Now run \"3. Grant Consent\" to get authorization code');",
                  "    }",
                  "}"
                ],
                "type": "text/javascript"
              }
            }
          ]
        },
        {
          "name": "2b. Check Consent (optional)",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"client_id\": \"{{partner_client_id}}\",\n  \"email\": \"{{oauth_email}}\",\n  \"scopes\": [\n    \"openid\",\n    \"profile\",\n    \"email\"\n  ],\n  \"response_type\": \"code\",\n  \"redirect_uri\": \"{{redirect_uri}}\",\n  \"state\": \"{{oauth_state}}\"\n}"
            },
            "url": {
              "raw": "{{target_host}}/oauth2/check-consent",
              "host": [
                "{{target_host}}"
              ],
              "path": [
                "oauth2",
                "check-consent"
              ]
            },
            "description": "**Optional step** - Check if user has already consented to the requested scopes.\n\nThis is used by the hosted login page to skip the consent screen for returning users.\n\n**Returns:**\n- `has_consent` - true if user already consented to all requested scopes\n- `requires_consent` - true if consent page should be shown\n- `session_valid` - true if user has a valid auth session\n\n**Note:** Even if `has_consent` is true, you still need to run \"3. Grant Consent\" to get the authorization code."
          },
          "event": [
            {
              "listen": "test",
              "script": {
                "exec": [
                  "pm.test('Check consent successful', function() {",
                  "    pm.response.to.have.status(200);",
                  "});",
                  "",
                  "if (pm.response.code === 200) {",
                  "    const response = pm.response.json();",
                  "    console.log('📋 Consent check results:');",
                  "    console.log('   has_consent:', response.has_consent);",
                  "    console.log('   requires_consent:', response.requires_consent);",
                  "    console.log('   session_valid:', response.session_valid);",
                  "    ",
                  "    if (response.has_consent) {",
                  "        console.log('✅ User has existing consent - consent page can be skipped');",
                  "    } else {",
                  "        console.log('📝 User needs to grant consent');",
                  "    }",
                  "    console.log('➡️ Run \"3. Grant Consent\" to get authorization code');",
                  "}"
                ],
                "type": "text/javascript"
              }
            }
          ]
        },
        {
          "name": "3. Grant Consent (get auth code)",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"client_id\": \"{{partner_client_id}}\",\n  \"redirect_uri\": \"{{redirect_uri}}\",\n  \"response_type\": \"code\",\n  \"scope\": \"{{oauth_scopes}}\",\n  \"state\": \"{{oauth_state}}\",\n  \"email\": \"{{oauth_email}}\",\n  \"consent\": true\n}"
            },
            "url": {
              "raw": "{{target_host}}/oauth2/authorize",
              "host": [
                "{{target_host}}"
              ],
              "path": [
                "oauth2",
                "authorize"
              ]
            },
            "description": "Grants consent for the requested scopes and generates an authorization code.\n\n**This is the consent step** - in a browser flow, this happens when the user clicks 'Allow'.\n\n**Returns:**\n- `code` - Authorization code to exchange for tokens\n- `redirect_url` - Where the browser would redirect"
          },
          "event": [
            {
              "listen": "test",
              "script": {
                "exec": [
                  "pm.test('Consent granted successfully', function() {",
                  "    pm.response.to.have.status(200);",
                  "});",
                  "",
                  "if (pm.response.code === 200) {",
                  "    const response = pm.response.json();",
                  "    if (response.code) {",
                  "        pm.collectionVariables.set('authorization_code', response.code);",
                  "        console.log('🎫 Authorization code captured:', response.code.substring(0, 20) + '...');",
                  "        console.log('➡️ Now run \"4. Exchange Token\" to get access token');",
                  "    }",
                  "    if (response.redirect_url) {",
                  "        console.log('🔗 Redirect URL:', response.redirect_url);",
                  "    }",
                  "}"
                ],
                "type": "text/javascript"
              }
            }
          ]
        },
        {
          "name": "4. Exchange Token (get access token)",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/x-www-form-urlencoded"
              }
            ],
            "body": {
              "mode": "urlencoded",
              "urlencoded": [
                {
                  "key": "grant_type",
                  "value": "authorization_code"
                },
                {
                  "key": "code",
                  "value": "{{authorization_code}}"
                },
                {
                  "key": "redirect_uri",
                  "value": "{{redirect_uri}}"
                },
                {
                  "key": "client_id",
                  "value": "{{partner_client_id}}"
                },
                {
                  "key": "client_secret",
                  "value": "{{partner_client_secret}}"
                }
              ]
            },
            "url": {
              "raw": "{{target_host}}/oauth2/token",
              "host": [
                "{{target_host}}"
              ],
              "path": [
                "oauth2",
                "token"
              ]
            },
            "description": "Exchange the authorization code for access and refresh tokens.\n\n**This is a server-to-server call** - in production, your backend makes this call.\n\n**Returns:**\n- `access_token` - Use this for Partner User API calls\n- `refresh_token` - Use to get new access tokens\n- `expires_in` - Token lifetime in seconds"
          },
          "event": [
            {
              "listen": "prerequest",
              "script": {
                "exec": [
                  "// Add Basic auth header",
                  "const clientId = pm.variables.get('partner_client_id');",
                  "const clientSecret = pm.variables.get('partner_client_secret');",
                  "if (clientId && clientSecret) {",
                  "    const credentials = clientId + ':' + clientSecret;",
                  "    const encoded = Buffer.from(credentials, 'utf8').toString('base64');",
                  "    pm.request.headers.upsert({",
                  "        key: 'Authorization',",
                  "        value: 'Basic ' + encoded",
                  "    });",
                  "}"
                ],
                "type": "text/javascript"
              }
            },
            {
              "listen": "test",
              "script": {
                "exec": [
                  "pm.test('Token exchange successful', function() {",
                  "    pm.response.to.have.status(200);",
                  "});",
                  "",
                  "if (pm.response.code === 200) {",
                  "    const response = pm.response.json();",
                  "    if (response.access_token) {",
                  "        pm.collectionVariables.set('oauth_token', response.access_token);",
                  "        console.log('🔑 Access token captured and stored in oauth_token');",
                  "    }",
                  "    if (response.refresh_token) {",
                  "        pm.collectionVariables.set('refresh_token', response.refresh_token);",
                  "        console.log('🔄 Refresh token captured');",
                  "    }",
                  "    if (response.id_token) {",
                  "        pm.collectionVariables.set('id_token', response.id_token);",
                  "        console.log('🔄 ID token captured');",
                  "    }",
                  "    if (response.expires_in) {",
                  "        console.log('⏱️ Token expires in', response.expires_in, 'seconds');",
                  "    }",
                  "    console.log('✅ OAuth flow complete! You can now use Partner User API endpoints.');",
                  "}"
                ],
                "type": "text/javascript"
              }
            }
          ]
        },
        {
          "name": "5. Test API Call (verify token works)",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{target_host}}/v1/partner/user/meetings?limit=5",
              "host": [
                "{{target_host}}"
              ],
              "path": [
                "v1",
                "partner",
                "user",
                "meetings"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "5"
                }
              ]
            },
            "description": "Test the access token by fetching user meetings.\n\n**This uses the `oauth_token` variable** which was automatically set in the previous step.\n\nIf this succeeds, the OAuth flow is complete and working!"
          },
          "event": [
            {
              "listen": "prerequest",
              "script": {
                "exec": [
                  "// Debug: Log token and URL info",
                  "const token = pm.variables.get('oauth_token');",
                  "const clientId = pm.variables.get('partner_client_id');",
                  "const targetHost = pm.variables.get('target_host');",
                  "",
                  "console.log('🔍 Debug info:');",
                  "console.log('   target_host:', targetHost);",
                  "console.log('   oauth_token:', token ? token.substring(0, 30) + '...' : 'NOT SET');",
                  "console.log('   partner_client_id:', clientId || 'NOT SET');",
                  "console.log('   Full URL:', pm.request.url.toString());",
                  "",
                  "// Use upsert to replace any existing header (prevents duplicate headers)",
                  "if (token) {",
                  "    pm.request.headers.upsert({",
                  "        key: 'Authorization',",
                  "        value: 'Bearer ' + token",
                  "    });",
                  "    console.log('✅ Set Authorization: Bearer header');",
                  "} else {",
                  "    console.log('❌ No oauth_token set - request will fail with 401');",
                  "}",
                  "",
                  "// Add X-Client-ID (required by some endpoints)",
                  "if (clientId) {",
                  "    pm.request.headers.upsert({",
                  "        key: 'X-Client-ID',",
                  "        value: clientId",
                  "    });",
                  "    console.log('✅ Set X-Client-ID header');",
                  "}"
                ],
                "type": "text/javascript"
              }
            },
            {
              "listen": "test",
              "script": {
                "exec": [
                  "pm.test('Partner API call successful', function() {",
                  "    pm.response.to.have.status(200);",
                  "});",
                  "",
                  "if (pm.response.code === 200) {",
                  "    const response = pm.response.json();",
                  "    console.log('🎉 Success! OAuth token is working.');",
                  "    if (response.meetings) {",
                  "        console.log('📅 Found', response.meetings.length, 'meetings');",
                  "    }",
                  "} else if (pm.response.code === 401) {",
                  "    console.log('❌ Token is invalid or expired. Re-run the OAuth flow.');",
                  "} else if (pm.response.code === 403) {",
                  "    console.log('❌ Missing required scopes. Check oauth_scopes variable.');",
                  "}"
                ],
                "type": "text/javascript"
              }
            }
          ]
        },
        {
          "name": "6. Refresh Token (optional)",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/x-www-form-urlencoded"
              }
            ],
            "body": {
              "mode": "urlencoded",
              "urlencoded": [
                {
                  "key": "grant_type",
                  "value": "refresh_token"
                },
                {
                  "key": "refresh_token",
                  "value": "{{refresh_token}}"
                },
                {
                  "key": "client_id",
                  "value": "{{partner_client_id}}"
                },
                {
                  "key": "client_secret",
                  "value": "{{partner_client_secret}}"
                }
              ]
            },
            "url": {
              "raw": "{{target_host}}/oauth2/token",
              "host": [
                "{{target_host}}"
              ],
              "path": [
                "oauth2",
                "token"
              ]
            },
            "description": "Use the refresh token to get a new access token.\n\n**Use this when:**\n- The access token has expired\n- You want to get a fresh token without re-authenticating\n\n**Note:** Refresh tokens also expire eventually (typically 30 days)."
          },
          "event": [
            {
              "listen": "prerequest",
              "script": {
                "exec": [
                  "// Add Basic auth header",
                  "const clientId = pm.variables.get('partner_client_id');",
                  "const clientSecret = pm.variables.get('partner_client_secret');",
                  "if (clientId && clientSecret) {",
                  "    const credentials = clientId + ':' + clientSecret;",
                  "    const encoded = Buffer.from(credentials, 'utf8').toString('base64');",
                  "    pm.request.headers.upsert({",
                  "        key: 'Authorization',",
                  "        value: 'Basic ' + encoded",
                  "    });",
                  "}"
                ],
                "type": "text/javascript"
              }
            },
            {
              "listen": "test",
              "script": {
                "exec": [
                  "pm.test('Token refresh successful', function() {",
                  "    pm.response.to.have.status(200);",
                  "});",
                  "",
                  "if (pm.response.code === 200) {",
                  "    const response = pm.response.json();",
                  "    if (response.access_token) {",
                  "        pm.collectionVariables.set('oauth_token', response.access_token);",
                  "        console.log('🔑 New access token captured');",
                  "    }",
                  "    if (response.refresh_token) {",
                  "        pm.collectionVariables.set('refresh_token', response.refresh_token);",
                  "        console.log('🔄 New refresh token captured');",
                  "    }",
                  "    console.log('✅ Token refreshed successfully!');",
                  "}"
                ],
                "type": "text/javascript"
              }
            }
          ]
        },
        {
          "name": "7. Introspect ID Token (optional)",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/x-www-form-urlencoded"
              }
            ],
            "body": {
              "mode": "urlencoded",
              "urlencoded": [
                {
                  "key": "token",
                  "value": "{{id_token}}"
                }
              ]
            },
            "url": {
              "raw": "{{target_host}}/oauth2/introspect",
              "host": [
                "{{target_host}}"
              ],
              "path": [
                "oauth2",
                "introspect"
              ]
            },
            "description": "Introspect the ID token to see its claims.\n\n**Returns user identity information:**\n- `sub` - Subject (user ID)\n- `email` - User's email\n- `aud` - Audience (client ID)\n- `exp` / `iat` - Expiration and issued-at timestamps\n\n**Note:** You can also introspect access tokens. Refresh tokens will return `active: false` as they are encrypted JWE tokens."
          },
          "event": [
            {
              "listen": "prerequest",
              "script": {
                "exec": [
                  "// Add Basic auth header for client authentication",
                  "const clientId = pm.variables.get('partner_client_id');",
                  "const clientSecret = pm.variables.get('partner_client_secret');",
                  "if (clientId && clientSecret) {",
                  "    const credentials = clientId + ':' + clientSecret;",
                  "    const encoded = Buffer.from(credentials, 'utf8').toString('base64');",
                  "    pm.request.headers.upsert({",
                  "        key: 'Authorization',",
                  "        value: 'Basic ' + encoded",
                  "    });",
                  "}"
                ],
                "type": "text/javascript"
              }
            },
            {
              "listen": "test",
              "script": {
                "exec": [
                  "pm.test('Token introspection successful', function() {",
                  "    pm.response.to.have.status(200);",
                  "});",
                  "",
                  "if (pm.response.code === 200) {",
                  "    const response = pm.response.json();",
                  "    if (response.active) {",
                  "        console.log('✅ Token is active');",
                  "        if (response.sub) console.log('👤 Subject:', response.sub);",
                  "        if (response.email) console.log('📧 Email:', response.email);",
                  "        if (response.exp) {",
                  "            const expDate = new Date(response.exp * 1000);",
                  "            console.log('⏱️ Expires:', expDate.toISOString());",
                  "        }",
                  "    } else {",
                  "        console.log('❌ Token is not active (expired or invalid)');",
                  "    }",
                  "}"
                ],
                "type": "text/javascript"
              }
            }
          ]
        }
      ]
    },
    {
      "name": ".well-known",
      "description": "",
      "item": [
        {
          "name": "jwks.json",
          "description": "",
          "item": [
            {
              "id": "d3764a49-32ac-4af5-9291-64abb20df374",
              "name": "JSON Web Key Set Endpoint",
              "request": {
                "name": "JSON Web Key Set Endpoint",
                "description": {
                  "content": "Returns the JSON Web Key Set for token verification",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    ".well-known",
                    "jwks.json"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": null
              },
              "response": [
                {
                  "id": "27ac023f-b3ea-44db-82e8-d69b722ee621",
                  "name": "OK",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ".well-known",
                        "jwks.json"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"keys\": [\n    {\n      \"alg\": \"<string>\",\n      \"crv\": \"<string>\",\n      \"d\": \"<string>\",\n      \"e\": \"<string>\",\n      \"kid\": \"<string>\",\n      \"kty\": \"<string>\",\n      \"n\": \"<string>\",\n      \"use\": \"<string>\",\n      \"x\": \"<string>\",\n      \"y\": \"<string>\"\n    },\n    {\n      \"alg\": \"<string>\",\n      \"crv\": \"<string>\",\n      \"d\": \"<string>\",\n      \"e\": \"<string>\",\n      \"kid\": \"<string>\",\n      \"kty\": \"<string>\",\n      \"n\": \"<string>\",\n      \"use\": \"<string>\",\n      \"x\": \"<string>\",\n      \"y\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "117e8cbd-a121-4658-bafa-b29687d1c3bd",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ".well-known",
                        "jwks.json"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        },
        {
          "name": "openid_configuration",
          "description": "",
          "item": [
            {
              "id": "d7fa0888-bec7-4ec7-9d1f-2d9cf3b7f08b",
              "name": "OpenID Connect Discovery Endpoint",
              "request": {
                "name": "OpenID Connect Discovery Endpoint",
                "description": {
                  "content": "Returns the OpenID Connect discovery document",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    ".well-known",
                    "openid_configuration"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": null
              },
              "response": [
                {
                  "id": "63517ebd-cae9-486b-8842-313547ab4982",
                  "name": "OK",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ".well-known",
                        "openid_configuration"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"authorization_endpoint\": \"<string>\",\n  \"claims_supported\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"id_token_signing_alg_values_supported\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"introspection_endpoint\": \"<string>\",\n  \"issuer\": \"<string>\",\n  \"jwks_uri\": \"<string>\",\n  \"response_types_supported\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"revocation_endpoint\": \"<string>\",\n  \"scopes_supported\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"subject_types_supported\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"token_endpoint\": \"<string>\",\n  \"token_endpoint_auth_methods_supported\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"userinfo_endpoint\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "8b76e598-8cc6-4491-ac54-2365ebf333b6",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ".well-known",
                        "openid_configuration"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        }
      ]
    },
    {
      "name": "auth",
      "description": "",
      "item": [
        {
          "name": "initiate",
          "description": "",
          "item": [
            {
              "id": "b679f838-5dec-4a72-90c1-f1d5b5ca3393",
              "name": "Initiate Partner Passwordless Authentication",
              "request": {
                "name": "Initiate Partner Passwordless Authentication",
                "description": {
                  "content": "Initiates passwordless authentication for partner OAuth flow with client-specific SECRET_HASH. Supports optional workspace_id to provision users into a shared workspace instead of creating a personal one, and is_admin to grant admin role in that workspace.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "auth",
                    "initiate"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"client_id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"is_admin\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": null
              },
              "response": [
                {
                  "id": "fbe00d4f-0194-483f-a760-a64b344f9c32",
                  "name": "OK",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "auth",
                        "initiate"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"is_admin\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"challenge_name\": \"<string>\",\n  \"challenge_params\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\"\n  },\n  \"session\": \"<string>\",\n  \"user_provisioned\": \"<boolean>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "bac5ddfe-6e28-4844-93a9-35bf1269c9d4",
                  "name": "Invalid request format or workspace_id is not a valid UUID",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "auth",
                        "initiate"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"is_admin\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "477edc29-fd1b-4af0-813b-4adf55443c1f",
                  "name": "Workspace does not belong to this partner (workspace_not_authorized)",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "auth",
                        "initiate"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"is_admin\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"forbidden\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "8924b494-4d80-4fa9-a47a-8bae3c9c6f00",
                  "name": "Specified workspace_id does not exist (workspace_not_found)",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "auth",
                        "initiate"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"is_admin\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "b25b2ef5-2e8c-4d1b-b403-40d1b7592bf7",
                  "name": "User already belongs to a different workspace (workspace_conflict). Includes workspace_id field.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "auth",
                        "initiate"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"is_admin\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Conflict",
                  "code": 409,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"conflict\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "09720931-e3b2-4ef7-8b38-660f70ce223f",
                  "name": "Internal server error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "auth",
                        "initiate"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"is_admin\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        },
        {
          "name": "verify",
          "description": "",
          "item": [
            {
              "id": "1c9f1646-8992-4a7e-a2b6-8699b176c9ab",
              "name": "Verify Partner Passwordless Authentication",
              "request": {
                "name": "Verify Partner Passwordless Authentication",
                "description": {
                  "content": "Verifies OTP code for partner OAuth flow with client-specific SECRET_HASH",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "auth",
                    "verify"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"client_id\": \"<string>\",\n  \"code\": \"<string>\",\n  \"email\": \"<string>\",\n  \"session\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": null
              },
              "response": [
                {
                  "id": "f943570e-06ca-4f5f-8939-e38f50e7be21",
                  "name": "OK",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "auth",
                        "verify"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"code\": \"<string>\",\n  \"email\": \"<string>\",\n  \"session\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"access_token\": \"<string>\",\n  \"expires_in\": \"<integer>\",\n  \"id_token\": \"<string>\",\n  \"message\": \"<string>\",\n  \"redirect\": \"<string>\",\n  \"refresh_token\": \"<string>\",\n  \"success\": \"<boolean>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "85f675b0-f58f-4ee6-83e6-90ac1abf08f7",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "auth",
                        "verify"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"code\": \"<string>\",\n  \"email\": \"<string>\",\n  \"session\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "44f4ca06-f5ca-4931-9f1a-b400b5b1fe30",
                  "name": "Unauthorized",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "auth",
                        "verify"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"code\": \"<string>\",\n  \"email\": \"<string>\",\n  \"session\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "1d91adb8-b15a-4578-b06b-4c7a2754ee2d",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "auth",
                        "verify"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"code\": \"<string>\",\n  \"email\": \"<string>\",\n  \"session\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        }
      ]
    },
    {
      "name": "oauth2",
      "description": "",
      "item": [
        {
          "name": "authorize",
          "description": "",
          "item": [
            {
              "id": "6f5fa805-0104-4a00-abee-0319e6e504b8",
              "name": "OAuth 2.0 Authorization Endpoint",
              "request": {
                "name": "OAuth 2.0 Authorization Endpoint",
                "description": {
                  "content": "Handles OAuth 2.0 authorization requests for partner applications",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "oauth2",
                    "authorize"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "(Required) OAuth response type (code)",
                        "type": "text/plain"
                      },
                      "key": "response_type",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "(Required) OAuth client ID",
                        "type": "text/plain"
                      },
                      "key": "client_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "(Required) OAuth redirect URI",
                        "type": "text/plain"
                      },
                      "key": "redirect_uri",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "OAuth scopes",
                        "type": "text/plain"
                      },
                      "key": "scope",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "OAuth state parameter",
                        "type": "text/plain"
                      },
                      "key": "state",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "PKCE code challenge",
                        "type": "text/plain"
                      },
                      "key": "code_challenge",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "PKCE code challenge method",
                        "type": "text/plain"
                      },
                      "key": "code_challenge_method",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "key": "Accept",
                    "value": "*/*"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": null
              },
              "response": [
                {
                  "id": "c4ee2dd6-662f-4c00-b6af-5a03d988e43e",
                  "name": "Redirect to authorization URL",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "authorize"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth response type (code)",
                            "type": "text/plain"
                          },
                          "key": "response_type",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth client ID",
                            "type": "text/plain"
                          },
                          "key": "client_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth redirect URI",
                            "type": "text/plain"
                          },
                          "key": "redirect_uri",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "OAuth scopes",
                            "type": "text/plain"
                          },
                          "key": "scope",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "OAuth state parameter",
                            "type": "text/plain"
                          },
                          "key": "state",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "PKCE code challenge",
                            "type": "text/plain"
                          },
                          "key": "code_challenge",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "PKCE code challenge method",
                            "type": "text/plain"
                          },
                          "key": "code_challenge_method",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Found",
                  "code": 302,
                  "header": [],
                  "cookie": [],
                  "_postman_previewlanguage": "text"
                },
                {
                  "id": "ad7945f4-75a6-4837-89a0-f668db80a47e",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "authorize"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth response type (code)",
                            "type": "text/plain"
                          },
                          "key": "response_type",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth client ID",
                            "type": "text/plain"
                          },
                          "key": "client_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth redirect URI",
                            "type": "text/plain"
                          },
                          "key": "redirect_uri",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "OAuth scopes",
                            "type": "text/plain"
                          },
                          "key": "scope",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "OAuth state parameter",
                            "type": "text/plain"
                          },
                          "key": "state",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "PKCE code challenge",
                            "type": "text/plain"
                          },
                          "key": "code_challenge",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "PKCE code challenge method",
                            "type": "text/plain"
                          },
                          "key": "code_challenge_method",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "*/*"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "*/*"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "text"
                },
                {
                  "id": "87b416ca-7ebd-45e8-ba96-0937c657d0e6",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "authorize"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth response type (code)",
                            "type": "text/plain"
                          },
                          "key": "response_type",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth client ID",
                            "type": "text/plain"
                          },
                          "key": "client_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth redirect URI",
                            "type": "text/plain"
                          },
                          "key": "redirect_uri",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "OAuth scopes",
                            "type": "text/plain"
                          },
                          "key": "scope",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "OAuth state parameter",
                            "type": "text/plain"
                          },
                          "key": "state",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "PKCE code challenge",
                            "type": "text/plain"
                          },
                          "key": "code_challenge",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "PKCE code challenge method",
                            "type": "text/plain"
                          },
                          "key": "code_challenge_method",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "*/*"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "*/*"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "text"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "e929f75c-f31a-4931-9e6c-3fa47d6032a0",
              "name": "Complete OAuth 2.0 Authorization",
              "request": {
                "name": "Complete OAuth 2.0 Authorization",
                "description": {
                  "content": "Completes OAuth 2.0 authorization after user consent and returns Cognito authorization code",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "oauth2",
                    "authorize"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"client_id\": \"<string>\",\n  \"consent\": \"<boolean>\",\n  \"email\": \"<string>\",\n  \"redirect_uri\": \"<string>\",\n  \"response_type\": \"<string>\",\n  \"code_challenge\": \"<string>\",\n  \"code_challenge_method\": \"<string>\",\n  \"scope\": \"<string>\",\n  \"state\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": null
              },
              "response": [
                {
                  "id": "19a4e5ed-4d39-4b22-a100-579d4c709e00",
                  "name": "Authorization completed successfully",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "authorize"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"consent\": \"<boolean>\",\n  \"email\": \"<string>\",\n  \"redirect_uri\": \"<string>\",\n  \"response_type\": \"<string>\",\n  \"code_challenge\": \"<string>\",\n  \"code_challenge_method\": \"<string>\",\n  \"scope\": \"<string>\",\n  \"state\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"<string>\",\n  \"redirect_url\": \"<string>\",\n  \"state\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "4e8676d1-09bf-4432-91a8-56b98be58572",
                  "name": "Bad request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "authorize"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"consent\": \"<boolean>\",\n  \"email\": \"<string>\",\n  \"redirect_uri\": \"<string>\",\n  \"response_type\": \"<string>\",\n  \"code_challenge\": \"<string>\",\n  \"code_challenge_method\": \"<string>\",\n  \"scope\": \"<string>\",\n  \"state\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"key_0\": \"string\",\n  \"key_1\": false\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "4e19e40f-6fc4-4e1d-beac-7031b2db07ea",
                  "name": "Internal server error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "authorize"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"consent\": \"<boolean>\",\n  \"email\": \"<string>\",\n  \"redirect_uri\": \"<string>\",\n  \"response_type\": \"<string>\",\n  \"code_challenge\": \"<string>\",\n  \"code_challenge_method\": \"<string>\",\n  \"scope\": \"<string>\",\n  \"state\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"key_0\": \"string\",\n  \"key_1\": false\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        },
        {
          "name": "check-consent",
          "description": "",
          "item": [
            {
              "id": "f7ef0b49-5c5a-4700-a67b-3da2d9a5abab",
              "name": "Check Existing Consent",
              "request": {
                "name": "Check Existing Consent",
                "description": {
                  "content": "Checks if user has already consented to the requested scopes and can skip consent page",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "oauth2",
                    "check-consent"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"client_id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"code_challenge\": \"<string>\",\n  \"code_challenge_method\": \"<string>\",\n  \"redirect_uri\": \"<string>\",\n  \"response_type\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"state\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": null
              },
              "response": [
                {
                  "id": "09d13b3d-0bc9-4b93-b6ea-03598cc10d48",
                  "name": "OK",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "check-consent"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"code_challenge\": \"<string>\",\n  \"code_challenge_method\": \"<string>\",\n  \"redirect_uri\": \"<string>\",\n  \"response_type\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"state\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"has_consent\": \"<boolean>\",\n  \"redirect_url\": \"<string>\",\n  \"requires_consent\": \"<boolean>\",\n  \"session_valid\": \"<boolean>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "2005bb41-93ff-4aeb-9d6d-a07db053f659",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "check-consent"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"code_challenge\": \"<string>\",\n  \"code_challenge_method\": \"<string>\",\n  \"redirect_uri\": \"<string>\",\n  \"response_type\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"state\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "8d9f376d-dae5-4e0d-9284-40af8a940d73",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "check-consent"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"client_id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"code_challenge\": \"<string>\",\n  \"code_challenge_method\": \"<string>\",\n  \"redirect_uri\": \"<string>\",\n  \"response_type\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"state\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        },
        {
          "name": "health",
          "description": "",
          "item": [
            {
              "id": "4ae14aea-8222-4e08-8e0f-2c8bfe8c1e5f",
              "name": "Health Check for OAuth/Cognito Service",
              "request": {
                "name": "Health Check for OAuth/Cognito Service",
                "description": {
                  "content": "Tests connectivity to Cognito and returns service status",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "oauth2",
                    "health"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "key": "Accept",
                    "value": "*/*"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": null
              },
              "response": [
                {
                  "id": "de01c403-cc55-4362-92a2-ee797007db66",
                  "name": "OK",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "health"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "*/*"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "*/*"
                    }
                  ],
                  "body": "{\n  \"checks\": {\n    \"key_0\": 5088\n  },\n  \"service\": \"<string>\",\n  \"status\": \"<string>\",\n  \"timestamp\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "text"
                },
                {
                  "id": "9567c62d-db31-4633-bef0-eb5507e66039",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "health"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "*/*"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "*/*"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "text"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        },
        {
          "name": "introspect",
          "description": "",
          "item": [
            {
              "id": "e6976e5e-9d3e-46d7-b9fa-72b4b6c44bf1",
              "name": "OAuth 2.0 Token Introspection Endpoint",
              "request": {
                "name": "OAuth 2.0 Token Introspection Endpoint",
                "description": {
                  "content": "Introspects access tokens to get token information",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "oauth2",
                    "introspect"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/x-www-form-urlencoded"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "(Required) Access token to introspect",
                        "type": "text/plain"
                      },
                      "key": "token",
                      "value": "<string>"
                    }
                  ]
                },
                "auth": null
              },
              "response": [
                {
                  "id": "c049597a-6cce-41be-be17-883bdfdbfbb3",
                  "name": "OK",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "introspect"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) Access token to introspect",
                            "type": "text/plain"
                          },
                          "key": "token",
                          "value": "<string>"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"active\": \"<boolean>\",\n  \"aud\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"client_id\": \"<string>\",\n  \"exp\": \"<integer>\",\n  \"ext\": {\n    \"key_0\": {},\n    \"key_1\": {},\n    \"key_2\": {}\n  },\n  \"iat\": \"<integer>\",\n  \"iss\": \"<string>\",\n  \"nbf\": \"<integer>\",\n  \"scope\": \"<string>\",\n  \"sub\": \"<string>\",\n  \"token_type\": \"<string>\",\n  \"username\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "b34bef1d-c9bd-4aab-8231-dc8c6e24fff3",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "introspect"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) Access token to introspect",
                            "type": "text/plain"
                          },
                          "key": "token",
                          "value": "<string>"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "a8241f0d-e798-4fed-920b-a9ed61845556",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "introspect"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) Access token to introspect",
                            "type": "text/plain"
                          },
                          "key": "token",
                          "value": "<string>"
                        }
                      ]
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        },
        {
          "name": "revoke",
          "description": "",
          "item": [
            {
              "id": "9c44e9f4-c093-4c81-b704-3fad22a16d58",
              "name": "OAuth 2.0 Token Revocation Endpoint",
              "request": {
                "name": "OAuth 2.0 Token Revocation Endpoint",
                "description": {
                  "content": "Revokes an access or refresh token. Per RFC 7009, returns success even for invalid tokens.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "oauth2",
                    "revoke"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/x-www-form-urlencoded"
                  },
                  {
                    "key": "Accept",
                    "value": "*/*"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "(Required) Token to revoke",
                        "type": "text/plain"
                      },
                      "key": "token",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Hint about token type (access_token or refresh_token)",
                        "type": "text/plain"
                      },
                      "key": "token_type_hint",
                      "value": "<string>"
                    }
                  ]
                },
                "auth": null
              },
              "response": [
                {
                  "id": "e7848b78-9499-4268-8587-fb498d6a2993",
                  "name": "Token revoked successfully",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "revoke"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) Token to revoke",
                            "type": "text/plain"
                          },
                          "key": "token",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Hint about token type (access_token or refresh_token)",
                            "type": "text/plain"
                          },
                          "key": "token_type_hint",
                          "value": "<string>"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [],
                  "cookie": [],
                  "_postman_previewlanguage": "text"
                },
                {
                  "id": "5def67e2-1bf8-49da-afca-8d829930d7a1",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "revoke"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded"
                      },
                      {
                        "key": "Accept",
                        "value": "*/*"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) Token to revoke",
                            "type": "text/plain"
                          },
                          "key": "token",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Hint about token type (access_token or refresh_token)",
                            "type": "text/plain"
                          },
                          "key": "token_type_hint",
                          "value": "<string>"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "*/*"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "text"
                },
                {
                  "id": "27325a02-c970-4e8d-a5b0-a45eab605e12",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "revoke"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded"
                      },
                      {
                        "key": "Accept",
                        "value": "*/*"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) Token to revoke",
                            "type": "text/plain"
                          },
                          "key": "token",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Hint about token type (access_token or refresh_token)",
                            "type": "text/plain"
                          },
                          "key": "token_type_hint",
                          "value": "<string>"
                        }
                      ]
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "*/*"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "text"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        },
        {
          "name": "scopes",
          "description": "",
          "item": [
            {
              "id": "d621cb9d-1b48-44da-ad05-7c6d803a1ef3",
              "name": "Get Available OAuth Scopes",
              "request": {
                "name": "Get Available OAuth Scopes",
                "description": {
                  "content": "Returns the list of all available OAuth scopes for partner applications",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "oauth2",
                    "scopes"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": null
              },
              "response": [
                {
                  "id": "755960ca-bd63-4607-aae6-d3f04c2103a7",
                  "name": "OK",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "scopes"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "e3d1ff3b-02a5-4e82-8018-035553ab4d33",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "scopes"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        },
        {
          "name": "token",
          "description": "",
          "item": [
            {
              "id": "f7b5bf18-1628-4602-8c6f-fb8586e57a60",
              "name": "OAuth 2.0 Token Endpoint",
              "request": {
                "name": "OAuth 2.0 Token Endpoint",
                "description": {
                  "content": "Exchanges authorization code for access tokens",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "oauth2",
                    "token"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/x-www-form-urlencoded"
                  },
                  {
                    "key": "Accept",
                    "value": "*/*"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "(Required) OAuth grant type (authorization_code)",
                        "type": "text/plain"
                      },
                      "key": "grant_type",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "(Required) Authorization code",
                        "type": "text/plain"
                      },
                      "key": "code",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "(Required) OAuth redirect URI",
                        "type": "text/plain"
                      },
                      "key": "redirect_uri",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "(Required) OAuth client ID",
                        "type": "text/plain"
                      },
                      "key": "client_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "OAuth client secret",
                        "type": "text/plain"
                      },
                      "key": "client_secret",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "PKCE code verifier",
                        "type": "text/plain"
                      },
                      "key": "code_verifier",
                      "value": "<string>"
                    }
                  ]
                },
                "auth": null
              },
              "response": [
                {
                  "id": "ff72f89e-8535-4e3d-a159-6bb710680eca",
                  "name": "OK",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "token"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded"
                      },
                      {
                        "key": "Accept",
                        "value": "*/*"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth grant type (authorization_code)",
                            "type": "text/plain"
                          },
                          "key": "grant_type",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) Authorization code",
                            "type": "text/plain"
                          },
                          "key": "code",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth redirect URI",
                            "type": "text/plain"
                          },
                          "key": "redirect_uri",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth client ID",
                            "type": "text/plain"
                          },
                          "key": "client_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "OAuth client secret",
                            "type": "text/plain"
                          },
                          "key": "client_secret",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "PKCE code verifier",
                            "type": "text/plain"
                          },
                          "key": "code_verifier",
                          "value": "<string>"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "*/*"
                    }
                  ],
                  "body": "{\n  \"access_token\": \"<string>\",\n  \"expires_in\": \"<integer>\",\n  \"id_token\": \"<string>\",\n  \"refresh_token\": \"<string>\",\n  \"scope\": \"<string>\",\n  \"token_type\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "text"
                },
                {
                  "id": "aa6db4dc-a664-4a0f-9429-200e2c7b5585",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "token"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded"
                      },
                      {
                        "key": "Accept",
                        "value": "*/*"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth grant type (authorization_code)",
                            "type": "text/plain"
                          },
                          "key": "grant_type",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) Authorization code",
                            "type": "text/plain"
                          },
                          "key": "code",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth redirect URI",
                            "type": "text/plain"
                          },
                          "key": "redirect_uri",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth client ID",
                            "type": "text/plain"
                          },
                          "key": "client_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "OAuth client secret",
                            "type": "text/plain"
                          },
                          "key": "client_secret",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "PKCE code verifier",
                            "type": "text/plain"
                          },
                          "key": "code_verifier",
                          "value": "<string>"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "*/*"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "text"
                },
                {
                  "id": "e07d5c26-ba06-439e-839a-fe4c7f01f21e",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "token"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded"
                      },
                      {
                        "key": "Accept",
                        "value": "*/*"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth grant type (authorization_code)",
                            "type": "text/plain"
                          },
                          "key": "grant_type",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) Authorization code",
                            "type": "text/plain"
                          },
                          "key": "code",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth redirect URI",
                            "type": "text/plain"
                          },
                          "key": "redirect_uri",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) OAuth client ID",
                            "type": "text/plain"
                          },
                          "key": "client_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "OAuth client secret",
                            "type": "text/plain"
                          },
                          "key": "client_secret",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "PKCE code verifier",
                            "type": "text/plain"
                          },
                          "key": "code_verifier",
                          "value": "<string>"
                        }
                      ]
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "*/*"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "text"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        },
        {
          "name": "userInfo",
          "description": "",
          "item": [
            {
              "id": "f17c82b5-89c8-4bd6-82f3-79c321293d2e",
              "name": "Get user information",
              "request": {
                "name": "Get user information",
                "description": {
                  "content": "Returns user information for the provided access token",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "oauth2",
                    "userInfo"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": null
              },
              "response": [
                {
                  "id": "2795d585-2679-478d-ba62-f05f41df62a5",
                  "name": "OK",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "userInfo"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"email\": \"<string>\",\n  \"email_verified\": \"<boolean>\",\n  \"family_name\": \"<string>\",\n  \"given_name\": \"<string>\",\n  \"locale\": \"<string>\",\n  \"name\": \"<string>\",\n  \"phone_number\": \"<string>\",\n  \"phone_number_verified\": \"<boolean>\",\n  \"picture\": \"<string>\",\n  \"sub\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "225538c8-a1e4-46ab-b47a-c491134fc7f8",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "userInfo"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "8f3cbe3f-02f0-4770-887c-05c4009b3f13",
                  "name": "Unauthorized",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "userInfo"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "32bd141e-b9dc-4e86-aaa7-93e558e93398",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "oauth2",
                        "userInfo"
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        }
      ]
    },
    {
      "name": "v1",
      "description": "",
      "item": [
        {
          "name": "partner",
          "description": "",
          "item": [
            {
              "name": "admin",
              "description": "",
              "item": [
                {
                  "name": "app",
                  "description": "",
                  "item": [
                    {
                      "id": "9c53a0ae-e6d5-49d1-9e4a-5d27afa42c15",
                      "name": "Get partner app information",
                      "request": {
                        "name": "Get partner app information",
                        "description": {
                          "content": "Retrieves information about the authenticated partner app",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "app"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "b435bbd4-c1a6-4088-bdad-9856c456f29a",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "app"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"client_id\": \"<string>\",\n  \"company_name\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"default_toolkit_id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"primary_contact_email\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"status\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"webhook_enabled\": \"<boolean>\",\n  \"webhook_filter\": {\n    \"events\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"type\": \"<string>\"\n  },\n  \"webhook_url\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "c18cdf23-57f2-42e2-bdfa-e94b5639e0bb",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "app"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "74130498-4bd1-42e1-8bbb-b6b7b8514779",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "app"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "id": "4ddd2720-7ca7-4ece-9db5-b80fc4a59d59",
                      "name": "Update partner app",
                      "request": {
                        "name": "Update partner app",
                        "description": {
                          "content": "Updates partner app details like name, description, and webhook URL",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "app"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Content-Type",
                            "value": "application/json"
                          },
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "PUT",
                        "body": {
                          "mode": "raw",
                          "raw": "{\n  \"default_toolkit_id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"webhook_url\": \"<string>\"\n}",
                          "options": {
                            "raw": {
                              "headerFamily": "json",
                              "language": "json"
                            }
                          }
                        }
                      },
                      "response": [
                        {
                          "id": "f501b6d5-ef62-406e-9120-e3cf3775352b",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "app"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"default_toolkit_id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"webhook_url\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"client_id\": \"<string>\",\n  \"company_name\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"default_toolkit_id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"primary_contact_email\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"status\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"webhook_enabled\": \"<boolean>\",\n  \"webhook_filter\": {\n    \"events\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"type\": \"<string>\"\n  },\n  \"webhook_url\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "4579a296-89d5-4d5e-98c9-09a28931dd7d",
                          "name": "Invalid request body",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "app"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"default_toolkit_id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"webhook_url\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"validation_error\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "7c6e6bc0-ca3d-43dd-84da-3845d95d0d83",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "app"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"default_toolkit_id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"webhook_url\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "a3fbad33-6aa7-4720-a4e7-53a25928118a",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "app"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"default_toolkit_id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"webhook_url\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "status",
                      "description": "",
                      "item": [
                        {
                          "id": "1a72e587-1b17-458b-8029-a0f6040c25ea",
                          "name": "Update partner app status",
                          "request": {
                            "name": "Update partner app status",
                            "description": {
                              "content": "Updates the status of the authenticated partner app",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "app",
                                "status"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"status\": \"inactive\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "response": [
                            {
                              "id": "79105e83-ab9d-42f5-99a2-54df562a65d2",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "app",
                                    "status"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"status\": \"inactive\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"client_id\": \"<string>\",\n  \"company_name\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"default_toolkit_id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"primary_contact_email\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"status\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"webhook_enabled\": \"<boolean>\",\n  \"webhook_filter\": {\n    \"events\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"type\": \"<string>\"\n  },\n  \"webhook_url\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "190dffd8-37b5-4d56-b20c-d5409f5ac55b",
                              "name": "Invalid request body",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "app",
                                    "status"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"status\": \"inactive\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"invalid_request_body\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "d1d9f986-02d8-4658-bd85-46f88429de35",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "app",
                                    "status"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"status\": \"inactive\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "ae03cf7e-b928-4417-ac89-296f100fdfb5",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "app",
                                    "status"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"status\": \"inactive\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "automation",
                  "description": "",
                  "item": [
                    {
                      "id": "0d80fcfc-0b13-4a39-804a-11802d4b8ca1",
                      "name": "Get automations",
                      "request": {
                        "name": "Get automations",
                        "description": {
                          "content": "Retrieves all automations for the authenticated partner app",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "automation"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "Limit",
                                "type": "text/plain"
                              },
                              "key": "limit",
                              "value": "50"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Offset",
                                "type": "text/plain"
                              },
                              "key": "offset",
                              "value": "0"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "e6b2463d-d914-4675-bce5-5bf243f5362e",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "automation"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"items\": [\n    {\n      \"actions\": [\n        {\n          \"type\": \"<string>\",\n          \"config\": {\n            \"key_0\": \"<string>\",\n            \"key_1\": \"<string>\"\n          }\n        },\n        {\n          \"type\": \"<string>\",\n          \"config\": {\n            \"key_0\": \"<string>\",\n            \"key_1\": \"<string>\"\n          }\n        }\n      ],\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"partner_app_id\": \"<string>\",\n      \"status\": \"<string>\",\n      \"trigger_type\": \"<string>\",\n      \"updated_at\": \"<string>\"\n    },\n    {\n      \"actions\": [\n        {\n          \"type\": \"<string>\",\n          \"config\": {\n            \"key_0\": \"<string>\"\n          }\n        },\n        {\n          \"type\": \"<string>\",\n          \"config\": {\n            \"key_0\": \"<string>\",\n            \"key_1\": \"<string>\"\n          }\n        }\n      ],\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"partner_app_id\": \"<string>\",\n      \"status\": \"<string>\",\n      \"trigger_type\": \"<string>\",\n      \"updated_at\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "af315d3b-5177-4732-ac26-4be40e8c99c8",
                          "name": "Invalid request parameters",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "automation"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "b70d9355-9d8a-4887-a136-36da027df0b8",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "automation"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "e8b4673e-6b07-4697-ae2b-4d183b0ff2fc",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "automation"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "id": "dd92976b-4116-44db-951f-61346eb19ea4",
                      "name": "Create a new automation",
                      "request": {
                        "name": "Create a new automation",
                        "description": {
                          "content": "Creates a new automation for action item matching",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "automation"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Content-Type",
                            "value": "application/json"
                          },
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "POST",
                        "body": {
                          "mode": "raw",
                          "raw": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\"\n      }\n    }\n  ],\n  \"name\": \"<string>\",\n  \"trigger_type\": \"action_item_completed\",\n  \"description\": \"<string>\"\n}",
                          "options": {
                            "raw": {
                              "headerFamily": "json",
                              "language": "json"
                            }
                          }
                        }
                      },
                      "response": [
                        {
                          "id": "a6b9fa9c-2e3f-46a8-87a1-f194ab8c86f5",
                          "name": "Created",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "automation"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\"\n      }\n    }\n  ],\n  \"name\": \"<string>\",\n  \"trigger_type\": \"action_item_completed\",\n  \"description\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Created",
                          "code": 201,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\",\n        \"key_2\": \"<string>\"\n      }\n    },\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\",\n        \"key_2\": \"<string>\"\n      }\n    }\n  ],\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"partner_app_id\": \"<string>\",\n  \"status\": \"<string>\",\n  \"trigger_type\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "fd3c8a78-d2fc-4383-82a3-02a2b5211640",
                          "name": "Invalid request body or validation error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "automation"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\"\n      }\n    }\n  ],\n  \"name\": \"<string>\",\n  \"trigger_type\": \"action_item_completed\",\n  \"description\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"invalid_request_body\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "a8e2bd98-ec3c-4eac-978f-b677c597b04e",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "automation"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\"\n      }\n    }\n  ],\n  \"name\": \"<string>\",\n  \"trigger_type\": \"action_item_completed\",\n  \"description\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "9260a94c-e5ca-48a1-a001-43f5303face1",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "automation"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\"\n      }\n    }\n  ],\n  \"name\": \"<string>\",\n  \"trigger_type\": \"action_item_completed\",\n  \"description\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "{automationId}",
                      "description": "",
                      "item": [
                        {
                          "id": "43aefd7e-3553-4803-9a02-f92c9632d0b6",
                          "name": "Delete automation",
                          "request": {
                            "name": "Delete automation",
                            "description": {
                              "content": "Deletes an automation by ID",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "automation",
                                ":automationId"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "automationId",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Automation ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "*/*"
                              }
                            ],
                            "method": "DELETE",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "eb193af2-9f89-4f1f-bb5a-234953259c6f",
                              "name": "No Content",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "No Content",
                              "code": 204,
                              "header": [],
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "0d19d31f-b4be-4b18-a031-a60db6785413",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "373e1898-a647-4bbc-a365-885101aedffc",
                              "name": "Automation not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "96a027ab-d228-4005-8070-7563f1823618",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "id": "925355a2-4386-4411-908d-d3b2a79b85c3",
                          "name": "Get automation by ID",
                          "request": {
                            "name": "Get automation by ID",
                            "description": {
                              "content": "Retrieves a specific automation by ID for the authenticated partner app",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "automation",
                                ":automationId"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "automationId",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Automation ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "7f527ae6-5e5e-4789-839a-1c2285fddc35",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\",\n        \"key_2\": \"<string>\"\n      }\n    },\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\",\n        \"key_2\": \"<string>\"\n      }\n    }\n  ],\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"partner_app_id\": \"<string>\",\n  \"status\": \"<string>\",\n  \"trigger_type\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "4763bdf5-32bb-45b9-804c-35e1772dc632",
                              "name": "Invalid automation ID",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "a48a7fac-e4a7-4139-8ca1-e04b65f17566",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "4f31a532-7b31-4c9f-91c4-75d2d79d98d5",
                              "name": "Automation not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "ed242d56-d196-4600-a63c-63868fc0a60e",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "id": "87401d00-81b8-41f7-88ef-01d113e2e849",
                          "name": "Update automation",
                          "request": {
                            "name": "Update automation",
                            "description": {
                              "content": "Updates a specific automation for the authenticated partner app",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "automation",
                                ":automationId"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "automationId",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Automation ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\"\n      }\n    }\n  ],\n  \"description\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"status\": \"inactive\",\n  \"trigger_type\": \"action_item_updated\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "response": [
                            {
                              "id": "eecf91b0-d9ee-4656-ab45-dfd09f9d1fff",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\"\n      }\n    }\n  ],\n  \"description\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"status\": \"inactive\",\n  \"trigger_type\": \"action_item_updated\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\",\n        \"key_2\": \"<string>\"\n      }\n    },\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\",\n        \"key_2\": \"<string>\"\n      }\n    }\n  ],\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"partner_app_id\": \"<string>\",\n  \"status\": \"<string>\",\n  \"trigger_type\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "28e7047d-4d88-4fad-993e-74a5f3cbe37b",
                              "name": "Invalid request body or validation error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\"\n      }\n    }\n  ],\n  \"description\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"status\": \"inactive\",\n  \"trigger_type\": \"action_item_updated\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"validation_error\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "85d8ca26-e906-4c30-afc4-a9e38956fab8",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\"\n      }\n    }\n  ],\n  \"description\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"status\": \"inactive\",\n  \"trigger_type\": \"action_item_updated\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "2866b8c5-aee2-45f8-931f-ff1f862d8db2",
                              "name": "Automation not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\"\n      }\n    }\n  ],\n  \"description\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"status\": \"inactive\",\n  \"trigger_type\": \"action_item_updated\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "dc5a6d3d-e190-4ace-8d5e-a9f379bd9020",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "automation",
                                    ":automationId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"actions\": [\n    {\n      \"type\": \"<string>\",\n      \"config\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\"\n      }\n    }\n  ],\n  \"description\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"status\": \"inactive\",\n  \"trigger_type\": \"action_item_updated\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "connections",
                  "description": "",
                  "item": [
                    {
                      "id": "7bacb5cb-3bcb-431b-9ad3-2b4c36004773",
                      "name": "Get user connections",
                      "request": {
                        "name": "Get user connections",
                        "description": {
                          "content": "Retrieves user connections for the authenticated partner app with pagination and filtering",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "connections"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "Limit",
                                "type": "text/plain"
                              },
                              "key": "limit",
                              "value": "50"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Offset",
                                "type": "text/plain"
                              },
                              "key": "offset",
                              "value": "0"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Filter by user ID",
                                "type": "text/plain"
                              },
                              "key": "user_id",
                              "value": "<string>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Filter by connection status",
                                "type": "text/plain"
                              },
                              "key": "status",
                              "value": "expired"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "4cb52f7e-695a-4b06-afd0-2d5bab9cb8a0",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "connections"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by user ID",
                                    "type": "text/plain"
                                  },
                                  "key": "user_id",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by connection status",
                                    "type": "text/plain"
                                  },
                                  "key": "status",
                                  "value": "expired"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"items\": [\n    {\n      \"created_at\": \"<string>\",\n      \"feature_activated_at\": \"<string>\",\n      \"id\": \"<string>\",\n      \"last_used_at\": \"<string>\",\n      \"oauth_expires_at\": \"<string>\",\n      \"oauth_scopes\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"status\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"user_email\": \"<string>\",\n      \"user_id\": \"<string>\",\n      \"user_name\": \"<string>\"\n    },\n    {\n      \"created_at\": \"<string>\",\n      \"feature_activated_at\": \"<string>\",\n      \"id\": \"<string>\",\n      \"last_used_at\": \"<string>\",\n      \"oauth_expires_at\": \"<string>\",\n      \"oauth_scopes\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"status\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"user_email\": \"<string>\",\n      \"user_id\": \"<string>\",\n      \"user_name\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "ea72a94c-537c-4170-98c8-59b076a8058b",
                          "name": "Invalid request parameters",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "connections"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by user ID",
                                    "type": "text/plain"
                                  },
                                  "key": "user_id",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by connection status",
                                    "type": "text/plain"
                                  },
                                  "key": "status",
                                  "value": "expired"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "7d84109b-ecf8-49c0-af82-c5bd7fdbe2f3",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "connections"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by user ID",
                                    "type": "text/plain"
                                  },
                                  "key": "user_id",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by connection status",
                                    "type": "text/plain"
                                  },
                                  "key": "status",
                                  "value": "expired"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "d069523a-6c81-4ec7-be41-3fe535c0744d",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "connections"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by user ID",
                                    "type": "text/plain"
                                  },
                                  "key": "user_id",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by connection status",
                                    "type": "text/plain"
                                  },
                                  "key": "status",
                                  "value": "expired"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "{connectionId}",
                      "description": "",
                      "item": [
                        {
                          "id": "b2acded2-4301-4c40-9fb6-33131a83c26b",
                          "name": "Revoke user connection",
                          "request": {
                            "name": "Revoke user connection",
                            "description": {
                              "content": "Revokes a user connection by ID if it belongs to the authenticated partner app",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "connections",
                                ":connectionId"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "connectionId",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Connection ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "*/*"
                              }
                            ],
                            "method": "DELETE",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "3c281a4c-2252-4bac-9024-8f947efd1280",
                              "name": "No Content",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "connections",
                                    ":connectionId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "No Content",
                              "code": 204,
                              "header": [],
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "1ff6f13c-c5e1-4753-bd88-3309f5e846c4",
                              "name": "Invalid connection ID",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "connections",
                                    ":connectionId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "05eb3bc4-4348-4c11-96e3-e05eb98140e4",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "connections",
                                    ":connectionId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "808cea44-5bc6-4955-a7cb-1638f04fc7b5",
                              "name": "Connection not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "connections",
                                    ":connectionId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "bf8d7d80-b8e2-44be-9762-7f4d04bcc834",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "connections",
                                    ":connectionId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "id": "d45b8ce1-bbf8-48ab-a51b-fc894402a0ef",
                          "name": "Get user connection by ID",
                          "request": {
                            "name": "Get user connection by ID",
                            "description": {
                              "content": "Retrieves a specific user connection by ID if it belongs to the authenticated partner app",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "connections",
                                ":connectionId"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "connectionId",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Connection ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "7e263d9b-ddd3-416b-ac90-0709c7b6f504",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "connections",
                                    ":connectionId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"created_at\": \"<string>\",\n  \"feature_activated_at\": \"<string>\",\n  \"id\": \"<string>\",\n  \"last_used_at\": \"<string>\",\n  \"oauth_expires_at\": \"<string>\",\n  \"oauth_scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"status\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"user_email\": \"<string>\",\n  \"user_id\": \"<string>\",\n  \"user_name\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "9040d747-d5fe-43fe-8bbe-9651bd5edc05",
                              "name": "Invalid connection ID",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "connections",
                                    ":connectionId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "e2a4cb29-2d6c-4ab1-8b54-2eeeba2339c4",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "connections",
                                    ":connectionId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "5385c6bf-4b1f-4955-9dd4-41dbc0d0778d",
                              "name": "Connection not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "connections",
                                    ":connectionId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "23748fcf-8464-4701-b71e-9a40a0a9bcb2",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "connections",
                                    ":connectionId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "credentials",
                  "description": "",
                  "item": [
                    {
                      "id": "a5fa27ba-f8e8-4adb-94ed-0d3fb04484a7",
                      "name": "Get credential status",
                      "request": {
                        "name": "Get credential status",
                        "description": {
                          "content": "Returns the status, age, and health information for all partner credentials",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "credentials"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "afc3cf11-0f16-4fb4-ac07-b769703fe61f",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "credentials"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"key_0\": {\n    \"age_days\": \"<integer>\",\n    \"created_at\": \"<string>\",\n    \"credential_type\": \"<string>\",\n    \"grace_period_ends_at\": \"<string>\",\n    \"last_rotated_at\": \"<string>\",\n    \"last_used_at\": \"<string>\",\n    \"recommended_action\": \"<string>\",\n    \"status\": \"<string>\"\n  }\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "f315f4c2-10b7-4456-afba-821d61e5e46a",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "credentials"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "e2e921f3-b193-4623-b4df-c47e0ccca1b3",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "credentials"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "api-key",
                      "description": "",
                      "item": [
                        {
                          "name": "rollback",
                          "description": "",
                          "item": [
                            {
                              "id": "00e534ac-0763-444d-8e9f-5257fc215792",
                              "name": "Rollback API key",
                              "request": {
                                "name": "Rollback API key",
                                "description": {
                                  "content": "Restores the API key to the prior value after rotation",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "credentials",
                                    "api-key",
                                    "rollback"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"rollback_token\": \"<string>\",\n  \"reason\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "response": [
                                {
                                  "id": "cf5dbcab-a230-44e1-a8ba-c764c6fe0192",
                                  "name": "Rollback successful",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "api-key",
                                        "rollback"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"rollback_token\": \"<string>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [],
                                  "cookie": [],
                                  "_postman_previewlanguage": "text"
                                },
                                {
                                  "id": "3785b7b1-4c46-4405-8f6c-7686af7fa922",
                                  "name": "Invalid request",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "api-key",
                                        "rollback"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"rollback_token\": \"<string>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "cfdb2e83-148e-4266-b107-819d5f67d47a",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "api-key",
                                        "rollback"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"rollback_token\": \"<string>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "1a1cd612-fe4a-4784-89e9-62577d69b575",
                                  "name": "Rate limit exceeded",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "api-key",
                                        "rollback"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"rollback_token\": \"<string>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Too Many Requests",
                                  "code": 429,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"too_many_requests\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "ed06ccf0-b76b-4675-a610-41c1b101d04c",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "api-key",
                                        "rollback"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"rollback_token\": \"<string>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            }
                          ]
                        },
                        {
                          "name": "rotate",
                          "description": "",
                          "item": [
                            {
                              "id": "01b3c3f8-ba19-434e-9b12-ea908d228a0a",
                              "name": "Rotate API key",
                              "request": {
                                "name": "Rotate API key",
                                "description": {
                                  "content": "Rotates the API key with optional grace period",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "credentials",
                                    "api-key",
                                    "rotate"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "response": [
                                {
                                  "id": "83861554-df21-4c40-b007-228615d9aa75",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "api-key",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"credential_type\": \"<string>\",\n  \"grace_period_ends_at\": \"<string>\",\n  \"new_credential\": \"<string>\",\n  \"rollback_expires_at\": \"<string>\",\n  \"rollback_token\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "1b5aa602-7975-48be-8670-3415933bb802",
                                  "name": "Invalid request",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "api-key",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"rate_limit_exceeded\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "10015a35-45e8-4f0f-bcf5-3399ba51c6c2",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "api-key",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "171a72f2-df86-45fb-8d79-03dec68f71d5",
                                  "name": "Rate limit exceeded",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "api-key",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Too Many Requests",
                                  "code": 429,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"too_many_requests\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "0e7ea8b6-05ab-454c-9d80-734148f24851",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "api-key",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            }
                          ]
                        }
                      ]
                    },
                    {
                      "name": "client-secret",
                      "description": "",
                      "item": [
                        {
                          "name": "rollback",
                          "description": "",
                          "item": [
                            {
                              "id": "ffc40a7d-c6ac-4b21-83de-c27073b372fd",
                              "name": "Rollback Client secret",
                              "request": {
                                "name": "Rollback Client secret",
                                "description": {
                                  "content": "Restores the client secret to the prior value after rotation",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "credentials",
                                    "client-secret",
                                    "rollback"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"rollback_token\": \"<string>\",\n  \"reason\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "response": [
                                {
                                  "id": "51f4cffd-51e5-4f73-b4fb-20e3a0cb480e",
                                  "name": "Rollback successful",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "client-secret",
                                        "rollback"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"rollback_token\": \"<string>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [],
                                  "cookie": [],
                                  "_postman_previewlanguage": "text"
                                },
                                {
                                  "id": "ded4edf9-1f69-4263-9ce0-65908c172bdf",
                                  "name": "Invalid request",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "client-secret",
                                        "rollback"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"rollback_token\": \"<string>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "853e1be4-b5e4-4149-9bb5-78a90cdec40f",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "client-secret",
                                        "rollback"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"rollback_token\": \"<string>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "8317e835-acf0-427f-a7b4-2ba1dba3ae6f",
                                  "name": "Rate limit exceeded",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "client-secret",
                                        "rollback"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"rollback_token\": \"<string>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Too Many Requests",
                                  "code": 429,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"too_many_requests\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "d95e8c04-b5fb-4cb0-8ed5-bd25909c8247",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "client-secret",
                                        "rollback"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"rollback_token\": \"<string>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            }
                          ]
                        },
                        {
                          "name": "rotate",
                          "description": "",
                          "item": [
                            {
                              "id": "59fc4900-64ac-4332-8b51-51a21221990c",
                              "name": "Rotate client secret",
                              "request": {
                                "name": "Rotate client secret",
                                "description": {
                                  "content": "Rotates the client secret with optional grace period",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "credentials",
                                    "client-secret",
                                    "rotate"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "response": [
                                {
                                  "id": "69ea0f08-5bef-40c6-94ad-d1a678b38be9",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "client-secret",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"credential_type\": \"<string>\",\n  \"grace_period_ends_at\": \"<string>\",\n  \"new_credential\": \"<string>\",\n  \"rollback_expires_at\": \"<string>\",\n  \"rollback_token\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "fe7c9e0f-5b94-4708-b79a-e294b2664801",
                                  "name": "Invalid request",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "client-secret",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"rate_limit_exceeded\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "710a5001-1ec0-4996-8b2b-439f314bdbfa",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "client-secret",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "ecfffb89-e78a-4b9e-813b-aa8a992ed083",
                                  "name": "Rate limit exceeded",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "client-secret",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Too Many Requests",
                                  "code": 429,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"too_many_requests\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "3f82657c-d30f-478d-8e0e-7696e6b10507",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "client-secret",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            }
                          ]
                        }
                      ]
                    },
                    {
                      "name": "history",
                      "description": "",
                      "item": [
                        {
                          "id": "e3f8ca51-f2e6-4721-a012-0de3ef766772",
                          "name": "Get audit history",
                          "request": {
                            "name": "Get audit history",
                            "description": {
                              "content": "Returns the audit history for credential operations",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "credentials",
                                "history"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of events to return",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "20"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of events to skip",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by credential type",
                                    "type": "text/plain"
                                  },
                                  "key": "credential_type",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "7197e726-bffc-4572-937b-2566912ee7e8",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "credentials",
                                    "history"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Number of events to return",
                                        "type": "text/plain"
                                      },
                                      "key": "limit",
                                      "value": "20"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Number of events to skip",
                                        "type": "text/plain"
                                      },
                                      "key": "offset",
                                      "value": "0"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Filter by credential type",
                                        "type": "text/plain"
                                      },
                                      "key": "credential_type",
                                      "value": "<string>"
                                    }
                                  ],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"key_0\": \"string\",\n  \"key_1\": false\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "f791bb28-c9c6-407c-9c61-ed237014fb76",
                              "name": "Invalid request parameters",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "credentials",
                                    "history"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Number of events to return",
                                        "type": "text/plain"
                                      },
                                      "key": "limit",
                                      "value": "20"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Number of events to skip",
                                        "type": "text/plain"
                                      },
                                      "key": "offset",
                                      "value": "0"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Filter by credential type",
                                        "type": "text/plain"
                                      },
                                      "key": "credential_type",
                                      "value": "<string>"
                                    }
                                  ],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "cc8330ee-f031-4cec-9193-41ce2f44a094",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "credentials",
                                    "history"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Number of events to return",
                                        "type": "text/plain"
                                      },
                                      "key": "limit",
                                      "value": "20"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Number of events to skip",
                                        "type": "text/plain"
                                      },
                                      "key": "offset",
                                      "value": "0"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Filter by credential type",
                                        "type": "text/plain"
                                      },
                                      "key": "credential_type",
                                      "value": "<string>"
                                    }
                                  ],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "7cb7b5d0-42e1-4bca-8322-15b345025cd8",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "credentials",
                                    "history"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Number of events to return",
                                        "type": "text/plain"
                                      },
                                      "key": "limit",
                                      "value": "20"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Number of events to skip",
                                        "type": "text/plain"
                                      },
                                      "key": "offset",
                                      "value": "0"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Filter by credential type",
                                        "type": "text/plain"
                                      },
                                      "key": "credential_type",
                                      "value": "<string>"
                                    }
                                  ],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        }
                      ]
                    },
                    {
                      "name": "webhook-secret",
                      "description": "",
                      "item": [
                        {
                          "name": "rotate",
                          "description": "",
                          "item": [
                            {
                              "id": "7752dc25-459b-44d1-acb1-72f985b2438c",
                              "name": "Rotate webhook secret",
                              "request": {
                                "name": "Rotate webhook secret",
                                "description": {
                                  "content": "Rotates the webhook secret with optional grace period",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "credentials",
                                    "webhook-secret",
                                    "rotate"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "response": [
                                {
                                  "id": "2c3930db-219f-43a2-a2b3-73035762a091",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "webhook-secret",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"credential_type\": \"<string>\",\n  \"grace_period_ends_at\": \"<string>\",\n  \"new_credential\": \"<string>\",\n  \"rollback_expires_at\": \"<string>\",\n  \"rollback_token\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "23e95788-8d0d-464a-9548-2db3d08b6ed4",
                                  "name": "Invalid request",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "webhook-secret",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "617f1559-f2b6-411e-8a26-e76331537adc",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "webhook-secret",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "7f73ee07-b901-4e0f-a1ab-c94e0ede8473",
                                  "name": "Rate limit exceeded",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "webhook-secret",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Too Many Requests",
                                  "code": 429,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"too_many_requests\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "a393c7ea-3dac-4136-a312-c0c79cda93c9",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "credentials",
                                        "webhook-secret",
                                        "rotate"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"confirmation_token\": \"<string>\",\n  \"grace_period_hours\": \"<integer>\",\n  \"reason\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            }
                          ]
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "idp",
                  "description": "",
                  "item": [
                    {
                      "id": "8d02884f-bbd0-40d4-bf14-ffb3876cbe14",
                      "name": "Delete IdP configuration",
                      "request": {
                        "name": "Delete IdP configuration",
                        "description": {
                          "content": "Deletes the OIDC IdP configuration for the authenticated partner app",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "idp"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "DELETE",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "861a27b1-3dd6-466f-927d-d7be9f075438",
                          "name": "No Content",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "DELETE",
                            "body": {}
                          },
                          "status": "No Content",
                          "code": 204,
                          "header": [],
                          "cookie": [],
                          "_postman_previewlanguage": "text"
                        },
                        {
                          "id": "29a9b1a6-a616-4b54-b151-3ba9da0ca23b",
                          "name": "Unauthorized",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "DELETE",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "599932b6-dce7-4a45-8c82-26b4355a2a86",
                          "name": "Not Found",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "DELETE",
                            "body": {}
                          },
                          "status": "Not Found",
                          "code": 404,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "3aa26377-eb14-415d-961a-7243b420574a",
                          "name": "Internal Server Error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "DELETE",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "id": "03c43043-4604-4729-8e1c-7f6418e642a1",
                      "name": "Get IdP configuration",
                      "request": {
                        "name": "Get IdP configuration",
                        "description": {
                          "content": "Retrieves the OIDC IdP configuration for the authenticated partner app",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "idp"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "257d0581-ac0a-4ec2-8771-2fb0a7a52449",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"authorization_endpoint\": \"<string>\",\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\",\n    \"key_3\": \"<string>\"\n  },\n  \"created_at\": \"<string>\",\n  \"discovery_last_fetched_at\": \"<string>\",\n  \"discovery_url\": \"<string>\",\n  \"id\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"issuer\": \"<string>\",\n  \"jwks_uri\": \"<string>\",\n  \"mode\": \"<string>\",\n  \"name\": \"<string>\",\n  \"partner_app_id\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"token_endpoint\": \"<string>\",\n  \"type\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"userinfo_endpoint\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "41b8ab79-95bd-4bca-86cb-0dffcb5305cc",
                          "name": "Unauthorized",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "13d103f9-49c8-48c9-85b9-267a13ef2f93",
                          "name": "Not Found",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Not Found",
                          "code": 404,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "145363ac-ffc6-4715-8a92-00f10e245a4b",
                          "name": "Internal Server Error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "id": "28acaf32-18ad-42cd-a7c7-12d944bf4040",
                      "name": "Create IdP configuration",
                      "request": {
                        "name": "Create IdP configuration",
                        "description": {
                          "content": "Creates a new OIDC IdP configuration for the authenticated partner app. Note: idp_client_id and idp_client_secret are the OIDC credentials from your Identity Provider (e.g., Okta, Azure AD), NOT your Contio Partner OAuth credentials.",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "idp"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Content-Type",
                            "value": "application/json"
                          },
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "POST",
                        "body": {
                          "mode": "raw",
                          "raw": "{\n  \"discovery_url\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"idp_client_secret\": \"<string>\",\n  \"mode\": \"strict\",\n  \"name\": \"<string>\",\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\"\n  },\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                          "options": {
                            "raw": {
                              "headerFamily": "json",
                              "language": "json"
                            }
                          }
                        }
                      },
                      "response": [
                        {
                          "id": "0e086316-9cff-472d-9f4e-3527a4601bab",
                          "name": "Created",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"discovery_url\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"idp_client_secret\": \"<string>\",\n  \"mode\": \"strict\",\n  \"name\": \"<string>\",\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\"\n  },\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Created",
                          "code": 201,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"authorization_endpoint\": \"<string>\",\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\",\n    \"key_3\": \"<string>\"\n  },\n  \"created_at\": \"<string>\",\n  \"discovery_last_fetched_at\": \"<string>\",\n  \"discovery_url\": \"<string>\",\n  \"id\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"issuer\": \"<string>\",\n  \"jwks_uri\": \"<string>\",\n  \"mode\": \"<string>\",\n  \"name\": \"<string>\",\n  \"partner_app_id\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"token_endpoint\": \"<string>\",\n  \"type\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"userinfo_endpoint\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "5196ebe4-99f8-4e91-8133-f8ca4790854f",
                          "name": "Invalid request body or validation error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"discovery_url\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"idp_client_secret\": \"<string>\",\n  \"mode\": \"strict\",\n  \"name\": \"<string>\",\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\"\n  },\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"idp_config_exists\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "3ecfee30-13f3-43e6-9561-fb35f59b3200",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"discovery_url\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"idp_client_secret\": \"<string>\",\n  \"mode\": \"strict\",\n  \"name\": \"<string>\",\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\"\n  },\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "baf31b95-490d-4a4c-a35f-e92a6fa6fcac",
                          "name": "IdP config already exists",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"discovery_url\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"idp_client_secret\": \"<string>\",\n  \"mode\": \"strict\",\n  \"name\": \"<string>\",\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\"\n  },\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Conflict",
                          "code": 409,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"conflict\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "b1dd7f75-e5bd-4a1f-bd2d-0cba38cbf3c4",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"discovery_url\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"idp_client_secret\": \"<string>\",\n  \"mode\": \"strict\",\n  \"name\": \"<string>\",\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\"\n  },\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "id": "3730bf4d-8218-4367-96c7-968f271fdb96",
                      "name": "Update IdP configuration",
                      "request": {
                        "name": "Update IdP configuration",
                        "description": {
                          "content": "Updates the OIDC IdP configuration for the authenticated partner app. Note: idp_client_id and idp_client_secret are the OIDC credentials from your Identity Provider (e.g., Okta, Azure AD), NOT your Contio Partner OAuth credentials.",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "idp"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Content-Type",
                            "value": "application/json"
                          },
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "PUT",
                        "body": {
                          "mode": "raw",
                          "raw": "{\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\",\n    \"key_3\": \"<string>\"\n  },\n  \"discovery_url\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"idp_client_secret\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"mode\": \"strict\",\n  \"name\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                          "options": {
                            "raw": {
                              "headerFamily": "json",
                              "language": "json"
                            }
                          }
                        }
                      },
                      "response": [
                        {
                          "id": "e00b1b29-e480-477e-9e0c-2a24b7634136",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\",\n    \"key_3\": \"<string>\"\n  },\n  \"discovery_url\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"idp_client_secret\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"mode\": \"strict\",\n  \"name\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"authorization_endpoint\": \"<string>\",\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\",\n    \"key_3\": \"<string>\"\n  },\n  \"created_at\": \"<string>\",\n  \"discovery_last_fetched_at\": \"<string>\",\n  \"discovery_url\": \"<string>\",\n  \"id\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"issuer\": \"<string>\",\n  \"jwks_uri\": \"<string>\",\n  \"mode\": \"<string>\",\n  \"name\": \"<string>\",\n  \"partner_app_id\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"token_endpoint\": \"<string>\",\n  \"type\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"userinfo_endpoint\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "0bc257e8-b059-4c2c-8a53-8b738a4701f3",
                          "name": "Invalid request body or validation error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\",\n    \"key_3\": \"<string>\"\n  },\n  \"discovery_url\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"idp_client_secret\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"mode\": \"strict\",\n  \"name\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"invalid_idp\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "4765fdec-78b8-4fed-8ab5-8c8fa9c01a3e",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\",\n    \"key_3\": \"<string>\"\n  },\n  \"discovery_url\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"idp_client_secret\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"mode\": \"strict\",\n  \"name\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "e4c6eb63-db43-422c-b876-64fb54d0b3a5",
                          "name": "IdP config not found",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\",\n    \"key_3\": \"<string>\"\n  },\n  \"discovery_url\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"idp_client_secret\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"mode\": \"strict\",\n  \"name\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Not Found",
                          "code": 404,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "48c0d0d5-3477-4d03-9c76-d70d8db1f4b9",
                          "name": "Domain already claimed",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\",\n    \"key_3\": \"<string>\"\n  },\n  \"discovery_url\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"idp_client_secret\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"mode\": \"strict\",\n  \"name\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Conflict",
                          "code": 409,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"conflict\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "223d959e-eb93-42a3-aad7-206ca447a2fe",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "idp"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"allowed_email_domains\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"claim_mappings\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\",\n    \"key_3\": \"<string>\"\n  },\n  \"discovery_url\": \"<string>\",\n  \"idp_client_id\": \"<string>\",\n  \"idp_client_secret\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"mode\": \"strict\",\n  \"name\": \"<string>\",\n  \"scopes\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    }
                  ]
                },
                {
                  "name": "templates",
                  "description": "",
                  "item": [
                    {
                      "id": "de351773-771d-4794-9df4-1e5b0cfe642f",
                      "name": "List templates",
                      "request": {
                        "name": "List templates",
                        "description": {
                          "content": "Retrieves a paginated list of templates for the authenticated partner app",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "templates"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "Limit",
                                "type": "text/plain"
                              },
                              "key": "limit",
                              "value": "50"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Offset",
                                "type": "text/plain"
                              },
                              "key": "offset",
                              "value": "0"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "e22a6359-8b22-459d-8ecb-3a1a98a20c7b",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"items\": [\n    {\n      \"backing_meeting_id\": \"<string>\",\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"updated_at\": \"<string>\"\n    },\n    {\n      \"backing_meeting_id\": \"<string>\",\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"updated_at\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "51763376-3379-4859-8644-d955008f3852",
                          "name": "Invalid request parameters",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "d958f7c7-2ae1-4b04-9829-b5e60ff8875e",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "d2cf0df3-d85e-4505-b196-3a5ae41d2f33",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "id": "b7962ac6-0ab9-4c7d-925a-dc3a9dd7779b",
                      "name": "Create a template",
                      "request": {
                        "name": "Create a template",
                        "description": {
                          "content": "Creates a new template for the authenticated partner app. Optionally, provide a backing_meeting_id to clone content from an existing meeting.",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "templates"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Content-Type",
                            "value": "application/json"
                          },
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "POST",
                        "body": {
                          "mode": "raw",
                          "raw": "{\n  \"name\": \"<string>\",\n  \"backing_meeting_id\": \"<string>\",\n  \"description\": \"<string>\"\n}",
                          "options": {
                            "raw": {
                              "headerFamily": "json",
                              "language": "json"
                            }
                          }
                        }
                      },
                      "response": [
                        {
                          "id": "8c56137d-f732-4648-a084-697769d9a37f",
                          "name": "Created",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"name\": \"<string>\",\n  \"backing_meeting_id\": \"<string>\",\n  \"description\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Created",
                          "code": 201,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"backing_meeting_id\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "fb7effb9-432f-47b0-8f0c-e9e8cdb9356c",
                          "name": "Invalid request body or backing meeting validation error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"name\": \"<string>\",\n  \"backing_meeting_id\": \"<string>\",\n  \"description\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "68c25ebd-5d99-432d-b31a-355849af70f6",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"name\": \"<string>\",\n  \"backing_meeting_id\": \"<string>\",\n  \"description\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "f869ca8a-f394-4868-939d-a0dd188e6153",
                          "name": "Partner does not have access to the backing meeting's workspace",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"name\": \"<string>\",\n  \"backing_meeting_id\": \"<string>\",\n  \"description\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Forbidden",
                          "code": 403,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"forbidden\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "6623e0eb-1246-4796-adff-85be00428d7b",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"name\": \"<string>\",\n  \"backing_meeting_id\": \"<string>\",\n  \"description\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "{templateId}",
                      "description": "",
                      "item": [
                        {
                          "id": "4f762dae-2114-4977-a84f-fc852ab861f3",
                          "name": "Delete a template",
                          "request": {
                            "name": "Delete a template",
                            "description": {
                              "content": "Deletes a template for the authenticated partner app",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "templates",
                                ":templateId"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "templateId",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Template ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "DELETE",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "e4c6c09d-acc3-43f5-a1ef-1b554c2b958b",
                              "name": "Template deleted",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "No Content",
                              "code": 204,
                              "header": [],
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "4f628318-a352-4c19-985b-42c3a0e01f62",
                              "name": "Invalid request parameters",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "aed8d313-8c7e-4786-b846-45debffde049",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "f55792c2-cde4-4578-bf94-34d027e6b4b0",
                              "name": "Template not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "f8f8b511-f160-4cf9-a551-b3e50db26cb1",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "id": "fe01abc5-26ff-41a1-8920-f4ee55dd9626",
                          "name": "Get a template",
                          "request": {
                            "name": "Get a template",
                            "description": {
                              "content": "Retrieves a template for the authenticated partner app",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "templates",
                                ":templateId"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "templateId",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Template ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "8d3a1fcf-a6b6-49de-8b0a-d3712572c60a",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"backing_meeting_id\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "fa813a06-c3ea-49b6-9c52-261476efe34f",
                              "name": "Invalid request parameters",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "e1b591e6-ed47-448a-b5c9-3988ba83ce03",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "84299ad7-83ed-4cdd-bdc4-035afacba724",
                              "name": "Template not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "905527ee-70bf-492b-b433-3951c910e7ae",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "id": "7ec92a8f-1f72-4e4a-964a-39431e73d21e",
                          "name": "Update a template",
                          "request": {
                            "name": "Update a template",
                            "description": {
                              "content": "Updates a template for the authenticated partner app",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "templates",
                                ":templateId"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "templateId",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Template ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"description\": \"<string>\",\n  \"name\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "response": [
                            {
                              "id": "fcb9c714-a30c-42e4-869c-ea19a122d7dc",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"description\": \"<string>\",\n  \"name\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"backing_meeting_id\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "e9129fb0-3e00-4423-be54-08dfb0330b03",
                              "name": "Invalid request parameters",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"description\": \"<string>\",\n  \"name\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "2e4e4f75-47bc-413d-9795-155bdfb4fe4c",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"description\": \"<string>\",\n  \"name\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "0251b5c6-106c-4df7-9ea6-dd94629cbe8b",
                              "name": "Template not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"description\": \"<string>\",\n  \"name\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "e0bab7d5-f645-4a71-80e5-2018c2180b7e",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"description\": \"<string>\",\n  \"name\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "name": "next-steps",
                          "description": "",
                          "item": [
                            {
                              "id": "0793e646-203c-48c3-9efd-ead60a8432b4",
                              "name": "Get template next steps",
                              "request": {
                                "name": "Get template next steps",
                                "description": {
                                  "content": "Returns the next steps for a template for the authenticated partner app",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId",
                                    "next-steps"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<string>",
                                      "key": "templateId",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Template ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "2cf4d9fd-26fe-4b91-b8cc-c1103549a4af",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "templates",
                                        ":templateId",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"items\": [\n    {\n      \"autopilot\": \"<boolean>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"sort_order\": \"<integer>\"\n    },\n    {\n      \"autopilot\": \"<boolean>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"sort_order\": \"<integer>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "7e3a3715-6e9f-49ce-a1da-e6caccaf5aed",
                                  "name": "Invalid request parameters",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "templates",
                                        ":templateId",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "08a28510-9a96-4807-9065-dbb5a63c522b",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "templates",
                                        ":templateId",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "1fe1dd2a-9917-4357-b683-a3388d36d070",
                                  "name": "Template not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "templates",
                                        ":templateId",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "9d3d40c7-596f-48ec-aeb4-14d125e4bbc0",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "templates",
                                        ":templateId",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "id": "1964b42b-8e3e-4af0-8092-119ad412c0fc",
                              "name": "Add next step to template",
                              "request": {
                                "name": "Add next step to template",
                                "description": {
                                  "content": "Adds a next step to a template for the authenticated partner app",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "templates",
                                    ":templateId",
                                    "next-steps"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<string>",
                                      "key": "templateId",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Template ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"next_step_id\": \"<string>\",\n  \"autopilot\": \"<boolean>\",\n  \"sort_order\": \"<integer>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "response": [
                                {
                                  "id": "1cab1b70-84e5-40ce-b36d-ef09cad81261",
                                  "name": "Next step added to template successfully",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "templates",
                                        ":templateId",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"next_step_id\": \"<string>\",\n  \"autopilot\": \"<boolean>\",\n  \"sort_order\": \"<integer>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "No Content",
                                  "code": 204,
                                  "header": [],
                                  "cookie": [],
                                  "_postman_previewlanguage": "text"
                                },
                                {
                                  "id": "a8c1d033-c31f-427f-a7d9-de942b1fce2d",
                                  "name": "Invalid request parameters",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "templates",
                                        ":templateId",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"next_step_id\": \"<string>\",\n  \"autopilot\": \"<boolean>\",\n  \"sort_order\": \"<integer>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "1d09b391-1ff6-4b1e-b803-98e8f26fdb6c",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "templates",
                                        ":templateId",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"next_step_id\": \"<string>\",\n  \"autopilot\": \"<boolean>\",\n  \"sort_order\": \"<integer>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "e25fa650-4503-44be-9b81-f0d78b88c22a",
                                  "name": "Template or next step not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "templates",
                                        ":templateId",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"next_step_id\": \"<string>\",\n  \"autopilot\": \"<boolean>\",\n  \"sort_order\": \"<integer>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "a00d2a72-7d72-430c-b665-c2326ec6c142",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "templates",
                                        ":templateId",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"next_step_id\": \"<string>\",\n  \"autopilot\": \"<boolean>\",\n  \"sort_order\": \"<integer>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "name": "{nextStepId}",
                              "description": "",
                              "item": [
                                {
                                  "id": "baf253c7-c63e-4606-8372-ac0e26be4cc3",
                                  "name": "Remove next step from template",
                                  "request": {
                                    "name": "Remove next step from template",
                                    "description": {
                                      "content": "Removes a next step from a template for the authenticated partner app",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "templates",
                                        ":templateId",
                                        "next-steps",
                                        ":nextStepId"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<string>",
                                          "key": "templateId",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Template ID",
                                            "type": "text/plain"
                                          }
                                        },
                                        {
                                          "type": "any",
                                          "value": "<string>",
                                          "key": "nextStepId",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Next Step ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "DELETE",
                                    "body": {}
                                  },
                                  "response": [
                                    {
                                      "id": "add668e7-6e0d-4500-a902-17923c2aa149",
                                      "name": "Next step removed from template successfully",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "templates",
                                            ":templateId",
                                            "next-steps",
                                            ":nextStepId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "No Content",
                                      "code": 204,
                                      "header": [],
                                      "cookie": [],
                                      "_postman_previewlanguage": "text"
                                    },
                                    {
                                      "id": "23d01cfe-0bbc-4841-8ed3-b6442e3ad939",
                                      "name": "Invalid request parameters",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "templates",
                                            ":templateId",
                                            "next-steps",
                                            ":nextStepId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "dd21b67c-d088-4c52-943d-3af2f7babbf2",
                                      "name": "Authentication required",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "templates",
                                            ":templateId",
                                            "next-steps",
                                            ":nextStepId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "3ba2fc77-6013-44e3-8fc7-81c5a995f937",
                                      "name": "Template or next step not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "templates",
                                            ":templateId",
                                            "next-steps",
                                            ":nextStepId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "431c0e1b-fb32-4877-a68b-19f58a58f05f",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "templates",
                                            ":templateId",
                                            "next-steps",
                                            ":nextStepId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                },
                                {
                                  "id": "817766da-5264-440f-bd8b-d6e6649fbe6d",
                                  "name": "Update template next step association",
                                  "request": {
                                    "name": "Update template next step association",
                                    "description": {
                                      "content": "Updates the autopilot flag for a next step in a template",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "templates",
                                        ":templateId",
                                        "next-steps",
                                        ":nextStepId"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<string>",
                                          "key": "templateId",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Template ID",
                                            "type": "text/plain"
                                          }
                                        },
                                        {
                                          "type": "any",
                                          "value": "<string>",
                                          "key": "nextStepId",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Next Step ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "PUT",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"autopilot\": \"<boolean>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "response": [
                                    {
                                      "id": "3163999d-ed9a-4fd3-bdad-7417dec6cfc3",
                                      "name": "Template next step association updated successfully",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "templates",
                                            ":templateId",
                                            "next-steps",
                                            ":nextStepId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "PUT",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"autopilot\": \"<boolean>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "No Content",
                                      "code": 204,
                                      "header": [],
                                      "cookie": [],
                                      "_postman_previewlanguage": "text"
                                    },
                                    {
                                      "id": "2466aa8b-cbee-4d02-8ba1-24a100ba7371",
                                      "name": "Invalid request parameters",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "templates",
                                            ":templateId",
                                            "next-steps",
                                            ":nextStepId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "PUT",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"autopilot\": \"<boolean>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "d5b26796-f309-451a-b4ca-834f76371600",
                                      "name": "Authentication required",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "templates",
                                            ":templateId",
                                            "next-steps",
                                            ":nextStepId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "PUT",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"autopilot\": \"<boolean>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "e49e1c3d-0597-4746-b2fa-00351587a86e",
                                      "name": "Template or next step not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "templates",
                                            ":templateId",
                                            "next-steps",
                                            ":nextStepId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "PUT",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"autopilot\": \"<boolean>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "52b4c546-8e76-49df-b8ed-0c95a57052cf",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "templates",
                                            ":templateId",
                                            "next-steps",
                                            ":nextStepId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "PUT",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"autopilot\": \"<boolean>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "toolkits",
                  "description": "",
                  "item": [
                    {
                      "id": "7cbce5c3-09b5-4693-9332-173bbde159d2",
                      "name": "Get toolkits",
                      "request": {
                        "name": "Get toolkits",
                        "description": {
                          "content": "Retrieves all toolkits for the authenticated partner app",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "toolkits"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "Limit",
                                "type": "text/plain"
                              },
                              "key": "limit",
                              "value": "50"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Offset",
                                "type": "text/plain"
                              },
                              "key": "offset",
                              "value": "0"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "43add6a9-c650-4259-8120-d59f8c0efe4a",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "toolkits"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"items\": [\n    {\n      \"auto_install_on_new_workspaces\": \"<boolean>\",\n      \"auto_propagate\": \"<boolean>\",\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"is_active\": \"<boolean>\",\n      \"manifest\": {\n        \"action_buttons\": [\n          {\n            \"id\": \"<string>\",\n            \"spec\": {\n              \"content_format\": \"markdown\",\n              \"delivery_mechanism\": \"redirect\",\n              \"name\": \"<string>\",\n              \"$id\": \"<string>\",\n              \"file_format\": \"<string>\",\n              \"icon_name\": \"<string>\",\n              \"integration_type\": \"<string>\",\n              \"is_default_for_next_step\": \"<boolean>\",\n              \"redirect_url\": \"<string>\",\n              \"requires_connected_integration\": \"<boolean>\",\n              \"sort_order\": \"<integer>\",\n              \"webhook_url\": \"<string>\"\n            }\n          },\n          {\n            \"id\": \"<string>\",\n            \"spec\": {\n              \"content_format\": \"html\",\n              \"delivery_mechanism\": \"os_email_client\",\n              \"name\": \"<string>\",\n              \"$id\": \"<string>\",\n              \"file_format\": \"<string>\",\n              \"icon_name\": \"<string>\",\n              \"integration_type\": \"<string>\",\n              \"is_default_for_next_step\": \"<boolean>\",\n              \"redirect_url\": \"<string>\",\n              \"requires_connected_integration\": \"<boolean>\",\n              \"sort_order\": \"<integer>\",\n              \"webhook_url\": \"<string>\"\n            }\n          }\n        ],\n        \"next_steps\": [\n          {\n            \"action_buttons\": [\n              {\n                \"action_button\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"sort_order\": \"<integer>\"\n              },\n              {\n                \"action_button\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"sort_order\": \"<integer>\"\n              }\n            ],\n            \"default_action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"id\": \"<string>\",\n            \"spec\": {\n              \"name\": \"<string>\",\n              \"type\": \"ai\",\n              \"$id\": \"<string>\",\n              \"ai_prompt\": \"<string>\",\n              \"color\": \"<string>\",\n              \"description\": \"<string>\",\n              \"icon_name\": \"<string>\",\n              \"redirect_url\": \"<string>\",\n              \"sort_order\": \"<integer>\"\n            }\n          },\n          {\n            \"action_buttons\": [\n              {\n                \"action_button\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"sort_order\": \"<integer>\"\n              },\n              {\n                \"action_button\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"sort_order\": \"<integer>\"\n              }\n            ],\n            \"default_action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"id\": \"<string>\",\n            \"spec\": {\n              \"name\": \"<string>\",\n              \"type\": \"redirect\",\n              \"$id\": \"<string>\",\n              \"ai_prompt\": \"<string>\",\n              \"color\": \"<string>\",\n              \"description\": \"<string>\",\n              \"icon_name\": \"<string>\",\n              \"redirect_url\": \"<string>\",\n              \"sort_order\": \"<integer>\"\n            }\n          }\n        ],\n        \"shortcuts\": [\n          {\n            \"id\": \"<string>\",\n            \"spec\": {\n              \"name\": \"<string>\",\n              \"prompt\": \"<string>\",\n              \"$id\": \"<string>\",\n              \"color\": \"<string>\",\n              \"description\": \"<string>\",\n              \"icon_name\": \"<string>\",\n              \"surfaces\": [\n                {\n                  \"position\": \"<integer>\",\n                  \"surface\": \"<string>\"\n                },\n                {\n                  \"position\": \"<integer>\",\n                  \"surface\": \"<string>\"\n                }\n              ]\n            }\n          },\n          {\n            \"id\": \"<string>\",\n            \"spec\": {\n              \"name\": \"<string>\",\n              \"prompt\": \"<string>\",\n              \"$id\": \"<string>\",\n              \"color\": \"<string>\",\n              \"description\": \"<string>\",\n              \"icon_name\": \"<string>\",\n              \"surfaces\": [\n                {\n                  \"position\": \"<integer>\",\n                  \"surface\": \"<string>\"\n                },\n                {\n                  \"position\": \"<integer>\",\n                  \"surface\": \"<string>\"\n                }\n              ]\n            }\n          }\n        ],\n        \"templates\": [\n          {\n            \"id\": \"<string>\",\n            \"next_steps\": [\n              {\n                \"next_step\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"autopilot\": \"<boolean>\",\n                \"sort_order\": \"<integer>\"\n              },\n              {\n                \"next_step\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"autopilot\": \"<boolean>\",\n                \"sort_order\": \"<integer>\"\n              }\n            ],\n            \"spec\": {\n              \"name\": \"<string>\",\n              \"$id\": \"<string>\",\n              \"agenda_items\": [\n                {\n                  \"item_type\": \"<string>\",\n                  \"title\": \"<string>\",\n                  \"content\": \"<string>\",\n                  \"description\": \"<string>\",\n                  \"restricted_to_leads\": \"<boolean>\",\n                  \"sequence\": \"<string>\",\n                  \"time_allocation_minutes\": \"<number>\"\n                },\n                {\n                  \"item_type\": \"<string>\",\n                  \"title\": \"<string>\",\n                  \"content\": \"<string>\",\n                  \"description\": \"<string>\",\n                  \"restricted_to_leads\": \"<boolean>\",\n                  \"sequence\": \"<string>\",\n                  \"time_allocation_minutes\": \"<number>\"\n                }\n              ],\n              \"backing_meeting_id\": \"<string>\",\n              \"description\": \"<string>\",\n              \"detail_level\": \"VERBATIM\",\n              \"meeting_duration_seconds\": \"<integer>\",\n              \"participants\": [\n                {\n                  \"email\": \"<string>\",\n                  \"name\": \"<string>\",\n                  \"role\": \"EDITOR\"\n                },\n                {\n                  \"email\": \"<string>\",\n                  \"name\": \"<string>\",\n                  \"role\": \"EDITOR\"\n                }\n              ],\n              \"start_time_offset_seconds\": \"<integer>\",\n              \"title\": \"<string>\"\n            }\n          },\n          {\n            \"id\": \"<string>\",\n            \"next_steps\": [\n              {\n                \"next_step\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"autopilot\": \"<boolean>\",\n                \"sort_order\": \"<integer>\"\n              },\n              {\n                \"next_step\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"autopilot\": \"<boolean>\",\n                \"sort_order\": \"<integer>\"\n              }\n            ],\n            \"spec\": {\n              \"name\": \"<string>\",\n              \"$id\": \"<string>\",\n              \"agenda_items\": [\n                {\n                  \"item_type\": \"<string>\",\n                  \"title\": \"<string>\",\n                  \"content\": \"<string>\",\n                  \"description\": \"<string>\",\n                  \"restricted_to_leads\": \"<boolean>\",\n                  \"sequence\": \"<string>\",\n                  \"time_allocation_minutes\": \"<number>\"\n                },\n                {\n                  \"item_type\": \"<string>\",\n                  \"title\": \"<string>\",\n                  \"content\": \"<string>\",\n                  \"description\": \"<string>\",\n                  \"restricted_to_leads\": \"<boolean>\",\n                  \"sequence\": \"<string>\",\n                  \"time_allocation_minutes\": \"<number>\"\n                }\n              ],\n              \"backing_meeting_id\": \"<string>\",\n              \"description\": \"<string>\",\n              \"detail_level\": \"VERBATIM\",\n              \"meeting_duration_seconds\": \"<integer>\",\n              \"participants\": [\n                {\n                  \"email\": \"<string>\",\n                  \"name\": \"<string>\",\n                  \"role\": \"EDITOR\"\n                },\n                {\n                  \"email\": \"<string>\",\n                  \"name\": \"<string>\",\n                  \"role\": \"VIEWER\"\n                }\n              ],\n              \"start_time_offset_seconds\": \"<integer>\",\n              \"title\": \"<string>\"\n            }\n          }\n        ],\n        \"toolkit_prompt\": \"<string>\"\n      },\n      \"name\": \"<string>\",\n      \"ownership_type\": \"<string>\",\n      \"partner_app_id\": \"<string>\",\n      \"slug\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"version\": \"<string>\"\n    },\n    {\n      \"auto_install_on_new_workspaces\": \"<boolean>\",\n      \"auto_propagate\": \"<boolean>\",\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"is_active\": \"<boolean>\",\n      \"manifest\": {\n        \"action_buttons\": [\n          {\n            \"id\": \"<string>\",\n            \"spec\": {\n              \"content_format\": \"markdown\",\n              \"delivery_mechanism\": \"clipboard\",\n              \"name\": \"<string>\",\n              \"$id\": \"<string>\",\n              \"file_format\": \"<string>\",\n              \"icon_name\": \"<string>\",\n              \"integration_type\": \"<string>\",\n              \"is_default_for_next_step\": \"<boolean>\",\n              \"redirect_url\": \"<string>\",\n              \"requires_connected_integration\": \"<boolean>\",\n              \"sort_order\": \"<integer>\",\n              \"webhook_url\": \"<string>\"\n            }\n          },\n          {\n            \"id\": \"<string>\",\n            \"spec\": {\n              \"content_format\": \"rich_text\",\n              \"delivery_mechanism\": \"email\",\n              \"name\": \"<string>\",\n              \"$id\": \"<string>\",\n              \"file_format\": \"<string>\",\n              \"icon_name\": \"<string>\",\n              \"integration_type\": \"<string>\",\n              \"is_default_for_next_step\": \"<boolean>\",\n              \"redirect_url\": \"<string>\",\n              \"requires_connected_integration\": \"<boolean>\",\n              \"sort_order\": \"<integer>\",\n              \"webhook_url\": \"<string>\"\n            }\n          }\n        ],\n        \"next_steps\": [\n          {\n            \"action_buttons\": [\n              {\n                \"action_button\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"sort_order\": \"<integer>\"\n              },\n              {\n                \"action_button\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"sort_order\": \"<integer>\"\n              }\n            ],\n            \"default_action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"id\": \"<string>\",\n            \"spec\": {\n              \"name\": \"<string>\",\n              \"type\": \"redirect\",\n              \"$id\": \"<string>\",\n              \"ai_prompt\": \"<string>\",\n              \"color\": \"<string>\",\n              \"description\": \"<string>\",\n              \"icon_name\": \"<string>\",\n              \"redirect_url\": \"<string>\",\n              \"sort_order\": \"<integer>\"\n            }\n          },\n          {\n            \"action_buttons\": [\n              {\n                \"action_button\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"sort_order\": \"<integer>\"\n              },\n              {\n                \"action_button\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"sort_order\": \"<integer>\"\n              }\n            ],\n            \"default_action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"id\": \"<string>\",\n            \"spec\": {\n              \"name\": \"<string>\",\n              \"type\": \"redirect\",\n              \"$id\": \"<string>\",\n              \"ai_prompt\": \"<string>\",\n              \"color\": \"<string>\",\n              \"description\": \"<string>\",\n              \"icon_name\": \"<string>\",\n              \"redirect_url\": \"<string>\",\n              \"sort_order\": \"<integer>\"\n            }\n          }\n        ],\n        \"shortcuts\": [\n          {\n            \"id\": \"<string>\",\n            \"spec\": {\n              \"name\": \"<string>\",\n              \"prompt\": \"<string>\",\n              \"$id\": \"<string>\",\n              \"color\": \"<string>\",\n              \"description\": \"<string>\",\n              \"icon_name\": \"<string>\",\n              \"surfaces\": [\n                {\n                  \"position\": \"<integer>\",\n                  \"surface\": \"<string>\"\n                },\n                {\n                  \"position\": \"<integer>\",\n                  \"surface\": \"<string>\"\n                }\n              ]\n            }\n          },\n          {\n            \"id\": \"<string>\",\n            \"spec\": {\n              \"name\": \"<string>\",\n              \"prompt\": \"<string>\",\n              \"$id\": \"<string>\",\n              \"color\": \"<string>\",\n              \"description\": \"<string>\",\n              \"icon_name\": \"<string>\",\n              \"surfaces\": [\n                {\n                  \"position\": \"<integer>\",\n                  \"surface\": \"<string>\"\n                },\n                {\n                  \"position\": \"<integer>\",\n                  \"surface\": \"<string>\"\n                }\n              ]\n            }\n          }\n        ],\n        \"templates\": [\n          {\n            \"id\": \"<string>\",\n            \"next_steps\": [\n              {\n                \"next_step\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"autopilot\": \"<boolean>\",\n                \"sort_order\": \"<integer>\"\n              },\n              {\n                \"next_step\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"autopilot\": \"<boolean>\",\n                \"sort_order\": \"<integer>\"\n              }\n            ],\n            \"spec\": {\n              \"name\": \"<string>\",\n              \"$id\": \"<string>\",\n              \"agenda_items\": [\n                {\n                  \"item_type\": \"<string>\",\n                  \"title\": \"<string>\",\n                  \"content\": \"<string>\",\n                  \"description\": \"<string>\",\n                  \"restricted_to_leads\": \"<boolean>\",\n                  \"sequence\": \"<string>\",\n                  \"time_allocation_minutes\": \"<number>\"\n                },\n                {\n                  \"item_type\": \"<string>\",\n                  \"title\": \"<string>\",\n                  \"content\": \"<string>\",\n                  \"description\": \"<string>\",\n                  \"restricted_to_leads\": \"<boolean>\",\n                  \"sequence\": \"<string>\",\n                  \"time_allocation_minutes\": \"<number>\"\n                }\n              ],\n              \"backing_meeting_id\": \"<string>\",\n              \"description\": \"<string>\",\n              \"detail_level\": \"VERBATIM\",\n              \"meeting_duration_seconds\": \"<integer>\",\n              \"participants\": [\n                {\n                  \"email\": \"<string>\",\n                  \"name\": \"<string>\",\n                  \"role\": \"EDITOR\"\n                },\n                {\n                  \"email\": \"<string>\",\n                  \"name\": \"<string>\",\n                  \"role\": \"EDITOR\"\n                }\n              ],\n              \"start_time_offset_seconds\": \"<integer>\",\n              \"title\": \"<string>\"\n            }\n          },\n          {\n            \"id\": \"<string>\",\n            \"next_steps\": [\n              {\n                \"next_step\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"autopilot\": \"<boolean>\",\n                \"sort_order\": \"<integer>\"\n              },\n              {\n                \"next_step\": {\n                  \"$id\": \"<string>\",\n                  \"$ref\": \"<string>\"\n                },\n                \"autopilot\": \"<boolean>\",\n                \"sort_order\": \"<integer>\"\n              }\n            ],\n            \"spec\": {\n              \"name\": \"<string>\",\n              \"$id\": \"<string>\",\n              \"agenda_items\": [\n                {\n                  \"item_type\": \"<string>\",\n                  \"title\": \"<string>\",\n                  \"content\": \"<string>\",\n                  \"description\": \"<string>\",\n                  \"restricted_to_leads\": \"<boolean>\",\n                  \"sequence\": \"<string>\",\n                  \"time_allocation_minutes\": \"<number>\"\n                },\n                {\n                  \"item_type\": \"<string>\",\n                  \"title\": \"<string>\",\n                  \"content\": \"<string>\",\n                  \"description\": \"<string>\",\n                  \"restricted_to_leads\": \"<boolean>\",\n                  \"sequence\": \"<string>\",\n                  \"time_allocation_minutes\": \"<number>\"\n                }\n              ],\n              \"backing_meeting_id\": \"<string>\",\n              \"description\": \"<string>\",\n              \"detail_level\": \"BULLET_POINTS\",\n              \"meeting_duration_seconds\": \"<integer>\",\n              \"participants\": [\n                {\n                  \"email\": \"<string>\",\n                  \"name\": \"<string>\",\n                  \"role\": \"VIEWER\"\n                },\n                {\n                  \"email\": \"<string>\",\n                  \"name\": \"<string>\",\n                  \"role\": \"EDITOR\"\n                }\n              ],\n              \"start_time_offset_seconds\": \"<integer>\",\n              \"title\": \"<string>\"\n            }\n          }\n        ],\n        \"toolkit_prompt\": \"<string>\"\n      },\n      \"name\": \"<string>\",\n      \"ownership_type\": \"<string>\",\n      \"partner_app_id\": \"<string>\",\n      \"slug\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"version\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "262ff275-c597-4cca-840e-7bfef1da27d9",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "toolkits"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "8e70ea1e-a2aa-4d3d-a02a-9eb0460d9e50",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "toolkits"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "id": "51311706-eec1-4118-9e40-d0f419c2b746",
                      "name": "Create a toolkit",
                      "request": {
                        "name": "Create a toolkit",
                        "description": {
                          "content": "Creates a new toolkit for the authenticated partner app. Set dry_run=true to validate without creating.",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "toolkits"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Content-Type",
                            "value": "application/json"
                          },
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "POST",
                        "body": {
                          "mode": "raw",
                          "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"clipboard\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"version\": \"<string>\",\n  \"description\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                          "options": {
                            "raw": {
                              "headerFamily": "json",
                              "language": "json"
                            }
                          }
                        }
                      },
                      "response": [
                        {
                          "id": "7c925957-52f1-4d8e-a585-07c63add1294",
                          "name": "Dry-run validation result",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "toolkits"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"clipboard\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"version\": \"<string>\",\n  \"description\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"conflicts\": [\n    {\n      \"conflict_type\": \"<string>\",\n      \"entity_name\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"existing_entity_id\": \"<string>\",\n      \"message\": \"<string>\",\n      \"resolution\": \"<string>\"\n    },\n    {\n      \"conflict_type\": \"<string>\",\n      \"entity_name\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"existing_entity_id\": \"<string>\",\n      \"message\": \"<string>\",\n      \"resolution\": \"<string>\"\n    }\n  ],\n  \"summary\": {\n    \"action_buttons\": \"<integer>\",\n    \"next_steps\": \"<integer>\",\n    \"shortcuts\": \"<integer>\",\n    \"templates\": \"<integer>\"\n  },\n  \"toolkit\": {\n    \"auto_install_on_new_workspaces\": \"<boolean>\",\n    \"auto_propagate\": \"<boolean>\",\n    \"created_at\": \"<string>\",\n    \"description\": \"<string>\",\n    \"id\": \"<string>\",\n    \"is_active\": \"<boolean>\",\n    \"manifest\": {\n      \"action_buttons\": [\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"content_format\": \"html\",\n            \"delivery_mechanism\": \"email\",\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"file_format\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"integration_type\": \"<string>\",\n            \"is_default_for_next_step\": \"<boolean>\",\n            \"redirect_url\": \"<string>\",\n            \"requires_connected_integration\": \"<boolean>\",\n            \"sort_order\": \"<integer>\",\n            \"webhook_url\": \"<string>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"content_format\": \"rich_text\",\n            \"delivery_mechanism\": \"email\",\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"file_format\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"integration_type\": \"<string>\",\n            \"is_default_for_next_step\": \"<boolean>\",\n            \"redirect_url\": \"<string>\",\n            \"requires_connected_integration\": \"<boolean>\",\n            \"sort_order\": \"<integer>\",\n            \"webhook_url\": \"<string>\"\n          }\n        }\n      ],\n      \"next_steps\": [\n        {\n          \"action_buttons\": [\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"default_action_button\": {\n            \"$id\": \"<string>\",\n            \"$ref\": \"<string>\"\n          },\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"type\": \"redirect\",\n            \"$id\": \"<string>\",\n            \"ai_prompt\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"redirect_url\": \"<string>\",\n            \"sort_order\": \"<integer>\"\n          }\n        },\n        {\n          \"action_buttons\": [\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"default_action_button\": {\n            \"$id\": \"<string>\",\n            \"$ref\": \"<string>\"\n          },\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"type\": \"redirect\",\n            \"$id\": \"<string>\",\n            \"ai_prompt\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"redirect_url\": \"<string>\",\n            \"sort_order\": \"<integer>\"\n          }\n        }\n      ],\n      \"shortcuts\": [\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"prompt\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"surfaces\": [\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              },\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              }\n            ]\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"prompt\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"surfaces\": [\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              },\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              }\n            ]\n          }\n        }\n      ],\n      \"templates\": [\n        {\n          \"id\": \"<string>\",\n          \"next_steps\": [\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"agenda_items\": [\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              },\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              }\n            ],\n            \"backing_meeting_id\": \"<string>\",\n            \"description\": \"<string>\",\n            \"detail_level\": \"BULLET_POINTS\",\n            \"meeting_duration_seconds\": \"<integer>\",\n            \"participants\": [\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"EDITOR\"\n              },\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"VIEWER\"\n              }\n            ],\n            \"start_time_offset_seconds\": \"<integer>\",\n            \"title\": \"<string>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"next_steps\": [\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"agenda_items\": [\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              },\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              }\n            ],\n            \"backing_meeting_id\": \"<string>\",\n            \"description\": \"<string>\",\n            \"detail_level\": \"BULLET_POINTS\",\n            \"meeting_duration_seconds\": \"<integer>\",\n            \"participants\": [\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"VIEWER\"\n              },\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"VIEWER\"\n              }\n            ],\n            \"start_time_offset_seconds\": \"<integer>\",\n            \"title\": \"<string>\"\n          }\n        }\n      ],\n      \"toolkit_prompt\": \"<string>\"\n    },\n    \"name\": \"<string>\",\n    \"ownership_type\": \"<string>\",\n    \"partner_app_id\": \"<string>\",\n    \"slug\": \"<string>\",\n    \"updated_at\": \"<string>\",\n    \"version\": \"<string>\"\n  },\n  \"validation\": {\n    \"errors\": [\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      },\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      }\n    ],\n    \"valid\": \"<boolean>\",\n    \"warnings\": [\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      },\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      }\n    ]\n  }\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "ab6d53a6-71fe-4bcf-ae44-66994bd668f1",
                          "name": "Toolkit created",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "toolkits"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"clipboard\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"version\": \"<string>\",\n  \"description\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Created",
                          "code": 201,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"conflicts\": [\n    {\n      \"conflict_type\": \"<string>\",\n      \"entity_name\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"existing_entity_id\": \"<string>\",\n      \"message\": \"<string>\",\n      \"resolution\": \"<string>\"\n    },\n    {\n      \"conflict_type\": \"<string>\",\n      \"entity_name\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"existing_entity_id\": \"<string>\",\n      \"message\": \"<string>\",\n      \"resolution\": \"<string>\"\n    }\n  ],\n  \"summary\": {\n    \"action_buttons\": \"<integer>\",\n    \"next_steps\": \"<integer>\",\n    \"shortcuts\": \"<integer>\",\n    \"templates\": \"<integer>\"\n  },\n  \"toolkit\": {\n    \"auto_install_on_new_workspaces\": \"<boolean>\",\n    \"auto_propagate\": \"<boolean>\",\n    \"created_at\": \"<string>\",\n    \"description\": \"<string>\",\n    \"id\": \"<string>\",\n    \"is_active\": \"<boolean>\",\n    \"manifest\": {\n      \"action_buttons\": [\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"content_format\": \"html\",\n            \"delivery_mechanism\": \"email\",\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"file_format\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"integration_type\": \"<string>\",\n            \"is_default_for_next_step\": \"<boolean>\",\n            \"redirect_url\": \"<string>\",\n            \"requires_connected_integration\": \"<boolean>\",\n            \"sort_order\": \"<integer>\",\n            \"webhook_url\": \"<string>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"content_format\": \"rich_text\",\n            \"delivery_mechanism\": \"email\",\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"file_format\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"integration_type\": \"<string>\",\n            \"is_default_for_next_step\": \"<boolean>\",\n            \"redirect_url\": \"<string>\",\n            \"requires_connected_integration\": \"<boolean>\",\n            \"sort_order\": \"<integer>\",\n            \"webhook_url\": \"<string>\"\n          }\n        }\n      ],\n      \"next_steps\": [\n        {\n          \"action_buttons\": [\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"default_action_button\": {\n            \"$id\": \"<string>\",\n            \"$ref\": \"<string>\"\n          },\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"type\": \"redirect\",\n            \"$id\": \"<string>\",\n            \"ai_prompt\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"redirect_url\": \"<string>\",\n            \"sort_order\": \"<integer>\"\n          }\n        },\n        {\n          \"action_buttons\": [\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"default_action_button\": {\n            \"$id\": \"<string>\",\n            \"$ref\": \"<string>\"\n          },\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"type\": \"redirect\",\n            \"$id\": \"<string>\",\n            \"ai_prompt\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"redirect_url\": \"<string>\",\n            \"sort_order\": \"<integer>\"\n          }\n        }\n      ],\n      \"shortcuts\": [\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"prompt\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"surfaces\": [\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              },\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              }\n            ]\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"prompt\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"surfaces\": [\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              },\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              }\n            ]\n          }\n        }\n      ],\n      \"templates\": [\n        {\n          \"id\": \"<string>\",\n          \"next_steps\": [\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"agenda_items\": [\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              },\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              }\n            ],\n            \"backing_meeting_id\": \"<string>\",\n            \"description\": \"<string>\",\n            \"detail_level\": \"BULLET_POINTS\",\n            \"meeting_duration_seconds\": \"<integer>\",\n            \"participants\": [\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"EDITOR\"\n              },\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"VIEWER\"\n              }\n            ],\n            \"start_time_offset_seconds\": \"<integer>\",\n            \"title\": \"<string>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"next_steps\": [\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"agenda_items\": [\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              },\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              }\n            ],\n            \"backing_meeting_id\": \"<string>\",\n            \"description\": \"<string>\",\n            \"detail_level\": \"BULLET_POINTS\",\n            \"meeting_duration_seconds\": \"<integer>\",\n            \"participants\": [\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"VIEWER\"\n              },\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"VIEWER\"\n              }\n            ],\n            \"start_time_offset_seconds\": \"<integer>\",\n            \"title\": \"<string>\"\n          }\n        }\n      ],\n      \"toolkit_prompt\": \"<string>\"\n    },\n    \"name\": \"<string>\",\n    \"ownership_type\": \"<string>\",\n    \"partner_app_id\": \"<string>\",\n    \"slug\": \"<string>\",\n    \"updated_at\": \"<string>\",\n    \"version\": \"<string>\"\n  },\n  \"validation\": {\n    \"errors\": [\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      },\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      }\n    ],\n    \"valid\": \"<boolean>\",\n    \"warnings\": [\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      },\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      }\n    ]\n  }\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "43415c5d-53a4-4750-af9b-3a40e766f0dc",
                          "name": "Invalid request body",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "toolkits"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"clipboard\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"version\": \"<string>\",\n  \"description\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "30f3c64e-5a9b-473a-b0dd-dc5a36af0378",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "toolkits"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"clipboard\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"version\": \"<string>\",\n  \"description\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "d793eba7-ae2a-4aa0-a7db-0c2521e04219",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "toolkits"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"clipboard\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"version\": \"<string>\",\n  \"description\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "{toolkitId}",
                      "description": "",
                      "item": [
                        {
                          "id": "66fa3f06-0053-46a4-9602-6b45215a2866",
                          "name": "Delete a toolkit",
                          "request": {
                            "name": "Delete a toolkit",
                            "description": {
                              "content": "Deletes a toolkit for the authenticated partner app",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "toolkits",
                                ":toolkitId"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "toolkitId",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Toolkit ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "*/*"
                              }
                            ],
                            "method": "DELETE",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "a70a9c8a-4e47-4223-9efb-2a7e109358e3",
                              "name": "Toolkit deleted",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "No Content",
                              "code": 204,
                              "header": [],
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "f50c38e3-9b69-47c2-8b01-9c73e98a4dc9",
                              "name": "Invalid toolkit ID",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "4a6151ee-55ef-4035-97d1-93f7be7ffacf",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "615927c1-2e53-4c86-901e-4f074da45486",
                              "name": "Toolkit not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "7b460baf-acc5-4a19-bfb1-6ec16dabc073",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "id": "2a4e5223-3b6b-462b-afe4-2692cc1e917c",
                          "name": "Get a toolkit",
                          "request": {
                            "name": "Get a toolkit",
                            "description": {
                              "content": "Retrieves a toolkit by ID for the authenticated partner app",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "toolkits",
                                ":toolkitId"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "toolkitId",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Toolkit ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "d4f5b07b-f3c8-45fb-9b4b-e256fdf1fde5",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"auto_install_on_new_workspaces\": \"<boolean>\",\n  \"auto_propagate\": \"<boolean>\",\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"markdown\",\n          \"delivery_mechanism\": \"email\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"ownership_type\": \"<string>\",\n  \"partner_app_id\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"version\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "39352183-74ce-4ab7-bed5-042955c8ab3f",
                              "name": "Invalid toolkit ID",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "9019e7dd-512d-42f1-80a2-9e51cba91291",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "c21b59ce-54a7-48fb-ba8f-8bf996ba91e3",
                              "name": "Toolkit not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "a349202e-6fb5-4cb2-913f-b69d15471c7e",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "id": "72aab15f-fa1d-4a2a-84a2-8d7864984370",
                          "name": "Update a toolkit",
                          "request": {
                            "name": "Update a toolkit",
                            "description": {
                              "content": "Updates an existing toolkit's metadata (name, description, is_active) and propagation\nsettings (auto_propagate, auto_install_on_new_workspaces) for the authenticated partner app.\nAll fields are optional; only fields explicitly supplied in the request body are updated\n(true PATCH semantics). The 'manifest' and 'version' fields are deprecated and no longer\naccepted; use the toolkit versioning API instead.",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "toolkits",
                                ":toolkitId"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "toolkitId",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Toolkit ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "PATCH",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"auto_install_on_new_workspaces\": \"<boolean>\",\n  \"auto_propagate\": \"<boolean>\",\n  \"description\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"markdown\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"version\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "response": [
                            {
                              "id": "54c52742-27d2-49dd-a5af-d5ad09c461cf",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PATCH",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"auto_install_on_new_workspaces\": \"<boolean>\",\n  \"auto_propagate\": \"<boolean>\",\n  \"description\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"markdown\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"version\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"auto_install_on_new_workspaces\": \"<boolean>\",\n  \"auto_propagate\": \"<boolean>\",\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"markdown\",\n          \"delivery_mechanism\": \"email\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"ownership_type\": \"<string>\",\n  \"partner_app_id\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"version\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "3e396036-fdc2-402b-a44b-a0e39ef6f27c",
                              "name": "Invalid request",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PATCH",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"auto_install_on_new_workspaces\": \"<boolean>\",\n  \"auto_propagate\": \"<boolean>\",\n  \"description\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"markdown\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"version\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "61c36549-92cf-44bb-9c3e-80239232fb1c",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PATCH",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"auto_install_on_new_workspaces\": \"<boolean>\",\n  \"auto_propagate\": \"<boolean>\",\n  \"description\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"markdown\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"version\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "528029d5-6f62-486c-bf1e-695d4c9e0509",
                              "name": "Toolkit not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PATCH",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"auto_install_on_new_workspaces\": \"<boolean>\",\n  \"auto_propagate\": \"<boolean>\",\n  \"description\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"markdown\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"version\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "21cf9bb2-46bd-4eb4-a55d-8f1669ecc8ed",
                              "name": "Deprecated fields provided — use the versioning API",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PATCH",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"auto_install_on_new_workspaces\": \"<boolean>\",\n  \"auto_propagate\": \"<boolean>\",\n  \"description\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"markdown\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"version\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Conflict",
                              "code": 409,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"conflict\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "c926d5d7-ac57-4b56-b6b6-159922e94307",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "PATCH",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"auto_install_on_new_workspaces\": \"<boolean>\",\n  \"auto_propagate\": \"<boolean>\",\n  \"description\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"markdown\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"name\": \"<string>\",\n  \"version\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "name": "export",
                          "description": "",
                          "item": [
                            {
                              "id": "6226cb52-b6cb-4f9a-b264-8c6048081108",
                              "name": "Export a toolkit as a portable manifest",
                              "request": {
                                "name": "Export a toolkit as a portable manifest",
                                "description": {
                                  "content": "Resolves an existing toolkit's manifest into a portable format with $id/$ref identifiers.",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId",
                                    "export"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<uuid>",
                                      "key": "toolkitId",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Toolkit ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "9bee78e9-86cc-4f29-9ef3-f61c9cef5e77",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "export"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"clipboard\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"metadata\": {\n    \"description\": \"<string>\",\n    \"name\": \"<string>\",\n    \"slug\": \"<string>\",\n    \"version\": \"<string>\"\n  },\n  \"summary\": {\n    \"action_buttons\": \"<integer>\",\n    \"next_steps\": \"<integer>\",\n    \"shortcuts\": \"<integer>\",\n    \"templates\": \"<integer>\"\n  },\n  \"warnings\": [\n    {\n      \"code\": \"<string>\",\n      \"entity_name\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"message\": \"<string>\"\n    },\n    {\n      \"code\": \"<string>\",\n      \"entity_name\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"message\": \"<string>\"\n    }\n  ]\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "4a523899-3760-4808-aaf9-14d51de0966d",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "export"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "9011f9db-9989-439a-97a8-27e1555d3402",
                                  "name": "Toolkit not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "export"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "f7988a6d-6b09-43b6-a8b4-b437e0ba9374",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "export"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            }
                          ]
                        },
                        {
                          "name": "installations",
                          "description": "",
                          "item": [
                            {
                              "id": "5f977e68-5d51-43bd-9e85-c0b3f95b4ab7",
                              "name": "List toolkit installations",
                              "request": {
                                "name": "List toolkit installations",
                                "description": {
                                  "content": "Lists all installations of a toolkit owned by the authenticated partner app, including active and opted-out installations across the partner's connected workspaces. The response includes per-workspace installation details, summary counts (active, opted_out, never_installed), and the partner's total connected workspace count, supporting partner visibility into their toolkit's distribution footprint.",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId",
                                    "installations"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Maximum number of items to return (default 50, max 100)",
                                        "type": "text/plain"
                                      },
                                      "key": "limit",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Number of items to skip from the beginning (default 0)",
                                        "type": "text/plain"
                                      },
                                      "key": "offset",
                                      "value": "<integer>"
                                    }
                                  ],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<string>",
                                      "key": "toolkitId",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Toolkit ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "6b167f80-d01d-4f1d-b285-1fe662888bba",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "installations"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Maximum number of items to return (default 50, max 100)",
                                            "type": "text/plain"
                                          },
                                          "key": "limit",
                                          "value": "<integer>"
                                        },
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Number of items to skip from the beginning (default 0)",
                                            "type": "text/plain"
                                          },
                                          "key": "offset",
                                          "value": "<integer>"
                                        }
                                      ],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"items\": [\n    {\n      \"installed_at\": \"<string>\",\n      \"status\": \"opted_out\",\n      \"uninstalled_at\": \"<string>\",\n      \"version_label\": \"<string>\",\n      \"workspace_id\": \"<string>\",\n      \"workspace_name\": \"<string>\"\n    },\n    {\n      \"installed_at\": \"<string>\",\n      \"status\": \"opted_out\",\n      \"uninstalled_at\": \"<string>\",\n      \"version_label\": \"<string>\",\n      \"workspace_id\": \"<string>\",\n      \"workspace_name\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"summary\": {\n    \"active\": \"<integer>\",\n    \"never_installed\": \"<integer>\",\n    \"opted_out\": \"<integer>\"\n  },\n  \"total_connected_workspaces\": \"<integer>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "99829729-8198-4227-8ec6-c32720a8e5c9",
                                  "name": "Invalid request parameters",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "installations"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Maximum number of items to return (default 50, max 100)",
                                            "type": "text/plain"
                                          },
                                          "key": "limit",
                                          "value": "<integer>"
                                        },
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Number of items to skip from the beginning (default 0)",
                                            "type": "text/plain"
                                          },
                                          "key": "offset",
                                          "value": "<integer>"
                                        }
                                      ],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "2e89d566-095d-4367-967b-a35b525e5651",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "installations"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Maximum number of items to return (default 50, max 100)",
                                            "type": "text/plain"
                                          },
                                          "key": "limit",
                                          "value": "<integer>"
                                        },
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Number of items to skip from the beginning (default 0)",
                                            "type": "text/plain"
                                          },
                                          "key": "offset",
                                          "value": "<integer>"
                                        }
                                      ],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "9fb3bbb2-5202-496d-9ae0-df1144af2e4c",
                                  "name": "Toolkit not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "installations"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Maximum number of items to return (default 50, max 100)",
                                            "type": "text/plain"
                                          },
                                          "key": "limit",
                                          "value": "<integer>"
                                        },
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Number of items to skip from the beginning (default 0)",
                                            "type": "text/plain"
                                          },
                                          "key": "offset",
                                          "value": "<integer>"
                                        }
                                      ],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "e0dee2a7-682b-4579-b45b-0ff7e70c2ef0",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "installations"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Maximum number of items to return (default 50, max 100)",
                                            "type": "text/plain"
                                          },
                                          "key": "limit",
                                          "value": "<integer>"
                                        },
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Number of items to skip from the beginning (default 0)",
                                            "type": "text/plain"
                                          },
                                          "key": "offset",
                                          "value": "<integer>"
                                        }
                                      ],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            }
                          ]
                        },
                        {
                          "name": "versions",
                          "description": "",
                          "item": [
                            {
                              "id": "d68096b3-36fd-4f7a-86ca-466f350c5654",
                              "name": "List toolkit versions",
                              "request": {
                                "name": "List toolkit versions",
                                "description": {
                                  "content": "Lists all versions for a toolkit owned by the authenticated partner app",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId",
                                    "versions"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<string>",
                                      "key": "toolkitId",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Toolkit ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "2dccbc8a-eceb-4021-897d-533fd3901bde",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "[\n  {\n    \"changelog\": \"<string>\",\n    \"created_at\": \"<string>\",\n    \"created_by\": \"<string>\",\n    \"deprecated_at\": \"<string>\",\n    \"id\": \"<string>\",\n    \"manifest\": {\n      \"action_buttons\": [\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"content_format\": \"html\",\n            \"delivery_mechanism\": \"redirect\",\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"file_format\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"integration_type\": \"<string>\",\n            \"is_default_for_next_step\": \"<boolean>\",\n            \"redirect_url\": \"<string>\",\n            \"requires_connected_integration\": \"<boolean>\",\n            \"sort_order\": \"<integer>\",\n            \"webhook_url\": \"<string>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"content_format\": \"html\",\n            \"delivery_mechanism\": \"file_download\",\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"file_format\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"integration_type\": \"<string>\",\n            \"is_default_for_next_step\": \"<boolean>\",\n            \"redirect_url\": \"<string>\",\n            \"requires_connected_integration\": \"<boolean>\",\n            \"sort_order\": \"<integer>\",\n            \"webhook_url\": \"<string>\"\n          }\n        }\n      ],\n      \"next_steps\": [\n        {\n          \"action_buttons\": [\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"default_action_button\": {\n            \"$id\": \"<string>\",\n            \"$ref\": \"<string>\"\n          },\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"type\": \"redirect\",\n            \"$id\": \"<string>\",\n            \"ai_prompt\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"redirect_url\": \"<string>\",\n            \"sort_order\": \"<integer>\"\n          }\n        },\n        {\n          \"action_buttons\": [\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"default_action_button\": {\n            \"$id\": \"<string>\",\n            \"$ref\": \"<string>\"\n          },\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"type\": \"redirect\",\n            \"$id\": \"<string>\",\n            \"ai_prompt\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"redirect_url\": \"<string>\",\n            \"sort_order\": \"<integer>\"\n          }\n        }\n      ],\n      \"shortcuts\": [\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"prompt\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"surfaces\": [\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              },\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              }\n            ]\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"prompt\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"surfaces\": [\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              },\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              }\n            ]\n          }\n        }\n      ],\n      \"templates\": [\n        {\n          \"id\": \"<string>\",\n          \"next_steps\": [\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"agenda_items\": [\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              },\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              }\n            ],\n            \"backing_meeting_id\": \"<string>\",\n            \"description\": \"<string>\",\n            \"detail_level\": \"VERBATIM\",\n            \"meeting_duration_seconds\": \"<integer>\",\n            \"participants\": [\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"VIEWER\"\n              },\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"EDITOR\"\n              }\n            ],\n            \"start_time_offset_seconds\": \"<integer>\",\n            \"title\": \"<string>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"next_steps\": [\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"agenda_items\": [\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              },\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              }\n            ],\n            \"backing_meeting_id\": \"<string>\",\n            \"description\": \"<string>\",\n            \"detail_level\": \"VERBATIM\",\n            \"meeting_duration_seconds\": \"<integer>\",\n            \"participants\": [\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"EDITOR\"\n              },\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"VIEWER\"\n              }\n            ],\n            \"start_time_offset_seconds\": \"<integer>\",\n            \"title\": \"<string>\"\n          }\n        }\n      ],\n      \"toolkit_prompt\": \"<string>\"\n    },\n    \"published_at\": \"<string>\",\n    \"status\": \"<string>\",\n    \"toolkit_id\": \"<string>\",\n    \"updated_at\": \"<string>\",\n    \"version_label\": \"<string>\",\n    \"version_number\": \"<integer>\"\n  },\n  {\n    \"changelog\": \"<string>\",\n    \"created_at\": \"<string>\",\n    \"created_by\": \"<string>\",\n    \"deprecated_at\": \"<string>\",\n    \"id\": \"<string>\",\n    \"manifest\": {\n      \"action_buttons\": [\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"content_format\": \"rich_text\",\n            \"delivery_mechanism\": \"os_email_client\",\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"file_format\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"integration_type\": \"<string>\",\n            \"is_default_for_next_step\": \"<boolean>\",\n            \"redirect_url\": \"<string>\",\n            \"requires_connected_integration\": \"<boolean>\",\n            \"sort_order\": \"<integer>\",\n            \"webhook_url\": \"<string>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"content_format\": \"plain_text\",\n            \"delivery_mechanism\": \"clipboard\",\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"file_format\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"integration_type\": \"<string>\",\n            \"is_default_for_next_step\": \"<boolean>\",\n            \"redirect_url\": \"<string>\",\n            \"requires_connected_integration\": \"<boolean>\",\n            \"sort_order\": \"<integer>\",\n            \"webhook_url\": \"<string>\"\n          }\n        }\n      ],\n      \"next_steps\": [\n        {\n          \"action_buttons\": [\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"default_action_button\": {\n            \"$id\": \"<string>\",\n            \"$ref\": \"<string>\"\n          },\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"type\": \"ai\",\n            \"$id\": \"<string>\",\n            \"ai_prompt\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"redirect_url\": \"<string>\",\n            \"sort_order\": \"<integer>\"\n          }\n        },\n        {\n          \"action_buttons\": [\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"default_action_button\": {\n            \"$id\": \"<string>\",\n            \"$ref\": \"<string>\"\n          },\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"type\": \"redirect\",\n            \"$id\": \"<string>\",\n            \"ai_prompt\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"redirect_url\": \"<string>\",\n            \"sort_order\": \"<integer>\"\n          }\n        }\n      ],\n      \"shortcuts\": [\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"prompt\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"surfaces\": [\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              },\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              }\n            ]\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"prompt\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"surfaces\": [\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              },\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              }\n            ]\n          }\n        }\n      ],\n      \"templates\": [\n        {\n          \"id\": \"<string>\",\n          \"next_steps\": [\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"agenda_items\": [\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              },\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              }\n            ],\n            \"backing_meeting_id\": \"<string>\",\n            \"description\": \"<string>\",\n            \"detail_level\": \"STANDARD\",\n            \"meeting_duration_seconds\": \"<integer>\",\n            \"participants\": [\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"EDITOR\"\n              },\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"EDITOR\"\n              }\n            ],\n            \"start_time_offset_seconds\": \"<integer>\",\n            \"title\": \"<string>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"next_steps\": [\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"agenda_items\": [\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              },\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              }\n            ],\n            \"backing_meeting_id\": \"<string>\",\n            \"description\": \"<string>\",\n            \"detail_level\": \"STANDARD\",\n            \"meeting_duration_seconds\": \"<integer>\",\n            \"participants\": [\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"EDITOR\"\n              },\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"EDITOR\"\n              }\n            ],\n            \"start_time_offset_seconds\": \"<integer>\",\n            \"title\": \"<string>\"\n          }\n        }\n      ],\n      \"toolkit_prompt\": \"<string>\"\n    },\n    \"published_at\": \"<string>\",\n    \"status\": \"<string>\",\n    \"toolkit_id\": \"<string>\",\n    \"updated_at\": \"<string>\",\n    \"version_label\": \"<string>\",\n    \"version_number\": \"<integer>\"\n  }\n]",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "85de58b9-98e6-4826-ae1c-78e9cf66e54b",
                                  "name": "Invalid toolkit ID",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "511fee9e-72b4-46ac-95fd-68a7607ce7a9",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "31c8fc8d-20ae-45f4-8411-16bd5d6f84aa",
                                  "name": "Toolkit not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "ce0dea39-d38d-4831-b767-d769883d2d13",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "id": "97fc1d88-2371-488a-8467-e7a966b2dd49",
                              "name": "Create a toolkit version",
                              "request": {
                                "name": "Create a toolkit version",
                                "description": {
                                  "content": "Creates a new draft version for a toolkit owned by the authenticated partner app. Set dry_run=true to validate without creating.",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    ":toolkitId",
                                    "versions"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<string>",
                                      "key": "toolkitId",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Toolkit ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"email\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\",\n  \"changelog\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "response": [
                                {
                                  "id": "eeeef77a-9fad-4ef3-95ab-50b8aad4dc30",
                                  "name": "Dry-run validation result",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"email\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\",\n  \"changelog\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"conflicts\": [\n    {\n      \"conflict_type\": \"<string>\",\n      \"entity_name\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"existing_entity_id\": \"<string>\",\n      \"message\": \"<string>\",\n      \"resolution\": \"<string>\"\n    },\n    {\n      \"conflict_type\": \"<string>\",\n      \"entity_name\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"existing_entity_id\": \"<string>\",\n      \"message\": \"<string>\",\n      \"resolution\": \"<string>\"\n    }\n  ],\n  \"summary\": {\n    \"action_buttons\": \"<integer>\",\n    \"next_steps\": \"<integer>\",\n    \"shortcuts\": \"<integer>\",\n    \"templates\": \"<integer>\"\n  },\n  \"validation\": {\n    \"errors\": [\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      },\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      }\n    ],\n    \"valid\": \"<boolean>\",\n    \"warnings\": [\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      },\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      }\n    ]\n  },\n  \"version\": {\n    \"changelog\": \"<string>\",\n    \"created_at\": \"<string>\",\n    \"created_by\": \"<string>\",\n    \"deprecated_at\": \"<string>\",\n    \"id\": \"<string>\",\n    \"manifest\": {\n      \"action_buttons\": [\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"content_format\": \"plain_text\",\n            \"delivery_mechanism\": \"integration\",\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"file_format\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"integration_type\": \"<string>\",\n            \"is_default_for_next_step\": \"<boolean>\",\n            \"redirect_url\": \"<string>\",\n            \"requires_connected_integration\": \"<boolean>\",\n            \"sort_order\": \"<integer>\",\n            \"webhook_url\": \"<string>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"content_format\": \"plain_text\",\n            \"delivery_mechanism\": \"integration\",\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"file_format\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"integration_type\": \"<string>\",\n            \"is_default_for_next_step\": \"<boolean>\",\n            \"redirect_url\": \"<string>\",\n            \"requires_connected_integration\": \"<boolean>\",\n            \"sort_order\": \"<integer>\",\n            \"webhook_url\": \"<string>\"\n          }\n        }\n      ],\n      \"next_steps\": [\n        {\n          \"action_buttons\": [\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"default_action_button\": {\n            \"$id\": \"<string>\",\n            \"$ref\": \"<string>\"\n          },\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"type\": \"redirect\",\n            \"$id\": \"<string>\",\n            \"ai_prompt\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"redirect_url\": \"<string>\",\n            \"sort_order\": \"<integer>\"\n          }\n        },\n        {\n          \"action_buttons\": [\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"default_action_button\": {\n            \"$id\": \"<string>\",\n            \"$ref\": \"<string>\"\n          },\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"type\": \"redirect\",\n            \"$id\": \"<string>\",\n            \"ai_prompt\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"redirect_url\": \"<string>\",\n            \"sort_order\": \"<integer>\"\n          }\n        }\n      ],\n      \"shortcuts\": [\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"prompt\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"surfaces\": [\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              },\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              }\n            ]\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"prompt\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"surfaces\": [\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              },\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              }\n            ]\n          }\n        }\n      ],\n      \"templates\": [\n        {\n          \"id\": \"<string>\",\n          \"next_steps\": [\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"agenda_items\": [\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              },\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              }\n            ],\n            \"backing_meeting_id\": \"<string>\",\n            \"description\": \"<string>\",\n            \"detail_level\": \"STANDARD\",\n            \"meeting_duration_seconds\": \"<integer>\",\n            \"participants\": [\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"EDITOR\"\n              },\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"VIEWER\"\n              }\n            ],\n            \"start_time_offset_seconds\": \"<integer>\",\n            \"title\": \"<string>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"next_steps\": [\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"agenda_items\": [\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              },\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              }\n            ],\n            \"backing_meeting_id\": \"<string>\",\n            \"description\": \"<string>\",\n            \"detail_level\": \"VERBATIM\",\n            \"meeting_duration_seconds\": \"<integer>\",\n            \"participants\": [\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"EDITOR\"\n              },\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"VIEWER\"\n              }\n            ],\n            \"start_time_offset_seconds\": \"<integer>\",\n            \"title\": \"<string>\"\n          }\n        }\n      ],\n      \"toolkit_prompt\": \"<string>\"\n    },\n    \"published_at\": \"<string>\",\n    \"status\": \"<string>\",\n    \"toolkit_id\": \"<string>\",\n    \"updated_at\": \"<string>\",\n    \"version_label\": \"<string>\",\n    \"version_number\": \"<integer>\"\n  }\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "5ce8139f-3381-428b-9b8f-b721bb1c1043",
                                  "name": "Version created",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"email\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\",\n  \"changelog\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Created",
                                  "code": 201,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"conflicts\": [\n    {\n      \"conflict_type\": \"<string>\",\n      \"entity_name\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"existing_entity_id\": \"<string>\",\n      \"message\": \"<string>\",\n      \"resolution\": \"<string>\"\n    },\n    {\n      \"conflict_type\": \"<string>\",\n      \"entity_name\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"existing_entity_id\": \"<string>\",\n      \"message\": \"<string>\",\n      \"resolution\": \"<string>\"\n    }\n  ],\n  \"summary\": {\n    \"action_buttons\": \"<integer>\",\n    \"next_steps\": \"<integer>\",\n    \"shortcuts\": \"<integer>\",\n    \"templates\": \"<integer>\"\n  },\n  \"validation\": {\n    \"errors\": [\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      },\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      }\n    ],\n    \"valid\": \"<boolean>\",\n    \"warnings\": [\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      },\n      {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\",\n        \"path\": \"<string>\"\n      }\n    ]\n  },\n  \"version\": {\n    \"changelog\": \"<string>\",\n    \"created_at\": \"<string>\",\n    \"created_by\": \"<string>\",\n    \"deprecated_at\": \"<string>\",\n    \"id\": \"<string>\",\n    \"manifest\": {\n      \"action_buttons\": [\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"content_format\": \"plain_text\",\n            \"delivery_mechanism\": \"integration\",\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"file_format\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"integration_type\": \"<string>\",\n            \"is_default_for_next_step\": \"<boolean>\",\n            \"redirect_url\": \"<string>\",\n            \"requires_connected_integration\": \"<boolean>\",\n            \"sort_order\": \"<integer>\",\n            \"webhook_url\": \"<string>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"content_format\": \"plain_text\",\n            \"delivery_mechanism\": \"integration\",\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"file_format\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"integration_type\": \"<string>\",\n            \"is_default_for_next_step\": \"<boolean>\",\n            \"redirect_url\": \"<string>\",\n            \"requires_connected_integration\": \"<boolean>\",\n            \"sort_order\": \"<integer>\",\n            \"webhook_url\": \"<string>\"\n          }\n        }\n      ],\n      \"next_steps\": [\n        {\n          \"action_buttons\": [\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"default_action_button\": {\n            \"$id\": \"<string>\",\n            \"$ref\": \"<string>\"\n          },\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"type\": \"redirect\",\n            \"$id\": \"<string>\",\n            \"ai_prompt\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"redirect_url\": \"<string>\",\n            \"sort_order\": \"<integer>\"\n          }\n        },\n        {\n          \"action_buttons\": [\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"action_button\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"default_action_button\": {\n            \"$id\": \"<string>\",\n            \"$ref\": \"<string>\"\n          },\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"type\": \"redirect\",\n            \"$id\": \"<string>\",\n            \"ai_prompt\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"redirect_url\": \"<string>\",\n            \"sort_order\": \"<integer>\"\n          }\n        }\n      ],\n      \"shortcuts\": [\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"prompt\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"surfaces\": [\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              },\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              }\n            ]\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"prompt\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"color\": \"<string>\",\n            \"description\": \"<string>\",\n            \"icon_name\": \"<string>\",\n            \"surfaces\": [\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              },\n              {\n                \"position\": \"<integer>\",\n                \"surface\": \"<string>\"\n              }\n            ]\n          }\n        }\n      ],\n      \"templates\": [\n        {\n          \"id\": \"<string>\",\n          \"next_steps\": [\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"agenda_items\": [\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              },\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              }\n            ],\n            \"backing_meeting_id\": \"<string>\",\n            \"description\": \"<string>\",\n            \"detail_level\": \"STANDARD\",\n            \"meeting_duration_seconds\": \"<integer>\",\n            \"participants\": [\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"EDITOR\"\n              },\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"VIEWER\"\n              }\n            ],\n            \"start_time_offset_seconds\": \"<integer>\",\n            \"title\": \"<string>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"next_steps\": [\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            },\n            {\n              \"next_step\": {\n                \"$id\": \"<string>\",\n                \"$ref\": \"<string>\"\n              },\n              \"autopilot\": \"<boolean>\",\n              \"sort_order\": \"<integer>\"\n            }\n          ],\n          \"spec\": {\n            \"name\": \"<string>\",\n            \"$id\": \"<string>\",\n            \"agenda_items\": [\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              },\n              {\n                \"item_type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"content\": \"<string>\",\n                \"description\": \"<string>\",\n                \"restricted_to_leads\": \"<boolean>\",\n                \"sequence\": \"<string>\",\n                \"time_allocation_minutes\": \"<number>\"\n              }\n            ],\n            \"backing_meeting_id\": \"<string>\",\n            \"description\": \"<string>\",\n            \"detail_level\": \"VERBATIM\",\n            \"meeting_duration_seconds\": \"<integer>\",\n            \"participants\": [\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"EDITOR\"\n              },\n              {\n                \"email\": \"<string>\",\n                \"name\": \"<string>\",\n                \"role\": \"VIEWER\"\n              }\n            ],\n            \"start_time_offset_seconds\": \"<integer>\",\n            \"title\": \"<string>\"\n          }\n        }\n      ],\n      \"toolkit_prompt\": \"<string>\"\n    },\n    \"published_at\": \"<string>\",\n    \"status\": \"<string>\",\n    \"toolkit_id\": \"<string>\",\n    \"updated_at\": \"<string>\",\n    \"version_label\": \"<string>\",\n    \"version_number\": \"<integer>\"\n  }\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "87f3140f-723a-445a-8dda-42150a50b9d7",
                                  "name": "Invalid request body",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"email\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\",\n  \"changelog\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "ef46640a-e211-4340-b6a4-f9c54560f684",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"email\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\",\n  \"changelog\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "58a35869-1e93-4a09-83d6-27d7b097dfcf",
                                  "name": "Toolkit not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"email\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\",\n  \"changelog\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "8cfa5747-616b-4c67-9d28-404f55296a25",
                                  "name": "Draft version already exists",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"email\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\",\n  \"changelog\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Conflict",
                                  "code": 409,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"conflict\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "6f48f1e8-5e14-4626-bfcf-555dbedbe401",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"redirect\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"email\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\",\n  \"changelog\": \"<string>\",\n  \"dry_run\": \"<boolean>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "name": "{versionId}",
                              "description": "",
                              "item": [
                                {
                                  "id": "1ff8838a-7698-4dad-ad10-3c707b36afc9",
                                  "name": "Discard a draft toolkit version",
                                  "request": {
                                    "name": "Discard a draft toolkit version",
                                    "description": {
                                      "content": "Permanently deletes a draft version. Only draft versions can be discarded.",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions",
                                        ":versionId"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<string>",
                                          "key": "toolkitId",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Toolkit ID",
                                            "type": "text/plain"
                                          }
                                        },
                                        {
                                          "type": "any",
                                          "value": "<string>",
                                          "key": "versionId",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Version ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "*/*"
                                      }
                                    ],
                                    "method": "DELETE",
                                    "body": {}
                                  },
                                  "response": [
                                    {
                                      "id": "67e75956-104c-4417-a7b3-b59ef13200d9",
                                      "name": "Version discarded",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "No Content",
                                      "code": 204,
                                      "header": [],
                                      "cookie": [],
                                      "_postman_previewlanguage": "text"
                                    },
                                    {
                                      "id": "8b4c7ae3-06d0-480a-b35a-f54e87867e32",
                                      "name": "Version is not in draft status",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "*/*"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "*/*"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "text"
                                    },
                                    {
                                      "id": "02c926e9-1c8a-4be9-bd04-5529f40fd82a",
                                      "name": "Authentication required",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "*/*"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "*/*"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "text"
                                    },
                                    {
                                      "id": "76da4814-8f1b-42e3-a16c-067260d25951",
                                      "name": "Version not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "*/*"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "*/*"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "text"
                                    },
                                    {
                                      "id": "7777378e-750f-4d44-9b6e-3fb96911eba5",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "*/*"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "*/*"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "text"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                },
                                {
                                  "id": "a391bb90-a1ed-48ac-b2cb-ca947d0c1e64",
                                  "name": "Get a toolkit version",
                                  "request": {
                                    "name": "Get a toolkit version",
                                    "description": {
                                      "content": "Retrieves a specific version for a toolkit owned by the authenticated partner app",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions",
                                        ":versionId"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<string>",
                                          "key": "toolkitId",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Toolkit ID",
                                            "type": "text/plain"
                                          }
                                        },
                                        {
                                          "type": "any",
                                          "value": "<string>",
                                          "key": "versionId",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Version ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "response": [
                                    {
                                      "id": "315eaa8c-6383-47da-9ff2-3654537a9d74",
                                      "name": "OK",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "OK",
                                      "code": 200,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"changelog\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"created_by\": \"<string>\",\n  \"deprecated_at\": \"<string>\",\n  \"id\": \"<string>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"email\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"os_email_client\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"published_at\": \"<string>\",\n  \"status\": \"<string>\",\n  \"toolkit_id\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"version_label\": \"<string>\",\n  \"version_number\": \"<integer>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "54c1466d-f15d-4f44-864c-bc7d2c3dc40d",
                                      "name": "Invalid parameters",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "a1347143-c05f-421c-a2e1-fba6b22a2f1d",
                                      "name": "Authentication required",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "b2a265e2-6dcb-42c0-a450-aed02e6d01d2",
                                      "name": "Version not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "1f8b573d-ef82-490e-bc7f-7916252108b8",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                },
                                {
                                  "id": "5b8a3a7d-957a-41bb-a37f-eb05043110bf",
                                  "name": "Update a draft toolkit version",
                                  "request": {
                                    "name": "Update a draft toolkit version",
                                    "description": {
                                      "content": "Updates the manifest, label, or changelog of a draft version",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "toolkits",
                                        ":toolkitId",
                                        "versions",
                                        ":versionId"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<string>",
                                          "key": "toolkitId",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Toolkit ID",
                                            "type": "text/plain"
                                          }
                                        },
                                        {
                                          "type": "any",
                                          "value": "<string>",
                                          "key": "versionId",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Version ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "PATCH",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"changelog\": \"<string>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"os_email_client\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"file_download\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "response": [
                                    {
                                      "id": "039755b4-7984-4b87-9b35-264cd3f01db8",
                                      "name": "OK",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "PATCH",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"changelog\": \"<string>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"os_email_client\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"file_download\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "OK",
                                      "code": 200,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"changelog\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"created_by\": \"<string>\",\n  \"deprecated_at\": \"<string>\",\n  \"id\": \"<string>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"email\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"os_email_client\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"published_at\": \"<string>\",\n  \"status\": \"<string>\",\n  \"toolkit_id\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"version_label\": \"<string>\",\n  \"version_number\": \"<integer>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "908830a4-834f-4dcd-a5e3-90614ebfe1bf",
                                      "name": "Invalid request",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "PATCH",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"changelog\": \"<string>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"os_email_client\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"file_download\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "584af1ac-0bf9-4edb-8f32-a0a3112dc57f",
                                      "name": "Authentication required",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "PATCH",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"changelog\": \"<string>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"os_email_client\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"file_download\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "eb8976f0-392c-4a86-be73-437d7e0424ba",
                                      "name": "Version not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "PATCH",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"changelog\": \"<string>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"os_email_client\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"file_download\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "82c8cd91-ee49-4cde-956f-e8feccea8ba1",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: apikey",
                                              "type": "text/plain"
                                            },
                                            "key": "X-API-Key",
                                            "value": "<API Key>"
                                          }
                                        ],
                                        "method": "PATCH",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"changelog\": \"<string>\",\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"os_email_client\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"rich_text\",\n          \"delivery_mechanism\": \"file_download\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"ai\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"VERBATIM\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"version_label\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                },
                                {
                                  "name": "publish",
                                  "description": "",
                                  "item": [
                                    {
                                      "id": "5b6af328-e9ee-4c33-a1f4-e3972518e504",
                                      "name": "Publish a toolkit version",
                                      "request": {
                                        "name": "Publish a toolkit version",
                                        "description": {
                                          "content": "Transitions a draft version to PUBLISHED status. Deprecates any previously published version.",
                                          "type": "text/plain"
                                        },
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId",
                                            "publish"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": [
                                            {
                                              "type": "any",
                                              "value": "<string>",
                                              "key": "toolkitId",
                                              "disabled": false,
                                              "description": {
                                                "content": "(Required) Toolkit ID",
                                                "type": "text/plain"
                                              }
                                            },
                                            {
                                              "type": "any",
                                              "value": "<string>",
                                              "key": "versionId",
                                              "disabled": false,
                                              "description": {
                                                "content": "(Required) Version ID",
                                                "type": "text/plain"
                                              }
                                            }
                                          ]
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {}
                                      },
                                      "response": [
                                        {
                                          "id": "dcc4b107-815b-43a0-9383-61ccd4ac72e1",
                                          "name": "Version published",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "admin",
                                                "toolkits",
                                                ":toolkitId",
                                                "versions",
                                                ":versionId",
                                                "publish"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: apikey",
                                                  "type": "text/plain"
                                                },
                                                "key": "X-API-Key",
                                                "value": "<API Key>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {}
                                          },
                                          "status": "No Content",
                                          "code": 204,
                                          "header": [],
                                          "cookie": [],
                                          "_postman_previewlanguage": "text"
                                        },
                                        {
                                          "id": "1e091723-80ce-4366-9288-63ab027c43fb",
                                          "name": "Version is not in draft status",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "admin",
                                                "toolkits",
                                                ":toolkitId",
                                                "versions",
                                                ":versionId",
                                                "publish"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: apikey",
                                                  "type": "text/plain"
                                                },
                                                "key": "X-API-Key",
                                                "value": "<API Key>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {}
                                          },
                                          "status": "Bad Request",
                                          "code": 400,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "196278a5-8765-46a7-9ca5-266c8ea07071",
                                          "name": "Authentication required",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "admin",
                                                "toolkits",
                                                ":toolkitId",
                                                "versions",
                                                ":versionId",
                                                "publish"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: apikey",
                                                  "type": "text/plain"
                                                },
                                                "key": "X-API-Key",
                                                "value": "<API Key>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {}
                                          },
                                          "status": "Unauthorized",
                                          "code": 401,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "83ae2d70-852a-4100-b001-5a048270d4f0",
                                          "name": "Version not found",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "admin",
                                                "toolkits",
                                                ":toolkitId",
                                                "versions",
                                                ":versionId",
                                                "publish"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: apikey",
                                                  "type": "text/plain"
                                                },
                                                "key": "X-API-Key",
                                                "value": "<API Key>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {}
                                          },
                                          "status": "Not Found",
                                          "code": 404,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "2f1e09fd-58d3-4dfd-8137-4820f22151cc",
                                          "name": "Internal server error",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "admin",
                                                "toolkits",
                                                ":toolkitId",
                                                "versions",
                                                ":versionId",
                                                "publish"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: apikey",
                                                  "type": "text/plain"
                                                },
                                                "key": "X-API-Key",
                                                "value": "<API Key>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {}
                                          },
                                          "status": "Internal Server Error",
                                          "code": 500,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        }
                                      ],
                                      "event": [],
                                      "protocolProfileBehavior": {
                                        "disableBodyPruning": true
                                      }
                                    }
                                  ]
                                },
                                {
                                  "name": "republish",
                                  "description": "",
                                  "item": [
                                    {
                                      "id": "9fde6860-c6be-4083-a0ee-1ebc566acf65",
                                      "name": "Republish a toolkit version",
                                      "request": {
                                        "name": "Republish a toolkit version",
                                        "description": {
                                          "content": "Transitions a deprecated version back to PUBLISHED status. Deprecates any currently published version.",
                                          "type": "text/plain"
                                        },
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "admin",
                                            "toolkits",
                                            ":toolkitId",
                                            "versions",
                                            ":versionId",
                                            "republish"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": [
                                            {
                                              "type": "any",
                                              "value": "<string>",
                                              "key": "toolkitId",
                                              "disabled": false,
                                              "description": {
                                                "content": "(Required) Toolkit ID",
                                                "type": "text/plain"
                                              }
                                            },
                                            {
                                              "type": "any",
                                              "value": "<string>",
                                              "key": "versionId",
                                              "disabled": false,
                                              "description": {
                                                "content": "(Required) Version ID",
                                                "type": "text/plain"
                                              }
                                            }
                                          ]
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {}
                                      },
                                      "response": [
                                        {
                                          "id": "07893130-9ff9-4fc9-8e9b-e6d1a43e5d0d",
                                          "name": "Version republished",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "admin",
                                                "toolkits",
                                                ":toolkitId",
                                                "versions",
                                                ":versionId",
                                                "republish"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: apikey",
                                                  "type": "text/plain"
                                                },
                                                "key": "X-API-Key",
                                                "value": "<API Key>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {}
                                          },
                                          "status": "No Content",
                                          "code": 204,
                                          "header": [],
                                          "cookie": [],
                                          "_postman_previewlanguage": "text"
                                        },
                                        {
                                          "id": "5695fa01-e2da-4529-b071-a5b057385e05",
                                          "name": "Version is not in deprecated status",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "admin",
                                                "toolkits",
                                                ":toolkitId",
                                                "versions",
                                                ":versionId",
                                                "republish"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: apikey",
                                                  "type": "text/plain"
                                                },
                                                "key": "X-API-Key",
                                                "value": "<API Key>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {}
                                          },
                                          "status": "Bad Request",
                                          "code": 400,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "aa77ab8b-be75-4b0b-b1cc-fe8cec0fd29e",
                                          "name": "Authentication required",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "admin",
                                                "toolkits",
                                                ":toolkitId",
                                                "versions",
                                                ":versionId",
                                                "republish"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: apikey",
                                                  "type": "text/plain"
                                                },
                                                "key": "X-API-Key",
                                                "value": "<API Key>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {}
                                          },
                                          "status": "Unauthorized",
                                          "code": 401,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "7eb0488b-7a68-4b65-bae2-2fb23e4c12bc",
                                          "name": "Version not found",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "admin",
                                                "toolkits",
                                                ":toolkitId",
                                                "versions",
                                                ":versionId",
                                                "republish"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: apikey",
                                                  "type": "text/plain"
                                                },
                                                "key": "X-API-Key",
                                                "value": "<API Key>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {}
                                          },
                                          "status": "Not Found",
                                          "code": 404,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "2b5dafa0-dd41-4fb3-84b7-98be08d684e3",
                                          "name": "Internal server error",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "admin",
                                                "toolkits",
                                                ":toolkitId",
                                                "versions",
                                                ":versionId",
                                                "republish"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: apikey",
                                                  "type": "text/plain"
                                                },
                                                "key": "X-API-Key",
                                                "value": "<API Key>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {}
                                          },
                                          "status": "Internal Server Error",
                                          "code": 500,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        }
                                      ],
                                      "event": [],
                                      "protocolProfileBehavior": {
                                        "disableBodyPruning": true
                                      }
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    },
                    {
                      "name": "export",
                      "description": "",
                      "item": [
                        {
                          "id": "44a3e17b-3528-49bc-a579-4c77b301995c",
                          "name": "Export entities as a portable manifest",
                          "request": {
                            "name": "Export entities as a portable manifest",
                            "description": {
                              "content": "Builds a portable toolkit manifest from selected entity IDs. Dependencies are auto-discovered.",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "toolkits",
                                "export"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"action_button_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"description\": \"<string>\",\n  \"name\": \"<string>\",\n  \"next_step_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"shortcut_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"template_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "response": [
                            {
                              "id": "4617f5a2-2069-4187-8196-78e6090faf8c",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    "export"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"action_button_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"description\": \"<string>\",\n  \"name\": \"<string>\",\n  \"next_step_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"shortcut_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"template_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"manifest\": {\n    \"action_buttons\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"plain_text\",\n          \"delivery_mechanism\": \"integration\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"content_format\": \"html\",\n          \"delivery_mechanism\": \"clipboard\",\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"file_format\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"integration_type\": \"<string>\",\n          \"is_default_for_next_step\": \"<boolean>\",\n          \"redirect_url\": \"<string>\",\n          \"requires_connected_integration\": \"<boolean>\",\n          \"sort_order\": \"<integer>\",\n          \"webhook_url\": \"<string>\"\n        }\n      }\n    ],\n    \"next_steps\": [\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      },\n      {\n        \"action_buttons\": [\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"action_button\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"default_action_button\": {\n          \"$id\": \"<string>\",\n          \"$ref\": \"<string>\"\n        },\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"type\": \"redirect\",\n          \"$id\": \"<string>\",\n          \"ai_prompt\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"redirect_url\": \"<string>\",\n          \"sort_order\": \"<integer>\"\n        }\n      }\n    ],\n    \"shortcuts\": [\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"prompt\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"color\": \"<string>\",\n          \"description\": \"<string>\",\n          \"icon_name\": \"<string>\",\n          \"surfaces\": [\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            },\n            {\n              \"position\": \"<integer>\",\n              \"surface\": \"<string>\"\n            }\n          ]\n        }\n      }\n    ],\n    \"templates\": [\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"STANDARD\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"next_steps\": [\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          },\n          {\n            \"next_step\": {\n              \"$id\": \"<string>\",\n              \"$ref\": \"<string>\"\n            },\n            \"autopilot\": \"<boolean>\",\n            \"sort_order\": \"<integer>\"\n          }\n        ],\n        \"spec\": {\n          \"name\": \"<string>\",\n          \"$id\": \"<string>\",\n          \"agenda_items\": [\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            },\n            {\n              \"item_type\": \"<string>\",\n              \"title\": \"<string>\",\n              \"content\": \"<string>\",\n              \"description\": \"<string>\",\n              \"restricted_to_leads\": \"<boolean>\",\n              \"sequence\": \"<string>\",\n              \"time_allocation_minutes\": \"<number>\"\n            }\n          ],\n          \"backing_meeting_id\": \"<string>\",\n          \"description\": \"<string>\",\n          \"detail_level\": \"BULLET_POINTS\",\n          \"meeting_duration_seconds\": \"<integer>\",\n          \"participants\": [\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"EDITOR\"\n            },\n            {\n              \"email\": \"<string>\",\n              \"name\": \"<string>\",\n              \"role\": \"VIEWER\"\n            }\n          ],\n          \"start_time_offset_seconds\": \"<integer>\",\n          \"title\": \"<string>\"\n        }\n      }\n    ],\n    \"toolkit_prompt\": \"<string>\"\n  },\n  \"metadata\": {\n    \"description\": \"<string>\",\n    \"name\": \"<string>\",\n    \"slug\": \"<string>\",\n    \"version\": \"<string>\"\n  },\n  \"summary\": {\n    \"action_buttons\": \"<integer>\",\n    \"next_steps\": \"<integer>\",\n    \"shortcuts\": \"<integer>\",\n    \"templates\": \"<integer>\"\n  },\n  \"warnings\": [\n    {\n      \"code\": \"<string>\",\n      \"entity_name\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"message\": \"<string>\"\n    },\n    {\n      \"code\": \"<string>\",\n      \"entity_name\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"message\": \"<string>\"\n    }\n  ]\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "a9ea4c29-ba09-421d-9736-1220bec41fcf",
                              "name": "Invalid request body or no entities specified",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    "export"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"action_button_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"description\": \"<string>\",\n  \"name\": \"<string>\",\n  \"next_step_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"shortcut_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"template_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "2c809ec8-2f2d-43da-8fd0-23e8332aec80",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    "export"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"action_button_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"description\": \"<string>\",\n  \"name\": \"<string>\",\n  \"next_step_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"shortcut_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"template_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "f288529c-6086-44aa-b1bd-30c7c645c7d2",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "toolkits",
                                    "export"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"action_button_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"description\": \"<string>\",\n  \"name\": \"<string>\",\n  \"next_step_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"shortcut_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"template_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "webhook-deliveries",
                  "description": "",
                  "item": [
                    {
                      "id": "87123449-faa1-4a1a-96cf-3714cd142d52",
                      "name": "List webhook deliveries",
                      "request": {
                        "name": "List webhook deliveries",
                        "description": {
                          "content": "Retrieves webhook deliveries for the authenticated partner app",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "webhook-deliveries"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "Filter by delivery status (pending, delivered, failed, abandoned)",
                                "type": "text/plain"
                              },
                              "key": "status",
                              "value": "<string>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Filter by event type (e.g., meeting.created, automation.assignment.created)",
                                "type": "text/plain"
                              },
                              "key": "event_type",
                              "value": "<string>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Maximum number of results to return (default 50, max 100)",
                                "type": "text/plain"
                              },
                              "key": "limit",
                              "value": "<integer>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Number of results to skip (default 0)",
                                "type": "text/plain"
                              },
                              "key": "offset",
                              "value": "<integer>"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "87cff028-d601-4372-b8ab-c724b3f4d9e8",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-deliveries"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by delivery status (pending, delivered, failed, abandoned)",
                                    "type": "text/plain"
                                  },
                                  "key": "status",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by event type (e.g., meeting.created, automation.assignment.created)",
                                    "type": "text/plain"
                                  },
                                  "key": "event_type",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum number of results to return (default 50, max 100)",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "<integer>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of results to skip (default 0)",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "<integer>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"deliveries\": [\n    {\n      \"created_at\": \"<string>\",\n      \"delivered_at\": \"<string>\",\n      \"delivery_status\": \"<string>\",\n      \"error_message\": \"<string>\",\n      \"event_id\": \"<string>\",\n      \"event_type\": \"<string>\",\n      \"http_status_code\": \"<integer>\",\n      \"id\": \"<string>\",\n      \"next_retry_at\": \"<string>\",\n      \"partner_app_id\": \"<string>\",\n      \"retry_count\": \"<integer>\"\n    },\n    {\n      \"created_at\": \"<string>\",\n      \"delivered_at\": \"<string>\",\n      \"delivery_status\": \"<string>\",\n      \"error_message\": \"<string>\",\n      \"event_id\": \"<string>\",\n      \"event_type\": \"<string>\",\n      \"http_status_code\": \"<integer>\",\n      \"id\": \"<string>\",\n      \"next_retry_at\": \"<string>\",\n      \"partner_app_id\": \"<string>\",\n      \"retry_count\": \"<integer>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "b7c0e35e-51be-4923-8a2b-15ffcd226331",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-deliveries"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by delivery status (pending, delivered, failed, abandoned)",
                                    "type": "text/plain"
                                  },
                                  "key": "status",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by event type (e.g., meeting.created, automation.assignment.created)",
                                    "type": "text/plain"
                                  },
                                  "key": "event_type",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum number of results to return (default 50, max 100)",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "<integer>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of results to skip (default 0)",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "<integer>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "d3135280-f0fc-426b-b2f4-504c7cf1bbae",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-deliveries"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by delivery status (pending, delivered, failed, abandoned)",
                                    "type": "text/plain"
                                  },
                                  "key": "status",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by event type (e.g., meeting.created, automation.assignment.created)",
                                    "type": "text/plain"
                                  },
                                  "key": "event_type",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum number of results to return (default 50, max 100)",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "<integer>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of results to skip (default 0)",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "<integer>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "{deliveryId}",
                      "description": "",
                      "item": [
                        {
                          "id": "a903b0d7-f4d4-4140-9990-aaf85c38fb38",
                          "name": "Get webhook delivery",
                          "request": {
                            "name": "Get webhook delivery",
                            "description": {
                              "content": "Retrieves a specific webhook delivery by ID",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-deliveries",
                                ":deliveryId"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "deliveryId",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Webhook Delivery ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "265f83a8-cf6d-4abf-a01c-72ebcbe50780",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "webhook-deliveries",
                                    ":deliveryId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"created_at\": \"<string>\",\n  \"delivered_at\": \"<string>\",\n  \"delivery_status\": \"<string>\",\n  \"error_message\": \"<string>\",\n  \"event_id\": \"<string>\",\n  \"event_type\": \"<string>\",\n  \"http_status_code\": \"<integer>\",\n  \"id\": \"<string>\",\n  \"next_retry_at\": \"<string>\",\n  \"partner_app_id\": \"<string>\",\n  \"retry_count\": \"<integer>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "983dac86-4fb3-4443-bc4c-b0a5dae66afb",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "webhook-deliveries",
                                    ":deliveryId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "e6402d06-3fef-4bbc-bf2e-39fa702d16da",
                              "name": "Webhook delivery not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "webhook-deliveries",
                                    ":deliveryId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "f05357a4-a03c-4eca-9314-009407da9475",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "webhook-deliveries",
                                    ":deliveryId"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "name": "retry",
                          "description": "",
                          "item": [
                            {
                              "id": "cdb631ef-cd9a-4728-9249-3ef6f4eff4f5",
                              "name": "Retry webhook delivery",
                              "request": {
                                "name": "Retry webhook delivery",
                                "description": {
                                  "content": "Retries a failed webhook delivery",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "webhook-deliveries",
                                    ":deliveryId",
                                    "retry"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<string>",
                                      "key": "deliveryId",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Webhook Delivery ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "POST",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "4ca08f48-efc1-46a4-b7b7-ed99a1fb3f8d",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "webhook-deliveries",
                                        ":deliveryId",
                                        "retry"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"key_0\": \"string\",\n  \"key_1\": false\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "c359d263-f6df-4ba6-bc7d-232eadc0c9d5",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "webhook-deliveries",
                                        ":deliveryId",
                                        "retry"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "db157926-5dfa-4394-8956-cbda037c6268",
                                  "name": "Webhook delivery not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "webhook-deliveries",
                                        ":deliveryId",
                                        "retry"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {}
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "71d11573-601c-4c65-b426-db1a6abf9997",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "admin",
                                        "webhook-deliveries",
                                        ":deliveryId",
                                        "retry"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: apikey",
                                          "type": "text/plain"
                                        },
                                        "key": "X-API-Key",
                                        "value": "<API Key>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            }
                          ]
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "webhook-filter",
                  "description": "",
                  "item": [
                    {
                      "id": "03c47c6c-2269-4ba3-b13e-9d8ea5752be0",
                      "name": "Remove partner app webhook filter",
                      "request": {
                        "name": "Remove partner app webhook filter",
                        "description": {
                          "content": "Removes webhook event filtering for the authenticated partner app",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "webhook-filter"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "DELETE",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "c0286643-610d-41ec-a38b-31664d007e98",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-filter"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "DELETE",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"client_id\": \"<string>\",\n  \"company_name\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"default_toolkit_id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"primary_contact_email\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"status\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"webhook_enabled\": \"<boolean>\",\n  \"webhook_filter\": {\n    \"events\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"type\": \"<string>\"\n  },\n  \"webhook_url\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "0111440d-032c-4564-b741-303d0eb42f1b",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-filter"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "DELETE",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "bb01528a-a543-4bb7-a8c3-64c6d4e6708b",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-filter"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "DELETE",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "id": "63a5ba03-aafb-4759-9e0d-9c1f1f257547",
                      "name": "Update partner app webhook filter",
                      "request": {
                        "name": "Update partner app webhook filter",
                        "description": {
                          "content": "Configures include or exclude event filtering for webhook delivery",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "webhook-filter"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Content-Type",
                            "value": "application/json"
                          },
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "PUT",
                        "body": {
                          "mode": "raw",
                          "raw": "{\n  \"events\": [\n    \"<string>\"\n  ],\n  \"type\": \"exclude\"\n}",
                          "options": {
                            "raw": {
                              "headerFamily": "json",
                              "language": "json"
                            }
                          }
                        }
                      },
                      "response": [
                        {
                          "id": "37d1c174-945b-4bc4-b255-f344f1ff1584",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-filter"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"events\": [\n    \"<string>\"\n  ],\n  \"type\": \"exclude\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"client_id\": \"<string>\",\n  \"company_name\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"default_toolkit_id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"primary_contact_email\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"status\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"webhook_enabled\": \"<boolean>\",\n  \"webhook_filter\": {\n    \"events\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"type\": \"<string>\"\n  },\n  \"webhook_url\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "78a5e4bf-91bf-48f8-b31b-4aba4342b349",
                          "name": "Invalid request body or event types",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-filter"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"events\": [\n    \"<string>\"\n  ],\n  \"type\": \"exclude\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"validation_error\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\",\n  \"valid_event_types\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "8f950677-04a2-4cee-9969-2bfc466108a7",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-filter"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"events\": [\n    \"<string>\"\n  ],\n  \"type\": \"exclude\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "d4329624-0aa6-4fdf-b790-7406669d4f92",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-filter"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"events\": [\n    \"<string>\"\n  ],\n  \"type\": \"exclude\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    }
                  ]
                },
                {
                  "name": "webhook-status",
                  "description": "",
                  "item": [
                    {
                      "id": "c39feb5a-32be-4466-b5e5-e0663ade4d3c",
                      "name": "Update partner app webhook status",
                      "request": {
                        "name": "Update partner app webhook status",
                        "description": {
                          "content": "Enables or disables webhook delivery for the authenticated partner app",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "webhook-status"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Content-Type",
                            "value": "application/json"
                          },
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "PUT",
                        "body": {
                          "mode": "raw",
                          "raw": "{\n  \"enabled\": \"<boolean>\",\n  \"pending_disposition\": \"abandon\"\n}",
                          "options": {
                            "raw": {
                              "headerFamily": "json",
                              "language": "json"
                            }
                          }
                        }
                      },
                      "response": [
                        {
                          "id": "5fd080dd-35d8-48ed-8903-94cd1496d1db",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-status"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"enabled\": \"<boolean>\",\n  \"pending_disposition\": \"abandon\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"client_id\": \"<string>\",\n  \"company_name\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"default_toolkit_id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"primary_contact_email\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"status\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"webhook_enabled\": \"<boolean>\",\n  \"webhook_filter\": {\n    \"events\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"type\": \"<string>\"\n  },\n  \"webhook_url\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "d663d328-6d53-4d83-b980-0f662e381348",
                          "name": "Invalid request body or pending disposition",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-status"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"enabled\": \"<boolean>\",\n  \"pending_disposition\": \"abandon\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "7ec384f6-c4c9-47c3-9b83-4fcb4de15938",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-status"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"enabled\": \"<boolean>\",\n  \"pending_disposition\": \"abandon\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "99f4a4c7-88d6-4c44-a732-bc99ee354f8a",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "webhook-status"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"enabled\": \"<boolean>\",\n  \"pending_disposition\": \"abandon\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    }
                  ]
                },
                {
                  "name": "workflow-templates",
                  "description": "",
                  "item": [
                    {
                      "id": "adfa3ac9-b885-4f84-98e1-7dddddfdfa7a",
                      "name": "List workflow templates",
                      "request": {
                        "name": "List workflow templates",
                        "description": {
                          "content": "Retrieves a paginated list of workflow templates owned by the authenticated partner app across all workspaces.",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "admin",
                            "workflow-templates"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "Limit",
                                "type": "text/plain"
                              },
                              "key": "limit",
                              "value": "50"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Offset",
                                "type": "text/plain"
                              },
                              "key": "offset",
                              "value": "0"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "248e9f32-225e-4434-bb07-9c535261b63c",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "workflow-templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"items\": [\n    {\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"is_active\": \"<boolean>\",\n      \"name\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"workspace_id\": \"<string>\"\n    },\n    {\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"is_active\": \"<boolean>\",\n      \"name\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"workspace_id\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "ef6847f5-bf58-491d-8764-2bf2b2483b6f",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "workflow-templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "55d87b7b-93ee-4559-9aa7-b20eb26e44b4",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "workflow-templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "50"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: apikey",
                                  "type": "text/plain"
                                },
                                "key": "X-API-Key",
                                "value": "<API Key>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "{id}",
                      "description": "",
                      "item": [
                        {
                          "id": "a1348975-17e4-4d3c-b589-ee1dd9544709",
                          "name": "Get a workflow template",
                          "request": {
                            "name": "Get a workflow template",
                            "description": {
                              "content": "Retrieves a single workflow template owned by the authenticated partner app, including the inlined DAG spec.",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "admin",
                                "workflow-templates",
                                ":id"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "id",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Workflow Template ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "6de04f6f-611b-4846-bace-1e4bf42ed433",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "workflow-templates",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"spec\": {},\n  \"updated_at\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "191c10e4-b4c2-468a-b8f1-3937f4ddca22",
                              "name": "Invalid workflow template ID",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "workflow-templates",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "7e0a9ee3-5d3d-4e8b-84e8-632d360dc9f6",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "workflow-templates",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "942cef4e-0faf-4ced-aa51-dc583eebcebe",
                              "name": "Workflow template not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "workflow-templates",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "2b1326a2-df20-407f-aeb8-0214b694a84d",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "admin",
                                    "workflow-templates",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: apikey",
                                      "type": "text/plain"
                                    },
                                    "key": "X-API-Key",
                                    "value": "<API Key>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        }
                      ]
                    }
                  ]
                }
              ]
            },
            {
              "name": "info",
              "description": "",
              "item": [
                {
                  "name": "{client_id}",
                  "description": "",
                  "item": [
                    {
                      "name": "public",
                      "description": "",
                      "item": [
                        {
                          "id": "8cc43816-3390-426f-b464-837e34134ada",
                          "name": "Get Public Partner Information by Client ID",
                          "request": {
                            "name": "Get Public Partner Information by Client ID",
                            "description": {
                              "content": "Returns safe public partner app information for display in OAuth login/consent pages. This endpoint does not require client authentication and only returns safe public information like name and company.",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "info",
                                ":client_id",
                                "public"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "client_id",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Partner Client ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "*/*"
                              }
                            ],
                            "method": "GET",
                            "body": {},
                            "auth": null
                          },
                          "response": [
                            {
                              "id": "aefcf3ec-d653-4c64-a782-73fbcaaecbc6",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "info",
                                    ":client_id",
                                    "public"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"client_id\": \"<string>\",\n  \"co_brand_name\": \"<string>\",\n  \"company_name\": \"<string>\",\n  \"name\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "d2d52093-0fb1-4592-91c5-9b1bf8a9dccb",
                              "name": "Not Found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "info",
                                    ":client_id",
                                    "public"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "2f3c2ff7-ae69-4f9e-aa80-a7fe40e5f437",
                              "name": "Internal Server Error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "info",
                                    ":client_id",
                                    "public"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        }
                      ]
                    }
                  ]
                }
              ]
            },
            {
              "name": "sso",
              "description": "",
              "item": [
                {
                  "name": "callback",
                  "description": "",
                  "item": [
                    {
                      "id": "6c123de7-74bb-416d-80d4-8a7c65182e32",
                      "name": "Handle partner SSO callback",
                      "request": {
                        "name": "Handle partner SSO callback",
                        "description": {
                          "content": "Handles the OIDC callback from the partner's identity provider. Exchanges the authorization code for tokens, validates the ID token, and provisions or authenticates the user.",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "sso",
                            "callback"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "Authorization code from IdP",
                                "type": "text/plain"
                              },
                              "key": "code",
                              "value": "<string>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "(Required) State parameter for session validation",
                                "type": "text/plain"
                              },
                              "key": "state",
                              "value": "<string>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Error code if authentication failed",
                                "type": "text/plain"
                              },
                              "key": "error",
                              "value": "<string>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Error description if authentication failed",
                                "type": "text/plain"
                              },
                              "key": "error_description",
                              "value": "<string>"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {},
                        "auth": null
                      },
                      "response": [
                        {
                          "id": "0b3e5287-62af-4588-8c38-7cef68dab455",
                          "name": "Redirect to application after successful authentication",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "sso",
                                "callback"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Authorization code from IdP",
                                    "type": "text/plain"
                                  },
                                  "key": "code",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) State parameter for session validation",
                                    "type": "text/plain"
                                  },
                                  "key": "state",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Error code if authentication failed",
                                    "type": "text/plain"
                                  },
                                  "key": "error",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Error description if authentication failed",
                                    "type": "text/plain"
                                  },
                                  "key": "error_description",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Found",
                          "code": 302,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "<string>",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "8ad1847f-b02e-4b70-b395-183b6cf26ac3",
                          "name": "Invalid request or authentication error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "sso",
                                "callback"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Authorization code from IdP",
                                    "type": "text/plain"
                                  },
                                  "key": "code",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) State parameter for session validation",
                                    "type": "text/plain"
                                  },
                                  "key": "state",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Error code if authentication failed",
                                    "type": "text/plain"
                                  },
                                  "key": "error",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Error description if authentication failed",
                                    "type": "text/plain"
                                  },
                                  "key": "error_description",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"key_0\": \"string\",\n  \"key_1\": false\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "6cefe750-4414-4be7-ab51-31d20b1d8e29",
                          "name": "Authentication failed",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "sso",
                                "callback"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Authorization code from IdP",
                                    "type": "text/plain"
                                  },
                                  "key": "code",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) State parameter for session validation",
                                    "type": "text/plain"
                                  },
                                  "key": "state",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Error code if authentication failed",
                                    "type": "text/plain"
                                  },
                                  "key": "error",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Error description if authentication failed",
                                    "type": "text/plain"
                                  },
                                  "key": "error_description",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"key_0\": \"string\",\n  \"key_1\": false\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "e1f51325-6c9c-47f9-913f-c2567d94a4eb",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "sso",
                                "callback"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Authorization code from IdP",
                                    "type": "text/plain"
                                  },
                                  "key": "code",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) State parameter for session validation",
                                    "type": "text/plain"
                                  },
                                  "key": "state",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Error code if authentication failed",
                                    "type": "text/plain"
                                  },
                                  "key": "error",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Error description if authentication failed",
                                    "type": "text/plain"
                                  },
                                  "key": "error_description",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"key_0\": \"string\",\n  \"key_1\": false\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    }
                  ]
                },
                {
                  "name": "info",
                  "description": "",
                  "item": [
                    {
                      "name": "{slug}",
                      "description": "",
                      "item": [
                        {
                          "id": "aafb8500-2b59-4a95-bdb0-5396c4a8f105",
                          "name": "Get partner SSO information",
                          "request": {
                            "name": "Get partner SSO information",
                            "description": {
                              "content": "Returns partner branding and SSO configuration status for landing pages. This endpoint is publicly accessible and rate-limited.",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "sso",
                                "info",
                                ":slug"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "slug",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Partner slug",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {},
                            "auth": null
                          },
                          "response": [
                            {
                              "id": "2860dbf4-45ca-4d17-8752-133408314fd6",
                              "name": "Partner SSO information returned",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "sso",
                                    "info",
                                    ":slug"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"co_brand_logo_url\": \"<string>\",\n  \"co_brand_name\": \"<string>\",\n  \"has_idp_config\": \"<boolean>\",\n  \"is_active\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "71f7b598-51de-430f-8753-d8cd3f7cb92f",
                              "name": "Partner not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "sso",
                                    "info",
                                    ":slug"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"message\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "1e483918-25b7-4087-b2b2-4e5ef3cf88e6",
                              "name": "Rate limit exceeded",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "sso",
                                    "info",
                                    ":slug"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Too Many Requests",
                              "code": 429,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"too_many_requests\",\n  \"message\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "initiate",
                  "description": "",
                  "item": [
                    {
                      "id": "ec1e8df5-bcce-41ef-b403-faa7b144ecbc",
                      "name": "Initiate partner SSO flow",
                      "request": {
                        "name": "Initiate partner SSO flow",
                        "description": {
                          "content": "Starts the SSO authentication flow for a partner's identity provider. Looks up the partner by slug, retrieves IdP configuration, generates PKCE parameters, and returns an authorization URL.",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "sso",
                            "initiate"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "(Required) Partner app slug",
                                "type": "text/plain"
                              },
                              "key": "slug",
                              "value": "<string>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Target platform: web (default), desktop, backlog, or meeting:{id}",
                                "type": "text/plain"
                              },
                              "key": "target",
                              "value": "web"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Auto-redirect to authorization URL",
                                "type": "text/plain"
                              },
                              "key": "auto",
                              "value": "<boolean>"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {},
                        "auth": null
                      },
                      "response": [
                        {
                          "id": "99cb34e2-88bf-4042-a73d-afc5a387817a",
                          "name": "Authorization URL and session ID",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "sso",
                                "initiate"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Partner app slug",
                                    "type": "text/plain"
                                  },
                                  "key": "slug",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Target platform: web (default), desktop, backlog, or meeting:{id}",
                                    "type": "text/plain"
                                  },
                                  "key": "target",
                                  "value": "web"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Auto-redirect to authorization URL",
                                    "type": "text/plain"
                                  },
                                  "key": "auto",
                                  "value": "<boolean>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"authorization_url\": \"<string>\",\n  \"session_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "cc9a7b99-2922-4c1e-a9ba-704d49e66000",
                          "name": "Redirect to authorization URL (when auto=true)",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "sso",
                                "initiate"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Partner app slug",
                                    "type": "text/plain"
                                  },
                                  "key": "slug",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Target platform: web (default), desktop, backlog, or meeting:{id}",
                                    "type": "text/plain"
                                  },
                                  "key": "target",
                                  "value": "web"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Auto-redirect to authorization URL",
                                    "type": "text/plain"
                                  },
                                  "key": "auto",
                                  "value": "<boolean>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Found",
                          "code": 302,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "<string>",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "37812e14-9d22-4f01-8c62-4ca6232aa700",
                          "name": "Invalid request parameters",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "sso",
                                "initiate"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Partner app slug",
                                    "type": "text/plain"
                                  },
                                  "key": "slug",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Target platform: web (default), desktop, backlog, or meeting:{id}",
                                    "type": "text/plain"
                                  },
                                  "key": "target",
                                  "value": "web"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Auto-redirect to authorization URL",
                                    "type": "text/plain"
                                  },
                                  "key": "auto",
                                  "value": "<boolean>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"key_0\": \"string\",\n  \"key_1\": false\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "d4425b0d-5b6d-4ae6-9443-e686fb0159ac",
                          "name": "Partner not found or IdP not configured",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "sso",
                                "initiate"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Partner app slug",
                                    "type": "text/plain"
                                  },
                                  "key": "slug",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Target platform: web (default), desktop, backlog, or meeting:{id}",
                                    "type": "text/plain"
                                  },
                                  "key": "target",
                                  "value": "web"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Auto-redirect to authorization URL",
                                    "type": "text/plain"
                                  },
                                  "key": "auto",
                                  "value": "<boolean>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Not Found",
                          "code": 404,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"key_0\": \"string\",\n  \"key_1\": false\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "fd10679a-579b-46ff-a3b4-cf63c54e7836",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "sso",
                                "initiate"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Partner app slug",
                                    "type": "text/plain"
                                  },
                                  "key": "slug",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Target platform: web (default), desktop, backlog, or meeting:{id}",
                                    "type": "text/plain"
                                  },
                                  "key": "target",
                                  "value": "web"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Auto-redirect to authorization URL",
                                    "type": "text/plain"
                                  },
                                  "key": "auto",
                                  "value": "<boolean>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"key_0\": \"string\",\n  \"key_1\": false\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    }
                  ]
                },
                {
                  "name": "session",
                  "description": "",
                  "item": [
                    {
                      "name": "{session_id}",
                      "description": "",
                      "item": [
                        {
                          "id": "31493cf5-8c96-4339-9fbd-123ed69aa510",
                          "name": "Get partner SSO session status",
                          "request": {
                            "name": "Get partner SSO session status",
                            "description": {
                              "content": "Returns the current status of a partner SSO session for polling. Used by clients to check if authentication has completed.",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "sso",
                                "session",
                                ":session_id"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "session_id",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Session ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {},
                            "auth": null
                          },
                          "response": [
                            {
                              "id": "2ebe4b8e-3cd2-4f92-b1f1-38eb825d7648",
                              "name": "Session status",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "sso",
                                    "session",
                                    ":session_id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"error\": \"<string>\",\n  \"status\": \"<string>\",\n  \"target\": \"<string>\",\n  \"user_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "d59992ca-ea09-4052-950c-e066be2af983",
                              "name": "Invalid session ID",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "sso",
                                    "session",
                                    ":session_id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"key_0\": \"string\",\n  \"key_1\": false\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "4430dbc7-8cab-4f0d-884f-275c872d227d",
                              "name": "Session not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "sso",
                                    "session",
                                    ":session_id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"key_0\": \"string\",\n  \"key_1\": false\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        }
                      ]
                    }
                  ]
                }
              ]
            },
            {
              "name": "user",
              "description": "",
              "item": [
                {
                  "name": "action-items",
                  "description": "",
                  "item": [
                    {
                      "id": "abfd8a4e-c11c-46a5-864e-17e471b13433",
                      "name": "Get action items",
                      "request": {
                        "name": "Get action items",
                        "description": {
                          "content": "Retrieves action items accessible to the authenticated partner user",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "user",
                            "action-items"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "Limit",
                                "type": "text/plain"
                              },
                              "key": "limit",
                              "value": "25"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Offset",
                                "type": "text/plain"
                              },
                              "key": "offset",
                              "value": "0"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Filter by meeting ID",
                                "type": "text/plain"
                              },
                              "key": "meeting_id",
                              "value": "<string>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Filter by completion status",
                                "type": "text/plain"
                              },
                              "key": "is_completed",
                              "value": "<boolean>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Filter by partner assignment",
                                "type": "text/plain"
                              },
                              "key": "has_partner_assignment",
                              "value": "<boolean>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Filter by start date (ISO 8601)",
                                "type": "text/plain"
                              },
                              "key": "start_date",
                              "value": "<string>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Filter by end date (ISO 8601)",
                                "type": "text/plain"
                              },
                              "key": "end_date",
                              "value": "<string>"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "472d01c4-3883-44bb-b617-d012fdeaaa23",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "action-items"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by meeting ID",
                                    "type": "text/plain"
                                  },
                                  "key": "meeting_id",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by completion status",
                                    "type": "text/plain"
                                  },
                                  "key": "is_completed",
                                  "value": "<boolean>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by partner assignment",
                                    "type": "text/plain"
                                  },
                                  "key": "has_partner_assignment",
                                  "value": "<boolean>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by start date (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "start_date",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by end date (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "end_date",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"items\": [\n    {\n      \"assigned_to_user_id\": \"<string>\",\n      \"completed_at\": \"<string>\",\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"due_date\": \"<string>\",\n      \"has_partner_assignment\": \"<boolean>\",\n      \"id\": \"<string>\",\n      \"is_completed\": \"<boolean>\",\n      \"meeting_id\": \"<string>\",\n      \"partner_context\": {\n        \"key_0\": {},\n        \"key_1\": {}\n      },\n      \"status\": \"<string>\",\n      \"title\": \"<string>\",\n      \"updated_at\": \"<string>\"\n    },\n    {\n      \"assigned_to_user_id\": \"<string>\",\n      \"completed_at\": \"<string>\",\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"due_date\": \"<string>\",\n      \"has_partner_assignment\": \"<boolean>\",\n      \"id\": \"<string>\",\n      \"is_completed\": \"<boolean>\",\n      \"meeting_id\": \"<string>\",\n      \"partner_context\": {\n        \"key_0\": {},\n        \"key_1\": {}\n      },\n      \"status\": \"<string>\",\n      \"title\": \"<string>\",\n      \"updated_at\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "bb8d955b-c548-4c32-b056-e7080d88a35b",
                          "name": "Invalid request parameters",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "action-items"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by meeting ID",
                                    "type": "text/plain"
                                  },
                                  "key": "meeting_id",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by completion status",
                                    "type": "text/plain"
                                  },
                                  "key": "is_completed",
                                  "value": "<boolean>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by partner assignment",
                                    "type": "text/plain"
                                  },
                                  "key": "has_partner_assignment",
                                  "value": "<boolean>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by start date (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "start_date",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by end date (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "end_date",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"invalid_start_date\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "0d59907b-4f4d-4416-80ff-2acde2434a7b",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "action-items"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by meeting ID",
                                    "type": "text/plain"
                                  },
                                  "key": "meeting_id",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by completion status",
                                    "type": "text/plain"
                                  },
                                  "key": "is_completed",
                                  "value": "<boolean>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by partner assignment",
                                    "type": "text/plain"
                                  },
                                  "key": "has_partner_assignment",
                                  "value": "<boolean>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by start date (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "start_date",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by end date (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "end_date",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "d5467a4f-8b46-47d6-b52d-e519f586b224",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "action-items"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by meeting ID",
                                    "type": "text/plain"
                                  },
                                  "key": "meeting_id",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by completion status",
                                    "type": "text/plain"
                                  },
                                  "key": "is_completed",
                                  "value": "<boolean>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by partner assignment",
                                    "type": "text/plain"
                                  },
                                  "key": "has_partner_assignment",
                                  "value": "<boolean>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by start date (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "start_date",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by end date (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "end_date",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "id": "20fc5095-5cd4-42fa-8e53-5bcf63ca120f",
                      "name": "Create action item",
                      "request": {
                        "name": "Create action item",
                        "description": {
                          "content": "Creates a new action item on behalf of the authenticated user",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "user",
                            "action-items"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Content-Type",
                            "value": "application/json"
                          },
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "POST",
                        "body": {
                          "mode": "raw",
                          "raw": "{\n  \"meeting_id\": \"<string>\",\n  \"title\": \"<string>\",\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"partner_context\": {\n    \"key_0\": {}\n  },\n  \"status\": \"accepted\"\n}",
                          "options": {
                            "raw": {
                              "headerFamily": "json",
                              "language": "json"
                            }
                          }
                        }
                      },
                      "response": [
                        {
                          "id": "b2354f45-75e6-4836-a81a-570887e50831",
                          "name": "Created",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "action-items"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"meeting_id\": \"<string>\",\n  \"title\": \"<string>\",\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"partner_context\": {\n    \"key_0\": {}\n  },\n  \"status\": \"accepted\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Created",
                          "code": 201,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"assigned_to_user_id\": \"<string>\",\n  \"completed_at\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"has_partner_assignment\": \"<boolean>\",\n  \"id\": \"<string>\",\n  \"is_completed\": \"<boolean>\",\n  \"meeting_id\": \"<string>\",\n  \"partner_context\": {\n    \"key_0\": {},\n    \"key_1\": {}\n  },\n  \"status\": \"<string>\",\n  \"title\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "dd05cb7f-da8b-4d67-a296-8eba8acf77bc",
                          "name": "Invalid request body",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "action-items"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"meeting_id\": \"<string>\",\n  \"title\": \"<string>\",\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"partner_context\": {\n    \"key_0\": {}\n  },\n  \"status\": \"accepted\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"invalid_request\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "7fb9cb8c-0e25-4d1b-9d10-869a62ae42a2",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "action-items"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"meeting_id\": \"<string>\",\n  \"title\": \"<string>\",\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"partner_context\": {\n    \"key_0\": {}\n  },\n  \"status\": \"accepted\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "31cca7e6-dce9-443a-91b8-c4175697aa62",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "action-items"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"meeting_id\": \"<string>\",\n  \"title\": \"<string>\",\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"partner_context\": {\n    \"key_0\": {}\n  },\n  \"status\": \"accepted\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "{id}",
                      "description": "",
                      "item": [
                        {
                          "id": "1dd523db-33fd-461d-89a8-9852e27a171d",
                          "name": "Delete action item",
                          "request": {
                            "name": "Delete action item",
                            "description": {
                              "content": "Deletes an action item if accessible to the authenticated user",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "action-items",
                                ":id"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "id",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Action Item ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "*/*"
                              }
                            ],
                            "method": "DELETE",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "d64473bc-b776-4eeb-bb85-b39abeb4787c",
                              "name": "No Content",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "No Content",
                              "code": 204,
                              "header": [],
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "ec3f9b85-b8ad-404d-b021-119f83c2119d",
                              "name": "Invalid action item ID",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "9955ee03-1e22-4a94-95ff-d18e1465519d",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "8d9c851d-b896-4ee6-b898-b4d5046f0ed4",
                              "name": "Action item not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            },
                            {
                              "id": "39b75929-6efa-46d4-b132-788ab985334d",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "*/*"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "DELETE",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "*/*"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "text"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "id": "a395abd3-e282-4ec4-9a4f-3022ac197a84",
                          "name": "Get action item by ID",
                          "request": {
                            "name": "Get action item by ID",
                            "description": {
                              "content": "Retrieves a specific action item by ID if accessible to the authenticated partner user",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "action-items",
                                ":id"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "id",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Action Item ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "d1a239a2-21c2-476c-bf2a-60bc7f9694d5",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"assigned_to_user_id\": \"<string>\",\n  \"completed_at\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"has_partner_assignment\": \"<boolean>\",\n  \"id\": \"<string>\",\n  \"is_completed\": \"<boolean>\",\n  \"meeting_id\": \"<string>\",\n  \"partner_context\": {\n    \"key_0\": {},\n    \"key_1\": {}\n  },\n  \"status\": \"<string>\",\n  \"title\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "71b8c8dc-d5f6-4884-a0d5-c58a5440c745",
                              "name": "Invalid action item ID",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "44a6c4cb-47d7-4338-9831-31a6c9a3da23",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "369a2ce0-eae8-4499-8317-23f1737acb93",
                              "name": "Action item not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "e118decf-4c82-45a1-b09c-ef03077acd18",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "id": "7c88b3d1-71ef-4919-841d-339cdea58d2b",
                          "name": "Update action item",
                          "request": {
                            "name": "Update action item",
                            "description": {
                              "content": "Updates an existing action item if accessible to the authenticated user",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "action-items",
                                ":id"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "id",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Action Item ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"is_completed\": \"<boolean>\",\n  \"partner_context\": {\n    \"key_0\": {}\n  },\n  \"status\": \"needs_review\",\n  \"title\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "response": [
                            {
                              "id": "0e208aea-d30e-4cf1-8d96-aa6d7d99518b",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"is_completed\": \"<boolean>\",\n  \"partner_context\": {\n    \"key_0\": {}\n  },\n  \"status\": \"needs_review\",\n  \"title\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"assigned_to_user_id\": \"<string>\",\n  \"completed_at\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"has_partner_assignment\": \"<boolean>\",\n  \"id\": \"<string>\",\n  \"is_completed\": \"<boolean>\",\n  \"meeting_id\": \"<string>\",\n  \"partner_context\": {\n    \"key_0\": {},\n    \"key_1\": {}\n  },\n  \"status\": \"<string>\",\n  \"title\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "742e8708-b31c-4236-87b5-9a4ab7903631",
                              "name": "Invalid request body",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"is_completed\": \"<boolean>\",\n  \"partner_context\": {\n    \"key_0\": {}\n  },\n  \"status\": \"needs_review\",\n  \"title\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"invalid_request\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "90b8d9fa-e0b2-4dc6-9135-54403a42c720",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"is_completed\": \"<boolean>\",\n  \"partner_context\": {\n    \"key_0\": {}\n  },\n  \"status\": \"needs_review\",\n  \"title\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "419206e9-2084-44c4-adff-b3e9d3ce6e00",
                              "name": "Action item not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"is_completed\": \"<boolean>\",\n  \"partner_context\": {\n    \"key_0\": {}\n  },\n  \"status\": \"needs_review\",\n  \"title\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "1346cdc4-db4a-421f-bdfd-d15d060382c0",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "action-items",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"description\": \"<string>\",\n  \"due_date\": \"<string>\",\n  \"is_completed\": \"<boolean>\",\n  \"partner_context\": {\n    \"key_0\": {}\n  },\n  \"status\": \"needs_review\",\n  \"title\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "calendar",
                  "description": "",
                  "item": [
                    {
                      "name": "events",
                      "description": "",
                      "item": [
                        {
                          "id": "32564d05-2782-4b0e-bbe5-b08cc20e1427",
                          "name": "Get calendar events",
                          "request": {
                            "name": "Get calendar events",
                            "description": {
                              "content": "Retrieve a paginated list of calendar events for the authenticated user within a specified time range",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "calendar",
                                "events"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Start time in RFC3339 format (preferred)",
                                    "type": "text/plain"
                                  },
                                  "key": "start_date",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "End time in RFC3339 format (preferred)",
                                    "type": "text/plain"
                                  },
                                  "key": "end_date",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Deprecated: Use start_date instead",
                                    "type": "text/plain"
                                  },
                                  "key": "start",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Deprecated: Use end_date instead",
                                    "type": "text/plain"
                                  },
                                  "key": "end",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of results per page (default 25, max 100)",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "<integer>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Pagination offset (default 0)",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "<integer>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Sort direction: asc or desc (default: asc)",
                                    "type": "text/plain"
                                  },
                                  "key": "direction",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "c12acb7f-2f8b-4d88-90e4-5e4fa8bfb2a8",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "calendar",
                                    "events"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Start time in RFC3339 format (preferred)",
                                        "type": "text/plain"
                                      },
                                      "key": "start_date",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "End time in RFC3339 format (preferred)",
                                        "type": "text/plain"
                                      },
                                      "key": "end_date",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Deprecated: Use start_date instead",
                                        "type": "text/plain"
                                      },
                                      "key": "start",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Deprecated: Use end_date instead",
                                        "type": "text/plain"
                                      },
                                      "key": "end",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Number of results per page (default 25, max 100)",
                                        "type": "text/plain"
                                      },
                                      "key": "limit",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Pagination offset (default 0)",
                                        "type": "text/plain"
                                      },
                                      "key": "offset",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Sort direction: asc or desc (default: asc)",
                                        "type": "text/plain"
                                      },
                                      "key": "direction",
                                      "value": "<string>"
                                    }
                                  ],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"items\": [\n    {\n      \"attendees\": [\n        {\n          \"email\": \"<string>\",\n          \"name\": \"<string>\",\n          \"status\": \"<string>\",\n          \"type\": \"<string>\"\n        },\n        {\n          \"email\": \"<string>\",\n          \"name\": \"<string>\",\n          \"status\": \"<string>\",\n          \"type\": \"<string>\"\n        }\n      ],\n      \"description\": \"<string>\",\n      \"end_time\": \"<string>\",\n      \"id\": \"<string>\",\n      \"linked_meetings\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"location\": \"<string>\",\n      \"meeting_id\": \"<string>\",\n      \"organizer\": {\n        \"email\": \"<string>\",\n        \"name\": \"<string>\",\n        \"status\": \"<string>\",\n        \"type\": \"<string>\"\n      },\n      \"start_time\": \"<string>\",\n      \"title\": \"<string>\"\n    },\n    {\n      \"attendees\": [\n        {\n          \"email\": \"<string>\",\n          \"name\": \"<string>\",\n          \"status\": \"<string>\",\n          \"type\": \"<string>\"\n        },\n        {\n          \"email\": \"<string>\",\n          \"name\": \"<string>\",\n          \"status\": \"<string>\",\n          \"type\": \"<string>\"\n        }\n      ],\n      \"description\": \"<string>\",\n      \"end_time\": \"<string>\",\n      \"id\": \"<string>\",\n      \"linked_meetings\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"location\": \"<string>\",\n      \"meeting_id\": \"<string>\",\n      \"organizer\": {\n        \"email\": \"<string>\",\n        \"name\": \"<string>\",\n        \"status\": \"<string>\",\n        \"type\": \"<string>\"\n      },\n      \"start_time\": \"<string>\",\n      \"title\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "6f3fb801-f705-49e4-bc39-29fa18971373",
                              "name": "Invalid request",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "calendar",
                                    "events"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Start time in RFC3339 format (preferred)",
                                        "type": "text/plain"
                                      },
                                      "key": "start_date",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "End time in RFC3339 format (preferred)",
                                        "type": "text/plain"
                                      },
                                      "key": "end_date",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Deprecated: Use start_date instead",
                                        "type": "text/plain"
                                      },
                                      "key": "start",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Deprecated: Use end_date instead",
                                        "type": "text/plain"
                                      },
                                      "key": "end",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Number of results per page (default 25, max 100)",
                                        "type": "text/plain"
                                      },
                                      "key": "limit",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Pagination offset (default 0)",
                                        "type": "text/plain"
                                      },
                                      "key": "offset",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Sort direction: asc or desc (default: asc)",
                                        "type": "text/plain"
                                      },
                                      "key": "direction",
                                      "value": "<string>"
                                    }
                                  ],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"missing_end_date\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "c62e5303-bafe-4cbb-957e-156b9c5e238e",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "calendar",
                                    "events"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Start time in RFC3339 format (preferred)",
                                        "type": "text/plain"
                                      },
                                      "key": "start_date",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "End time in RFC3339 format (preferred)",
                                        "type": "text/plain"
                                      },
                                      "key": "end_date",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Deprecated: Use start_date instead",
                                        "type": "text/plain"
                                      },
                                      "key": "start",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Deprecated: Use end_date instead",
                                        "type": "text/plain"
                                      },
                                      "key": "end",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Number of results per page (default 25, max 100)",
                                        "type": "text/plain"
                                      },
                                      "key": "limit",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Pagination offset (default 0)",
                                        "type": "text/plain"
                                      },
                                      "key": "offset",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Sort direction: asc or desc (default: asc)",
                                        "type": "text/plain"
                                      },
                                      "key": "direction",
                                      "value": "<string>"
                                    }
                                  ],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "307ee93d-0748-48d2-9fc4-0f2cb14f221e",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "calendar",
                                    "events"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Start time in RFC3339 format (preferred)",
                                        "type": "text/plain"
                                      },
                                      "key": "start_date",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "End time in RFC3339 format (preferred)",
                                        "type": "text/plain"
                                      },
                                      "key": "end_date",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Deprecated: Use start_date instead",
                                        "type": "text/plain"
                                      },
                                      "key": "start",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Deprecated: Use end_date instead",
                                        "type": "text/plain"
                                      },
                                      "key": "end",
                                      "value": "<string>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Number of results per page (default 25, max 100)",
                                        "type": "text/plain"
                                      },
                                      "key": "limit",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Pagination offset (default 0)",
                                        "type": "text/plain"
                                      },
                                      "key": "offset",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Sort direction: asc or desc (default: asc)",
                                        "type": "text/plain"
                                      },
                                      "key": "direction",
                                      "value": "<string>"
                                    }
                                  ],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "name": "{calendar_event_id}",
                          "description": "",
                          "item": [
                            {
                              "id": "9fac5e13-edb6-4256-b91c-080a1604650a",
                              "name": "Get calendar event by ID",
                              "request": {
                                "name": "Get calendar event by ID",
                                "description": {
                                  "content": "Retrieve details of a specific calendar event for the authenticated user",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "calendar",
                                    "events",
                                    ":calendar_event_id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<string>",
                                      "key": "calendar_event_id",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Calendar Event ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "d3a04844-a20a-4cee-b8b8-d23a08bcd457",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "calendar",
                                        "events",
                                        ":calendar_event_id"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"attendees\": [\n    {\n      \"email\": \"<string>\",\n      \"name\": \"<string>\",\n      \"status\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"email\": \"<string>\",\n      \"name\": \"<string>\",\n      \"status\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ],\n  \"description\": \"<string>\",\n  \"end_time\": \"<string>\",\n  \"id\": \"<string>\",\n  \"linked_meetings\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"location\": \"<string>\",\n  \"meeting_id\": \"<string>\",\n  \"organizer\": {\n    \"email\": \"<string>\",\n    \"name\": \"<string>\",\n    \"status\": \"<string>\",\n    \"type\": \"<string>\"\n  },\n  \"start_time\": \"<string>\",\n  \"title\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "4b064095-d085-443f-9d8d-0accc4121626",
                                  "name": "Invalid calendar event ID format",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "calendar",
                                        "events",
                                        ":calendar_event_id"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "7e261e6e-584b-4a93-bc8c-290b8b8f1e7b",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "calendar",
                                        "events",
                                        ":calendar_event_id"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "921b4290-786f-4c75-93f2-168697bf0111",
                                  "name": "User does not have access to this calendar event",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "calendar",
                                        "events",
                                        ":calendar_event_id"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Forbidden",
                                  "code": 403,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"forbidden\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "4b4164f1-6f13-494b-9402-bd8e0259fac6",
                                  "name": "Calendar event not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "calendar",
                                        "events",
                                        ":calendar_event_id"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "1d1abc33-36cb-491a-892d-643f8f498d5c",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "calendar",
                                        "events",
                                        ":calendar_event_id"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "name": "meeting",
                              "description": "",
                              "item": [
                                {
                                  "id": "66b6b46e-ee81-42fc-99ae-4f9b488fefe5",
                                  "name": "Create meeting from calendar event",
                                  "request": {
                                    "name": "Create meeting from calendar event",
                                    "description": {
                                      "content": "Creates a new meeting by copying details from a calendar event",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "calendar",
                                        "events",
                                        ":calendar_event_id",
                                        "meeting"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<string>",
                                          "key": "calendar_event_id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Calendar Event ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {}
                                  },
                                  "response": [
                                    {
                                      "id": "d30dd851-4e89-4a68-9e4e-7220fc25acad",
                                      "name": "Meeting already exists for this calendar event",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "calendar",
                                            "events",
                                            ":calendar_event_id",
                                            "meeting"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {}
                                      },
                                      "status": "OK",
                                      "code": 200,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"created\": \"<boolean>\",\n  \"meeting\": {\n    \"calendar_event_id\": \"<string>\",\n    \"created_at\": \"<string>\",\n    \"created_by_user_id\": \"<string>\",\n    \"end_time\": \"<string>\",\n    \"id\": \"<string>\",\n    \"redirect_to_meeting_id\": \"<string>\",\n    \"start_time\": \"<string>\",\n    \"status\": \"draft\",\n    \"summary_notes\": \"<string>\",\n    \"title\": \"<string>\",\n    \"updated_at\": \"<string>\",\n    \"workspace_id\": \"<string>\"\n  },\n  \"message\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "14cc1310-92ca-49b9-a2d3-f43549cf33f2",
                                      "name": "Meeting created successfully",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "calendar",
                                            "events",
                                            ":calendar_event_id",
                                            "meeting"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {}
                                      },
                                      "status": "Created",
                                      "code": 201,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"created\": \"<boolean>\",\n  \"meeting\": {\n    \"calendar_event_id\": \"<string>\",\n    \"created_at\": \"<string>\",\n    \"created_by_user_id\": \"<string>\",\n    \"end_time\": \"<string>\",\n    \"id\": \"<string>\",\n    \"redirect_to_meeting_id\": \"<string>\",\n    \"start_time\": \"<string>\",\n    \"status\": \"draft\",\n    \"summary_notes\": \"<string>\",\n    \"title\": \"<string>\",\n    \"updated_at\": \"<string>\",\n    \"workspace_id\": \"<string>\"\n  },\n  \"message\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "2aa3e371-35bd-497b-b7dc-ac1a4e8b0ce5",
                                      "name": "Invalid calendar event ID",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "calendar",
                                            "events",
                                            ":calendar_event_id",
                                            "meeting"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {}
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"invalid_request\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "7e4f52f8-dd13-4f05-9722-e18a4d3e3851",
                                      "name": "Authentication required",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "calendar",
                                            "events",
                                            ":calendar_event_id",
                                            "meeting"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {}
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "2d5ab2e1-e0bd-47a5-bea8-10e56f73260b",
                                      "name": "Calendar event not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "calendar",
                                            "events",
                                            ":calendar_event_id",
                                            "meeting"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {}
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "0b472a99-b274-474b-9706-b0e4dbc225e5",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "calendar",
                                            "events",
                                            ":calendar_event_id",
                                            "meeting"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {}
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "meeting-templates",
                  "description": "",
                  "item": [
                    {
                      "id": "d3783b5c-e0dc-40db-b498-7871bd88d53e",
                      "name": "List meeting templates",
                      "request": {
                        "name": "List meeting templates",
                        "description": {
                          "content": "Retrieves meeting templates accessible to the authenticated partner user based on ownership hierarchy",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "user",
                            "meeting-templates"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "Maximum number of items per page",
                                "type": "text/plain"
                              },
                              "key": "limit",
                              "value": "25"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Number of items to skip",
                                "type": "text/plain"
                              },
                              "key": "offset",
                              "value": "0"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "9a3082b4-d76d-4228-9f00-2cb6171f64b5",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meeting-templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum number of items per page",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of items to skip",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"items\": [\n    {\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"is_active\": \"<boolean>\",\n      \"name\": \"<string>\",\n      \"ownership_type\": \"USER\",\n      \"updated_at\": \"<string>\"\n    },\n    {\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"is_active\": \"<boolean>\",\n      \"name\": \"<string>\",\n      \"ownership_type\": \"USER\",\n      \"updated_at\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "f71af900-d08b-468e-bb18-88c052bf7955",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meeting-templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum number of items per page",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of items to skip",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "a2e87060-cba1-4852-add5-a4a64458251f",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meeting-templates"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum number of items per page",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of items to skip",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "{id}",
                      "description": "",
                      "item": [
                        {
                          "id": "6e30a1dd-30c8-46fb-9a8b-5a8e9fa5ace4",
                          "name": "Get meeting template",
                          "request": {
                            "name": "Get meeting template",
                            "description": {
                              "content": "Retrieves a meeting template by ID with its full contents",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meeting-templates",
                                ":id"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<uuid>",
                                  "key": "id",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Meeting template ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "ac3b813e-f040-4602-bd34-d39e12ff25dd",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meeting-templates",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"agenda_item_count\": \"<integer>\",\n  \"can_edit\": \"<boolean>\",\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"document_count\": \"<integer>\",\n  \"id\": \"<string>\",\n  \"is_active\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"ownership_type\": \"WORKSPACE\",\n  \"participant_count\": \"<integer>\",\n  \"updated_at\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "6ff9ac91-2ddc-42db-b0cd-09562f459b49",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meeting-templates",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "a89ff2be-c685-4808-93a5-c5f97b4cbf5c",
                              "name": "Access denied",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meeting-templates",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Forbidden",
                              "code": 403,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"forbidden\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "0f41c703-ba7f-48d0-b8b6-f997a2edf45e",
                              "name": "Template not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meeting-templates",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "99627d26-a3f7-4517-8fa5-45638e2394fb",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meeting-templates",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "name": "apply",
                          "description": "",
                          "item": [
                            {
                              "id": "dffb2309-5306-4604-8274-4686a4cd08ff",
                              "name": "Apply template to meeting",
                              "request": {
                                "name": "Apply template to meeting",
                                "description": {
                                  "content": "Applies a meeting template's content to an existing meeting. This is an additive operation.",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meeting-templates",
                                    ":id",
                                    "apply"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<uuid>",
                                      "key": "id",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Template ID to apply",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"meeting_id\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "response": [
                                {
                                  "id": "aaafd264-ee14-41e4-a503-e08de98e9b2e",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meeting-templates",
                                        ":id",
                                        "apply"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"meeting_id\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"application_id\": \"<string>\",\n  \"applied_items\": {\n    \"agenda_items\": \"<integer>\",\n    \"documents\": \"<integer>\",\n    \"participants\": \"<integer>\"\n  },\n  \"success\": \"<boolean>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "bc9bf49d-7f79-4f17-b70b-7d4fe13613ac",
                                  "name": "Invalid request",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meeting-templates",
                                        ":id",
                                        "apply"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"meeting_id\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "e963d99d-f1e9-448a-a0b2-fbceb3375d24",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meeting-templates",
                                        ":id",
                                        "apply"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"meeting_id\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "95eb82f5-0188-47af-9106-c1ed831fa94c",
                                  "name": "Access denied",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meeting-templates",
                                        ":id",
                                        "apply"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"meeting_id\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Forbidden",
                                  "code": 403,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"forbidden\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "27557686-012c-4e32-8a1e-4ceaffd58f34",
                                  "name": "Meeting or template not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meeting-templates",
                                        ":id",
                                        "apply"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"meeting_id\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "ab65ef0d-ad7f-40d8-9014-d76920107d5f",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meeting-templates",
                                        ":id",
                                        "apply"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"meeting_id\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            }
                          ]
                        },
                        {
                          "name": "next-steps",
                          "description": "",
                          "item": [
                            {
                              "id": "176cb843-323a-4e83-8899-a7178404509b",
                              "name": "List template next steps",
                              "request": {
                                "name": "List template next steps",
                                "description": {
                                  "content": "Retrieves the AI workflow configurations associated with a meeting template",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meeting-templates",
                                    ":id",
                                    "next-steps"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<uuid>",
                                      "key": "id",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Meeting template ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "60325dc2-52e5-4f2a-90a0-78984aed9913",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meeting-templates",
                                        ":id",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"items\": [\n    {\n      \"autopilot\": \"<boolean>\",\n      \"color\": \"<string>\",\n      \"description\": \"<string>\",\n      \"icon_name\": \"<string>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"sort_order\": \"<integer>\"\n    },\n    {\n      \"autopilot\": \"<boolean>\",\n      \"color\": \"<string>\",\n      \"description\": \"<string>\",\n      \"icon_name\": \"<string>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"sort_order\": \"<integer>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "bc150ce2-5b96-46a6-85fa-4fd9c29d7616",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meeting-templates",
                                        ":id",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "e8ef3951-0495-44c5-8a9c-20760db69fb0",
                                  "name": "Template not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meeting-templates",
                                        ":id",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "71e88886-da32-46cd-8ba2-d00adfbb0705",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meeting-templates",
                                        ":id",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            }
                          ]
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "meetings",
                  "description": "",
                  "item": [
                    {
                      "id": "30e7f708-9481-4ebe-915b-d8f60a73dae9",
                      "name": "Get meetings",
                      "request": {
                        "name": "Get meetings",
                        "description": {
                          "content": "Retrieves meetings accessible to the authenticated partner user",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "user",
                            "meetings"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "Limit",
                                "type": "text/plain"
                              },
                              "key": "limit",
                              "value": "25"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Offset",
                                "type": "text/plain"
                              },
                              "key": "offset",
                              "value": "0"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Start date filter (ISO 8601)",
                                "type": "text/plain"
                              },
                              "key": "start_date",
                              "value": "<string>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "End date filter (ISO 8601)",
                                "type": "text/plain"
                              },
                              "key": "end_date",
                              "value": "<string>"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "01172794-d1a7-45ef-8204-b4cde450c293",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meetings"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Start date filter (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "start_date",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "End date filter (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "end_date",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"items\": [\n    {\n      \"calendar_event_id\": \"<string>\",\n      \"created_at\": \"<string>\",\n      \"created_by_user_id\": \"<string>\",\n      \"end_time\": \"<string>\",\n      \"id\": \"<string>\",\n      \"redirect_to_meeting_id\": \"<string>\",\n      \"start_time\": \"<string>\",\n      \"status\": \"scheduled\",\n      \"summary_notes\": \"<string>\",\n      \"title\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"workspace_id\": \"<string>\"\n    },\n    {\n      \"calendar_event_id\": \"<string>\",\n      \"created_at\": \"<string>\",\n      \"created_by_user_id\": \"<string>\",\n      \"end_time\": \"<string>\",\n      \"id\": \"<string>\",\n      \"redirect_to_meeting_id\": \"<string>\",\n      \"start_time\": \"<string>\",\n      \"status\": \"ended\",\n      \"summary_notes\": \"<string>\",\n      \"title\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"workspace_id\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "52c39d29-d180-49d5-b2b8-6d505f0a88dc",
                          "name": "Invalid request parameters",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meetings"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Start date filter (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "start_date",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "End date filter (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "end_date",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"invalid_end_date\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "892f0541-0cf2-4c88-be31-d2af4109e86e",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meetings"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Start date filter (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "start_date",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "End date filter (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "end_date",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "0257ba02-adf1-48a5-8bf7-3f7a75e542a9",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meetings"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Start date filter (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "start_date",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "End date filter (ISO 8601)",
                                    "type": "text/plain"
                                  },
                                  "key": "end_date",
                                  "value": "<string>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "id": "8e458c94-14ff-41e8-93de-0648272f4cef",
                      "name": "Create meeting",
                      "request": {
                        "name": "Create meeting",
                        "description": {
                          "content": "Creates a new meeting on behalf of the authenticated partner user",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "user",
                            "meetings"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Content-Type",
                            "value": "application/json"
                          },
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "POST",
                        "body": {
                          "mode": "raw",
                          "raw": "{\n  \"title\": \"<string>\",\n  \"detail_level\": \"STANDARD\",\n  \"end_time\": \"<string>\",\n  \"is_instant\": \"<boolean>\",\n  \"start_time\": \"<string>\",\n  \"template_id\": \"<string>\"\n}",
                          "options": {
                            "raw": {
                              "headerFamily": "json",
                              "language": "json"
                            }
                          }
                        }
                      },
                      "response": [
                        {
                          "id": "0efbea6a-22dc-4208-b73e-72ccfa22ca70",
                          "name": "Created",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meetings"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"title\": \"<string>\",\n  \"detail_level\": \"STANDARD\",\n  \"end_time\": \"<string>\",\n  \"is_instant\": \"<boolean>\",\n  \"start_time\": \"<string>\",\n  \"template_id\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Created",
                          "code": 201,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"calendar_event_id\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"created_by_user_id\": \"<string>\",\n  \"end_time\": \"<string>\",\n  \"id\": \"<string>\",\n  \"redirect_to_meeting_id\": \"<string>\",\n  \"start_time\": \"<string>\",\n  \"status\": \"scheduled\",\n  \"summary_notes\": \"<string>\",\n  \"title\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "ba5baba2-a5de-4013-aba6-9c8705884f85",
                          "name": "Invalid request body",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meetings"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"title\": \"<string>\",\n  \"detail_level\": \"STANDARD\",\n  \"end_time\": \"<string>\",\n  \"is_instant\": \"<boolean>\",\n  \"start_time\": \"<string>\",\n  \"template_id\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"invalid_end_time\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "487354d3-3b3d-4226-8e23-a1ab111b4d46",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meetings"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"title\": \"<string>\",\n  \"detail_level\": \"STANDARD\",\n  \"end_time\": \"<string>\",\n  \"is_instant\": \"<boolean>\",\n  \"start_time\": \"<string>\",\n  \"template_id\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "65a7338a-3e5a-41e6-94a6-f279f4ac7a39",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meetings"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"title\": \"<string>\",\n  \"detail_level\": \"STANDARD\",\n  \"end_time\": \"<string>\",\n  \"is_instant\": \"<boolean>\",\n  \"start_time\": \"<string>\",\n  \"template_id\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "{id}",
                      "description": "",
                      "item": [
                        {
                          "id": "faa3bb3a-1c95-47c2-882a-eb4dbae246f1",
                          "name": "Get meeting by ID",
                          "request": {
                            "name": "Get meeting by ID",
                            "description": {
                              "content": "Retrieves a specific meeting by ID if accessible to the authenticated partner user. When the autopilot_smart_redirect feature flag is enabled and the meeting has been copied to the user's workspace, the response will contain only the redirect_to_meeting_id field pointing to the workspace copy. Clients should follow this redirect to access the correct meeting. The Partner SDK handles this automatically.",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meetings",
                                ":id"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "id",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Meeting ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "2d3ebb69-c78f-432f-9727-483c33818501",
                              "name": "Meeting details or smart redirect hint (redirect_to_meeting_id field only when redirecting)",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"calendar_event_id\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"created_by_user_id\": \"<string>\",\n  \"end_time\": \"<string>\",\n  \"id\": \"<string>\",\n  \"redirect_to_meeting_id\": \"<string>\",\n  \"start_time\": \"<string>\",\n  \"status\": \"scheduled\",\n  \"summary_notes\": \"<string>\",\n  \"title\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "2ec20ad4-f069-40ac-9cfa-0c68a5cf2dfb",
                              "name": "Invalid meeting ID",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "f60cdd0d-6524-4dd4-917d-7aab2929d0ba",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "5a7cad89-be04-4c53-be7d-4c09934b7e19",
                              "name": "Meeting not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "ce76ce67-4d67-45a1-832a-2e33ca7f3874",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "id": "b3ea4381-04b2-492f-ba34-7c35da924f2c",
                          "name": "Update meeting",
                          "request": {
                            "name": "Update meeting",
                            "description": {
                              "content": "Updates an existing meeting if accessible to the authenticated partner user",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "meetings",
                                ":id"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "id",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Meeting ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "PATCH",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"detail_level\": \"STANDARD\",\n  \"end_time\": \"<string>\",\n  \"start_time\": \"<string>\",\n  \"template_id\": \"<string>\",\n  \"title\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "response": [
                            {
                              "id": "bf3d539e-dd8c-4bdd-ab7e-319c831cb5fc",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PATCH",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"detail_level\": \"STANDARD\",\n  \"end_time\": \"<string>\",\n  \"start_time\": \"<string>\",\n  \"template_id\": \"<string>\",\n  \"title\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"calendar_event_id\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"created_by_user_id\": \"<string>\",\n  \"end_time\": \"<string>\",\n  \"id\": \"<string>\",\n  \"redirect_to_meeting_id\": \"<string>\",\n  \"start_time\": \"<string>\",\n  \"status\": \"scheduled\",\n  \"summary_notes\": \"<string>\",\n  \"title\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "ebd284a6-baab-4155-a26b-6f6d87cd5f80",
                              "name": "Invalid request body",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PATCH",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"detail_level\": \"STANDARD\",\n  \"end_time\": \"<string>\",\n  \"start_time\": \"<string>\",\n  \"template_id\": \"<string>\",\n  \"title\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"invalid_start_time\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "db2e98e7-a5c3-4457-9948-49db3d288fef",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PATCH",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"detail_level\": \"STANDARD\",\n  \"end_time\": \"<string>\",\n  \"start_time\": \"<string>\",\n  \"template_id\": \"<string>\",\n  \"title\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "f25add6a-1087-44ef-a3c0-9e7fd076690a",
                              "name": "Meeting not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PATCH",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"detail_level\": \"STANDARD\",\n  \"end_time\": \"<string>\",\n  \"start_time\": \"<string>\",\n  \"template_id\": \"<string>\",\n  \"title\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "e31f89cb-d3dd-411b-be69-b7a59aebd774",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PATCH",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"detail_level\": \"STANDARD\",\n  \"end_time\": \"<string>\",\n  \"start_time\": \"<string>\",\n  \"template_id\": \"<string>\",\n  \"title\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "name": "action-buttons",
                          "description": "",
                          "item": [
                            {
                              "id": "3584a23a-ed5c-44c8-aff2-6f6c45c517d8",
                              "name": "Get action buttons for a meeting",
                              "request": {
                                "name": "Get action buttons for a meeting",
                                "description": {
                                  "content": "Retrieves action buttons available for a meeting through its applied templates and next steps.\nAction buttons are de-duplicated across all next steps associated with the meeting.",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id",
                                    "action-buttons"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<uuid>",
                                      "key": "id",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Meeting ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "22bab2d6-a08a-4788-8a93-6f41e19a2f3b",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "action-buttons"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"items\": [\n    {\n      \"icon_name\": \"<string>\",\n      \"id\": \"<string>\",\n      \"is_default\": \"<boolean>\",\n      \"name\": \"<string>\"\n    },\n    {\n      \"icon_name\": \"<string>\",\n      \"id\": \"<string>\",\n      \"is_default\": \"<boolean>\",\n      \"name\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "a81a9d9c-6665-4ad8-88bb-cfb21a0d365b",
                                  "name": "Invalid request parameters",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "action-buttons"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "05dd00e5-e5ad-4e95-bfb0-f4808a5b3ecb",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "action-buttons"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "a3ebb0dc-0530-49ab-83be-961532327a14",
                                  "name": "Meeting not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "action-buttons"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "07f41ff6-3dc2-4812-bfaa-871dc3f3f025",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "action-buttons"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "name": "{button_id}",
                              "description": "",
                              "item": [
                                {
                                  "name": "trigger",
                                  "description": "",
                                  "item": [
                                    {
                                      "id": "f043f6ad-b37c-4512-ade0-0b58aaa26ea7",
                                      "name": "Trigger action button",
                                      "request": {
                                        "name": "Trigger action button",
                                        "description": {
                                          "content": "Fires an action button manually. This triggers a webhook to the partner's registered endpoint.",
                                          "type": "text/plain"
                                        },
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "action-buttons",
                                            ":button_id",
                                            "trigger"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": [
                                            {
                                              "type": "any",
                                              "value": "<string>",
                                              "key": "id",
                                              "disabled": false,
                                              "description": {
                                                "content": "(Required) Meeting ID",
                                                "type": "text/plain"
                                              }
                                            },
                                            {
                                              "type": "any",
                                              "value": "<string>",
                                              "key": "button_id",
                                              "disabled": false,
                                              "description": {
                                                "content": "(Required) Action Button ID",
                                                "type": "text/plain"
                                              }
                                            }
                                          ]
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"addressing_values\": {\n    \"key_0\": \"<string>\"\n  },\n  \"next_step_id\": \"<string>\",\n  \"result_id\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "response": [
                                        {
                                          "id": "1f66cb96-ab1f-4abb-93e1-b28e4386e957",
                                          "name": "Action button triggered successfully",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "action-buttons",
                                                ":button_id",
                                                "trigger"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Content-Type",
                                                "value": "application/json"
                                              },
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {
                                              "mode": "raw",
                                              "raw": "{\n  \"addressing_values\": {\n    \"key_0\": \"<string>\"\n  },\n  \"next_step_id\": \"<string>\",\n  \"result_id\": \"<string>\"\n}",
                                              "options": {
                                                "raw": {
                                                  "headerFamily": "json",
                                                  "language": "json"
                                                }
                                              }
                                            }
                                          },
                                          "status": "OK",
                                          "code": 200,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"invocation_id\": \"<string>\",\n  \"message\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "9f8ca59b-f1f9-4491-a512-29f38b952333",
                                          "name": "Invalid request parameters",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "action-buttons",
                                                ":button_id",
                                                "trigger"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Content-Type",
                                                "value": "application/json"
                                              },
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {
                                              "mode": "raw",
                                              "raw": "{\n  \"addressing_values\": {\n    \"key_0\": \"<string>\"\n  },\n  \"next_step_id\": \"<string>\",\n  \"result_id\": \"<string>\"\n}",
                                              "options": {
                                                "raw": {
                                                  "headerFamily": "json",
                                                  "language": "json"
                                                }
                                              }
                                            }
                                          },
                                          "status": "Bad Request",
                                          "code": 400,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "4b333da5-94ad-46d1-8f5f-83aa28808504",
                                          "name": "Authentication required",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "action-buttons",
                                                ":button_id",
                                                "trigger"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Content-Type",
                                                "value": "application/json"
                                              },
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {
                                              "mode": "raw",
                                              "raw": "{\n  \"addressing_values\": {\n    \"key_0\": \"<string>\"\n  },\n  \"next_step_id\": \"<string>\",\n  \"result_id\": \"<string>\"\n}",
                                              "options": {
                                                "raw": {
                                                  "headerFamily": "json",
                                                  "language": "json"
                                                }
                                              }
                                            }
                                          },
                                          "status": "Unauthorized",
                                          "code": 401,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "6dffc96b-764e-4abd-92b3-25cc59145424",
                                          "name": "Meeting or action button not found",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "action-buttons",
                                                ":button_id",
                                                "trigger"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Content-Type",
                                                "value": "application/json"
                                              },
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {
                                              "mode": "raw",
                                              "raw": "{\n  \"addressing_values\": {\n    \"key_0\": \"<string>\"\n  },\n  \"next_step_id\": \"<string>\",\n  \"result_id\": \"<string>\"\n}",
                                              "options": {
                                                "raw": {
                                                  "headerFamily": "json",
                                                  "language": "json"
                                                }
                                              }
                                            }
                                          },
                                          "status": "Not Found",
                                          "code": 404,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "026d20ad-c496-4ac6-8526-3273c19c6a94",
                                          "name": "Internal server error",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "action-buttons",
                                                ":button_id",
                                                "trigger"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Content-Type",
                                                "value": "application/json"
                                              },
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {
                                              "mode": "raw",
                                              "raw": "{\n  \"addressing_values\": {\n    \"key_0\": \"<string>\"\n  },\n  \"next_step_id\": \"<string>\",\n  \"result_id\": \"<string>\"\n}",
                                              "options": {
                                                "raw": {
                                                  "headerFamily": "json",
                                                  "language": "json"
                                                }
                                              }
                                            }
                                          },
                                          "status": "Internal Server Error",
                                          "code": 500,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        }
                                      ],
                                      "event": [],
                                      "protocolProfileBehavior": {
                                        "disableBodyPruning": true
                                      }
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        },
                        {
                          "name": "agenda-items",
                          "description": "",
                          "item": [
                            {
                              "id": "1ebc1e5d-64b0-4d78-be00-810804f7adb1",
                              "name": "Get agenda items for a meeting",
                              "request": {
                                "name": "Get agenda items for a meeting",
                                "description": {
                                  "content": "Retrieves all agenda items for a specific meeting. Filters out items restricted to leads if the user is not an editor.",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id",
                                    "agenda-items"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<uuid>",
                                      "key": "id",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Meeting ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "f3520958-73ec-4c50-bbf7-fee77d8aa282",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "agenda-items"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"items\": [\n    {\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"item_type\": \"<string>\",\n      \"meeting_id\": \"<string>\",\n      \"presenters\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"restricted_to_leads\": \"<boolean>\",\n      \"sequence\": \"<string>\",\n      \"status\": \"<string>\",\n      \"talking_points\": \"<string>\",\n      \"time_allocation_minutes\": \"<number>\",\n      \"title\": \"<string>\",\n      \"updated_at\": \"<string>\"\n    },\n    {\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"item_type\": \"<string>\",\n      \"meeting_id\": \"<string>\",\n      \"presenters\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"restricted_to_leads\": \"<boolean>\",\n      \"sequence\": \"<string>\",\n      \"status\": \"<string>\",\n      \"talking_points\": \"<string>\",\n      \"time_allocation_minutes\": \"<number>\",\n      \"title\": \"<string>\",\n      \"updated_at\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "2e39e832-d497-4492-b215-bb1f6caed288",
                                  "name": "Invalid meeting ID",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "agenda-items"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "4cff4a0b-bbaf-4c50-a844-bf80c02407c4",
                                  "name": "Unauthorized",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "agenda-items"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "d5fc0e0c-83c2-4542-bdb7-b7c640f71544",
                                  "name": "Meeting not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "agenda-items"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "464b5ee5-d85c-4900-ad77-74c31e274220",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "agenda-items"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "id": "c696a326-aef6-42d7-b3e1-673bd994232d",
                              "name": "Create agenda item",
                              "request": {
                                "name": "Create agenda item",
                                "description": {
                                  "content": "Creates a new agenda item for a meeting. User must be a participant of the meeting.",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id",
                                    "agenda-items"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<uuid>",
                                      "key": "id",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Meeting ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"item_type\": \"DECISION\",\n  \"title\": \"<string>\",\n  \"description\": \"<string>\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                },
                                "auth": null
                              },
                              "response": [
                                {
                                  "id": "ee50995e-cb75-4123-bd5e-a596e0d8a950",
                                  "name": "Agenda item created successfully",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "agenda-items"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"item_type\": \"DECISION\",\n  \"title\": \"<string>\",\n  \"description\": \"<string>\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Created",
                                  "code": 201,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"item_type\": \"<string>\",\n  \"meeting_id\": \"<string>\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"sequence\": \"<string>\",\n  \"status\": \"<string>\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\",\n  \"title\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "74aa9b73-1a77-43af-a6e7-16f1a9017660",
                                  "name": "Invalid request",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "agenda-items"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"item_type\": \"DECISION\",\n  \"title\": \"<string>\",\n  \"description\": \"<string>\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "bfa2ed3a-8763-41c5-bb3b-99a663f4b695",
                                  "name": "Unauthorized",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "agenda-items"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"item_type\": \"DECISION\",\n  \"title\": \"<string>\",\n  \"description\": \"<string>\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "9354d106-fb54-4ffb-8f1a-48844a05e051",
                                  "name": "User is not a participant of the meeting",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "agenda-items"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"item_type\": \"DECISION\",\n  \"title\": \"<string>\",\n  \"description\": \"<string>\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Forbidden",
                                  "code": 403,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"forbidden\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "05ea9847-50d2-48a0-b13f-707f16b1675e",
                                  "name": "Meeting not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "agenda-items"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"item_type\": \"DECISION\",\n  \"title\": \"<string>\",\n  \"description\": \"<string>\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "3e46f728-7ae8-416b-84d2-ad99f5ba43ba",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "agenda-items"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"item_type\": \"DECISION\",\n  \"title\": \"<string>\",\n  \"description\": \"<string>\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "name": "{item_id}",
                              "description": "",
                              "item": [
                                {
                                  "id": "9f62d1ec-dd62-4826-9446-3198732103f0",
                                  "name": "Delete agenda item",
                                  "request": {
                                    "name": "Delete agenda item",
                                    "description": {
                                      "content": "Deletes an agenda item. User must be a participant of the meeting.",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "agenda-items",
                                        ":item_id"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Meeting ID",
                                            "type": "text/plain"
                                          }
                                        },
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "item_id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Agenda Item ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "DELETE",
                                    "body": {},
                                    "auth": null
                                  },
                                  "response": [
                                    {
                                      "id": "2d1989af-27b2-40e1-9e5e-eaa4e2da4269",
                                      "name": "Agenda item deleted successfully",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "agenda-items",
                                            ":item_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "No Content",
                                      "code": 204,
                                      "header": [],
                                      "cookie": [],
                                      "_postman_previewlanguage": "text"
                                    },
                                    {
                                      "id": "6e25ee57-7002-4691-99db-73c481ce88b4",
                                      "name": "Invalid request",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "agenda-items",
                                            ":item_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "182e2439-ba89-4903-b59e-2dbf1d41a728",
                                      "name": "Unauthorized",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "agenda-items",
                                            ":item_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "5d099dbb-ec27-4c96-acba-01c70665f431",
                                      "name": "User is not a participant of the meeting",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "agenda-items",
                                            ":item_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Forbidden",
                                      "code": 403,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"forbidden\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "1f22f0c3-5f4a-42f3-9ae1-9a841c6522f8",
                                      "name": "Agenda item not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "agenda-items",
                                            ":item_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "5f2b7ed2-9b53-4cb9-b79e-990c7db687bc",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "agenda-items",
                                            ":item_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                },
                                {
                                  "id": "97ec6bbf-8a4b-4ca1-9450-c36f5d11de66",
                                  "name": "Update agenda item",
                                  "request": {
                                    "name": "Update agenda item",
                                    "description": {
                                      "content": "Updates an existing agenda item. User must be a participant of the meeting.",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "agenda-items",
                                        ":item_id"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Meeting ID",
                                            "type": "text/plain"
                                          }
                                        },
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "item_id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Agenda Item ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "PUT",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"description\": \"<string>\",\n  \"item_type\": \"DECISION\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"status\": \"in_progress\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\",\n  \"title\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    },
                                    "auth": null
                                  },
                                  "response": [
                                    {
                                      "id": "c468fddd-f75b-40fe-9329-fc6ac280f13f",
                                      "name": "Agenda item updated successfully",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "agenda-items",
                                            ":item_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "PUT",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"description\": \"<string>\",\n  \"item_type\": \"DECISION\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"status\": \"in_progress\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\",\n  \"title\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "OK",
                                      "code": 200,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"created_at\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<string>\",\n  \"item_type\": \"<string>\",\n  \"meeting_id\": \"<string>\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"sequence\": \"<string>\",\n  \"status\": \"<string>\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\",\n  \"title\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "f8ee19f6-5ae9-4f7c-846c-1f80dadbdafd",
                                      "name": "Invalid request",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "agenda-items",
                                            ":item_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "PUT",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"description\": \"<string>\",\n  \"item_type\": \"DECISION\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"status\": \"in_progress\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\",\n  \"title\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "49f05d3c-a398-4f77-8a11-0bd924491f2e",
                                      "name": "Unauthorized",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "agenda-items",
                                            ":item_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "PUT",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"description\": \"<string>\",\n  \"item_type\": \"DECISION\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"status\": \"in_progress\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\",\n  \"title\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "81517f20-e697-42ce-a600-ed1f52c74616",
                                      "name": "User is not a participant of the meeting",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "agenda-items",
                                            ":item_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "PUT",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"description\": \"<string>\",\n  \"item_type\": \"DECISION\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"status\": \"in_progress\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\",\n  \"title\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Forbidden",
                                      "code": 403,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"forbidden\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "f803349e-b651-4131-aa08-0a852ef2eac0",
                                      "name": "Agenda item not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "agenda-items",
                                            ":item_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "PUT",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"description\": \"<string>\",\n  \"item_type\": \"DECISION\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"status\": \"in_progress\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\",\n  \"title\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "78f897fe-85a8-467d-9562-9569b32990a4",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "agenda-items",
                                            ":item_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "PUT",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"description\": \"<string>\",\n  \"item_type\": \"DECISION\",\n  \"presenters\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"restricted_to_leads\": \"<boolean>\",\n  \"status\": \"in_progress\",\n  \"talking_points\": \"<string>\",\n  \"time_allocation_minutes\": \"<number>\",\n  \"title\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                }
                              ]
                            }
                          ]
                        },
                        {
                          "name": "calendar",
                          "description": "",
                          "item": [
                            {
                              "name": "link",
                              "description": "",
                              "item": [
                                {
                                  "id": "31c490aa-098b-474b-af0e-5ff27cb053b7",
                                  "name": "Link calendar event to meeting",
                                  "request": {
                                    "name": "Link calendar event to meeting",
                                    "description": {
                                      "content": "Link an existing calendar event to a specific meeting",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "calendar",
                                        "link"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<string>",
                                          "key": "id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Meeting ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"calendar_event_id\": \"<string>\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "response": [
                                    {
                                      "id": "4b90f595-be30-4931-ac69-8cd0967222cb",
                                      "name": "Meeting linked to calendar event successfully",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "calendar",
                                            "link"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"calendar_event_id\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "OK",
                                      "code": 200,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"message\": \"<string>\",\n  \"success\": \"<boolean>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "d146b4f3-f407-4581-8811-59c14a6b5240",
                                      "name": "Invalid meeting ID format or request body",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "calendar",
                                            "link"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"calendar_event_id\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"invalid_request_body\",\n  \"error\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "5bec7676-ec2f-43ab-8c48-5f6e14f37264",
                                      "name": "Authentication required",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "calendar",
                                            "link"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"calendar_event_id\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "ffbac056-a137-4d2e-8b47-9e7370350493",
                                      "name": "Meeting or calendar event not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "calendar",
                                            "link"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"calendar_event_id\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "5d4f4a71-54df-4d12-a9c2-d4b1fa2a21bb",
                                      "name": "Calendar event already linked to another meeting",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "calendar",
                                            "link"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"calendar_event_id\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Conflict",
                                      "code": 409,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"conflict\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "0516521f-8d72-4b7a-bdf2-98abc6d415f1",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "calendar",
                                            "link"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"calendar_event_id\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                }
                              ]
                            },
                            {
                              "name": "unlink",
                              "description": "",
                              "item": [
                                {
                                  "id": "bc8b15b4-a5db-4dc7-a0af-af4bd2573cb7",
                                  "name": "Unlink calendar event from meeting",
                                  "request": {
                                    "name": "Unlink calendar event from meeting",
                                    "description": {
                                      "content": "Remove the link between a calendar event and a specific meeting",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "calendar",
                                        "unlink"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<string>",
                                          "key": "id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Meeting ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "DELETE",
                                    "body": {}
                                  },
                                  "response": [
                                    {
                                      "id": "240c69a3-e749-4a2c-9f2d-6efd0bffc3d5",
                                      "name": "Meeting unlinked from calendar event successfully",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "calendar",
                                            "unlink"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "OK",
                                      "code": 200,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"message\": \"<string>\",\n  \"success\": \"<boolean>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "976e2078-cf39-402b-9612-bc318c7c024e",
                                      "name": "Invalid meeting ID format",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "calendar",
                                            "unlink"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "2016813f-b737-4f9e-a6ee-760086c783c7",
                                      "name": "Authentication required",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "calendar",
                                            "unlink"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "4ede56b5-c16e-4820-a36f-e27116408e14",
                                      "name": "Meeting not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "calendar",
                                            "unlink"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "148b11d6-d02c-4ef5-af36-907ea4559ea1",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "calendar",
                                            "unlink"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                }
                              ]
                            }
                          ]
                        },
                        {
                          "name": "context",
                          "description": "",
                          "item": [
                            {
                              "id": "ab40cd30-5e33-46b0-b6b1-6fb97a86b719",
                              "name": "List meeting contexts",
                              "request": {
                                "name": "List meeting contexts",
                                "description": {
                                  "content": "Lists partner-scoped meeting contexts for a meeting with pagination.",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id",
                                    "context"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Limit",
                                        "type": "text/plain"
                                      },
                                      "key": "limit",
                                      "value": "25"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Offset",
                                        "type": "text/plain"
                                      },
                                      "key": "offset",
                                      "value": "0"
                                    }
                                  ],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<uuid>",
                                      "key": "id",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Meeting ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "40b866de-83ed-426c-a3dc-368301cd396b",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "context"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Limit",
                                            "type": "text/plain"
                                          },
                                          "key": "limit",
                                          "value": "25"
                                        },
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Offset",
                                            "type": "text/plain"
                                          },
                                          "key": "offset",
                                          "value": "0"
                                        }
                                      ],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"items\": [\n    {\n      \"context_type\": \"<string>\",\n      \"created_at\": \"<string>\",\n      \"created_by_user_id\": \"<string>\",\n      \"deleted_at\": \"<string>\",\n      \"file_status\": \"<string>\",\n      \"id\": \"<string>\",\n      \"meeting_id\": \"<string>\",\n      \"model_id\": \"<string>\",\n      \"partner_app_id\": \"<string>\",\n      \"platform_name\": \"<string>\",\n      \"source_format\": \"<string>\",\n      \"title\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"workspace_id\": \"<string>\"\n    },\n    {\n      \"context_type\": \"<string>\",\n      \"created_at\": \"<string>\",\n      \"created_by_user_id\": \"<string>\",\n      \"deleted_at\": \"<string>\",\n      \"file_status\": \"<string>\",\n      \"id\": \"<string>\",\n      \"meeting_id\": \"<string>\",\n      \"model_id\": \"<string>\",\n      \"partner_app_id\": \"<string>\",\n      \"platform_name\": \"<string>\",\n      \"source_format\": \"<string>\",\n      \"title\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"workspace_id\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "38008754-915d-43ba-b8ce-c9eea5493e69",
                                  "name": "Invalid request",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "context"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Limit",
                                            "type": "text/plain"
                                          },
                                          "key": "limit",
                                          "value": "25"
                                        },
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Offset",
                                            "type": "text/plain"
                                          },
                                          "key": "offset",
                                          "value": "0"
                                        }
                                      ],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "c57b6238-74c4-4432-a64b-fce88e224ed7",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "context"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Limit",
                                            "type": "text/plain"
                                          },
                                          "key": "limit",
                                          "value": "25"
                                        },
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Offset",
                                            "type": "text/plain"
                                          },
                                          "key": "offset",
                                          "value": "0"
                                        }
                                      ],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "316bb575-6be2-4e92-a741-76ecc90770b0",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "context"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Limit",
                                            "type": "text/plain"
                                          },
                                          "key": "limit",
                                          "value": "25"
                                        },
                                        {
                                          "disabled": false,
                                          "description": {
                                            "content": "Offset",
                                            "type": "text/plain"
                                          },
                                          "key": "offset",
                                          "value": "0"
                                        }
                                      ],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "id": "a067955c-4154-4144-bd93-07c001f7659a",
                              "name": "Upload meeting context",
                              "request": {
                                "name": "Upload meeting context",
                                "description": {
                                  "content": "Uploads a partner-scoped meeting context for a meeting using multipart/form-data.",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id",
                                    "context"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<uuid>",
                                      "key": "id",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Meeting ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "multipart/form-data"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "formdata",
                                  "formdata": [
                                    {
                                      "description": {
                                        "content": "(Required) Context file",
                                        "type": "text/plain"
                                      },
                                      "key": "file",
                                      "type": "file"
                                    },
                                    {
                                      "description": {
                                        "content": "(Required) Source format (json,csv,tsv,xml,html,yaml,md,txt)",
                                        "type": "text/plain"
                                      },
                                      "key": "source_format",
                                      "value": "<string>",
                                      "type": "text"
                                    },
                                    {
                                      "description": {
                                        "content": "Context title",
                                        "type": "text/plain"
                                      },
                                      "key": "title",
                                      "value": "<string>",
                                      "type": "text"
                                    },
                                    {
                                      "description": {
                                        "content": "Logical context type",
                                        "type": "text/plain"
                                      },
                                      "key": "context_type",
                                      "value": "<string>",
                                      "type": "text"
                                    }
                                  ]
                                }
                              },
                              "response": [
                                {
                                  "id": "25baef04-4492-4609-83be-ff57edbabcad",
                                  "name": "Created",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "context"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "multipart/form-data"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "formdata",
                                      "formdata": [
                                        {
                                          "description": {
                                            "content": "(Required) Context file",
                                            "type": "text/plain"
                                          },
                                          "key": "file",
                                          "type": "file"
                                        },
                                        {
                                          "description": {
                                            "content": "(Required) Source format (json,csv,tsv,xml,html,yaml,md,txt)",
                                            "type": "text/plain"
                                          },
                                          "key": "source_format",
                                          "value": "<string>",
                                          "type": "text"
                                        },
                                        {
                                          "description": {
                                            "content": "Context title",
                                            "type": "text/plain"
                                          },
                                          "key": "title",
                                          "value": "<string>",
                                          "type": "text"
                                        },
                                        {
                                          "description": {
                                            "content": "Logical context type",
                                            "type": "text/plain"
                                          },
                                          "key": "context_type",
                                          "value": "<string>",
                                          "type": "text"
                                        }
                                      ]
                                    }
                                  },
                                  "status": "Created",
                                  "code": 201,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"context_type\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"created_by_user_id\": \"<string>\",\n  \"deleted_at\": \"<string>\",\n  \"file_status\": \"<string>\",\n  \"id\": \"<string>\",\n  \"meeting_id\": \"<string>\",\n  \"model_id\": \"<string>\",\n  \"partner_app_id\": \"<string>\",\n  \"platform_name\": \"<string>\",\n  \"source_format\": \"<string>\",\n  \"title\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "ce03f5a4-6afc-46c8-bba1-a19e7fba43b7",
                                  "name": "Invalid request",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "context"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "multipart/form-data"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "formdata",
                                      "formdata": [
                                        {
                                          "description": {
                                            "content": "(Required) Context file",
                                            "type": "text/plain"
                                          },
                                          "key": "file",
                                          "type": "file"
                                        },
                                        {
                                          "description": {
                                            "content": "(Required) Source format (json,csv,tsv,xml,html,yaml,md,txt)",
                                            "type": "text/plain"
                                          },
                                          "key": "source_format",
                                          "value": "<string>",
                                          "type": "text"
                                        },
                                        {
                                          "description": {
                                            "content": "Context title",
                                            "type": "text/plain"
                                          },
                                          "key": "title",
                                          "value": "<string>",
                                          "type": "text"
                                        },
                                        {
                                          "description": {
                                            "content": "Logical context type",
                                            "type": "text/plain"
                                          },
                                          "key": "context_type",
                                          "value": "<string>",
                                          "type": "text"
                                        }
                                      ]
                                    }
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "3ed933f6-430d-49f0-8f7c-69b877eb5e5f",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "context"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "multipart/form-data"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "formdata",
                                      "formdata": [
                                        {
                                          "description": {
                                            "content": "(Required) Context file",
                                            "type": "text/plain"
                                          },
                                          "key": "file",
                                          "type": "file"
                                        },
                                        {
                                          "description": {
                                            "content": "(Required) Source format (json,csv,tsv,xml,html,yaml,md,txt)",
                                            "type": "text/plain"
                                          },
                                          "key": "source_format",
                                          "value": "<string>",
                                          "type": "text"
                                        },
                                        {
                                          "description": {
                                            "content": "Context title",
                                            "type": "text/plain"
                                          },
                                          "key": "title",
                                          "value": "<string>",
                                          "type": "text"
                                        },
                                        {
                                          "description": {
                                            "content": "Logical context type",
                                            "type": "text/plain"
                                          },
                                          "key": "context_type",
                                          "value": "<string>",
                                          "type": "text"
                                        }
                                      ]
                                    }
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "7138ab2d-056f-4530-a3db-4f8bd8c9709c",
                                  "name": "Meeting not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "context"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "multipart/form-data"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "formdata",
                                      "formdata": [
                                        {
                                          "description": {
                                            "content": "(Required) Context file",
                                            "type": "text/plain"
                                          },
                                          "key": "file",
                                          "type": "file"
                                        },
                                        {
                                          "description": {
                                            "content": "(Required) Source format (json,csv,tsv,xml,html,yaml,md,txt)",
                                            "type": "text/plain"
                                          },
                                          "key": "source_format",
                                          "value": "<string>",
                                          "type": "text"
                                        },
                                        {
                                          "description": {
                                            "content": "Context title",
                                            "type": "text/plain"
                                          },
                                          "key": "title",
                                          "value": "<string>",
                                          "type": "text"
                                        },
                                        {
                                          "description": {
                                            "content": "Logical context type",
                                            "type": "text/plain"
                                          },
                                          "key": "context_type",
                                          "value": "<string>",
                                          "type": "text"
                                        }
                                      ]
                                    }
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "151c4ec9-a3a0-4198-9b15-523f6dd790c5",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "context"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "multipart/form-data"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "formdata",
                                      "formdata": [
                                        {
                                          "description": {
                                            "content": "(Required) Context file",
                                            "type": "text/plain"
                                          },
                                          "key": "file",
                                          "type": "file"
                                        },
                                        {
                                          "description": {
                                            "content": "(Required) Source format (json,csv,tsv,xml,html,yaml,md,txt)",
                                            "type": "text/plain"
                                          },
                                          "key": "source_format",
                                          "value": "<string>",
                                          "type": "text"
                                        },
                                        {
                                          "description": {
                                            "content": "Context title",
                                            "type": "text/plain"
                                          },
                                          "key": "title",
                                          "value": "<string>",
                                          "type": "text"
                                        },
                                        {
                                          "description": {
                                            "content": "Logical context type",
                                            "type": "text/plain"
                                          },
                                          "key": "context_type",
                                          "value": "<string>",
                                          "type": "text"
                                        }
                                      ]
                                    }
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "name": "{context_id}",
                              "description": "",
                              "item": [
                                {
                                  "id": "6dfd415c-3511-4e2c-a31e-40f35e5711f0",
                                  "name": "Delete meeting context",
                                  "request": {
                                    "name": "Delete meeting context",
                                    "description": {
                                      "content": "Deletes a specific partner-scoped meeting context by context ID.",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "context",
                                        ":context_id"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Meeting ID",
                                            "type": "text/plain"
                                          }
                                        },
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "context_id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Context ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "DELETE",
                                    "body": {}
                                  },
                                  "response": [
                                    {
                                      "id": "811a9b77-f95b-420b-bf35-de15380a5228",
                                      "name": "No Content",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "context",
                                            ":context_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "No Content",
                                      "code": 204,
                                      "header": [],
                                      "cookie": [],
                                      "_postman_previewlanguage": "text"
                                    },
                                    {
                                      "id": "8c7ce385-f822-4b7e-b317-239df6164941",
                                      "name": "Invalid request",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "context",
                                            ":context_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "834eda62-65e3-48db-9628-989538518765",
                                      "name": "Authentication required",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "context",
                                            ":context_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "fcdae1b8-57f6-4d95-a229-3d1a18a79523",
                                      "name": "Context not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "context",
                                            ":context_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "99e12635-ae34-4cb7-a1ba-08e36f442104",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "context",
                                            ":context_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                },
                                {
                                  "id": "484e9703-6e8b-432c-84ef-4a92254a53bb",
                                  "name": "Get meeting context",
                                  "request": {
                                    "name": "Get meeting context",
                                    "description": {
                                      "content": "Retrieves a specific partner-scoped meeting context by context ID.",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "context",
                                        ":context_id"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Meeting ID",
                                            "type": "text/plain"
                                          }
                                        },
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "context_id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Context ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "response": [
                                    {
                                      "id": "aa5afe14-f580-4a9b-95e8-a257fb485755",
                                      "name": "OK",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "context",
                                            ":context_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "OK",
                                      "code": 200,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"context_type\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"created_by_user_id\": \"<string>\",\n  \"deleted_at\": \"<string>\",\n  \"file_status\": \"<string>\",\n  \"id\": \"<string>\",\n  \"meeting_id\": \"<string>\",\n  \"model_id\": \"<string>\",\n  \"partner_app_id\": \"<string>\",\n  \"platform_name\": \"<string>\",\n  \"source_format\": \"<string>\",\n  \"title\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "b0862e2c-a24e-47d5-a540-6a49912fbcb4",
                                      "name": "Invalid request",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "context",
                                            ":context_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "6403837c-7505-4151-a57d-17550529e0a0",
                                      "name": "Authentication required",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "context",
                                            ":context_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "eba65d87-001d-423b-812b-39c14fdeac68",
                                      "name": "Context not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "context",
                                            ":context_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "010470bf-8061-4c06-b81b-72e90e3a8a9b",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "context",
                                            ":context_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                },
                                {
                                  "name": "content",
                                  "description": "",
                                  "item": [
                                    {
                                      "id": "256e3646-78ce-4488-944d-2eef5a5d8a28",
                                      "name": "Download meeting context content",
                                      "request": {
                                        "name": "Download meeting context content",
                                        "description": {
                                          "content": "Streams the file bytes for a specific partner-scoped meeting context.",
                                          "type": "text/plain"
                                        },
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "context",
                                            ":context_id",
                                            "content"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": [
                                            {
                                              "type": "any",
                                              "value": "<uuid>",
                                              "key": "id",
                                              "disabled": false,
                                              "description": {
                                                "content": "(Required) Meeting ID",
                                                "type": "text/plain"
                                              }
                                            },
                                            {
                                              "type": "any",
                                              "value": "<uuid>",
                                              "key": "context_id",
                                              "disabled": false,
                                              "description": {
                                                "content": "(Required) Context ID",
                                                "type": "text/plain"
                                              }
                                            }
                                          ]
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/octet-stream"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "response": [
                                        {
                                          "id": "bc72ef66-8620-44c0-9320-8e156fa7935f",
                                          "name": "Context file stream; Content-Disposition includes filename",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "context",
                                                ":context_id",
                                                "content"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Accept",
                                                "value": "application/octet-stream"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "GET",
                                            "body": {}
                                          },
                                          "status": "OK",
                                          "code": 200,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/octet-stream"
                                            }
                                          ],
                                          "body": "<binary>",
                                          "cookie": [],
                                          "_postman_previewlanguage": "text"
                                        },
                                        {
                                          "id": "5f0c81b0-47fd-4e12-8e94-572ae603a8e4",
                                          "name": "Invalid request",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "context",
                                                ":context_id",
                                                "content"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Accept",
                                                "value": "application/octet-stream"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "GET",
                                            "body": {}
                                          },
                                          "status": "Bad Request",
                                          "code": 400,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/octet-stream"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "text"
                                        },
                                        {
                                          "id": "a181b1ab-a4ec-43d5-86d2-2a6c45df8115",
                                          "name": "Authentication required",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "context",
                                                ":context_id",
                                                "content"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Accept",
                                                "value": "application/octet-stream"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "GET",
                                            "body": {}
                                          },
                                          "status": "Unauthorized",
                                          "code": 401,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/octet-stream"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "text"
                                        },
                                        {
                                          "id": "bc1c1840-9cfe-4072-9a3b-6e8f8171371b",
                                          "name": "Context not found",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "context",
                                                ":context_id",
                                                "content"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Accept",
                                                "value": "application/octet-stream"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "GET",
                                            "body": {}
                                          },
                                          "status": "Not Found",
                                          "code": 404,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/octet-stream"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "text"
                                        },
                                        {
                                          "id": "2bf393cc-fd4a-4860-bf73-7ab54f373ac0",
                                          "name": "Internal server error",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "context",
                                                ":context_id",
                                                "content"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Accept",
                                                "value": "application/octet-stream"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "GET",
                                            "body": {}
                                          },
                                          "status": "Internal Server Error",
                                          "code": 500,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/octet-stream"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "text"
                                        }
                                      ],
                                      "event": [],
                                      "protocolProfileBehavior": {
                                        "disableBodyPruning": true
                                      }
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        },
                        {
                          "name": "next-steps",
                          "description": "",
                          "item": [
                            {
                              "id": "daa931f9-1345-4885-8bc6-d2723c30380b",
                              "name": "Get next steps for a meeting",
                              "request": {
                                "name": "Get next steps for a meeting",
                                "description": {
                                  "content": "Retrieves next steps available for a meeting through its applied templates",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id",
                                    "next-steps"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<uuid>",
                                      "key": "id",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Meeting ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "4d3da52d-1814-4137-b578-b46aad886be9",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"items\": [\n    {\n      \"action_buttons\": [\n        {\n          \"icon_name\": \"<string>\",\n          \"id\": \"<string>\",\n          \"is_default\": \"<boolean>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"icon_name\": \"<string>\",\n          \"id\": \"<string>\",\n          \"is_default\": \"<boolean>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"color\": \"<string>\",\n      \"description\": \"<string>\",\n      \"icon_name\": \"<string>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"redirect_url\": \"<string>\",\n      \"sort_order\": \"<integer>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"action_buttons\": [\n        {\n          \"icon_name\": \"<string>\",\n          \"id\": \"<string>\",\n          \"is_default\": \"<boolean>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"icon_name\": \"<string>\",\n          \"id\": \"<string>\",\n          \"is_default\": \"<boolean>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"color\": \"<string>\",\n      \"description\": \"<string>\",\n      \"icon_name\": \"<string>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"redirect_url\": \"<string>\",\n      \"sort_order\": \"<integer>\",\n      \"type\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "8b855795-f6a8-4a34-8b50-e83918741c07",
                                  "name": "Invalid request parameters",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "eb560174-cfbf-4d32-828c-16e40a758b0a",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "444e8f85-574c-44c5-9db7-f9b9ea77f766",
                                  "name": "Meeting not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "9e297fd1-ccf3-45d1-be55-c054435f6d0c",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "next-steps"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "name": "{next_step_id}",
                              "description": "",
                              "item": [
                                {
                                  "name": "execute",
                                  "description": "",
                                  "item": [
                                    {
                                      "id": "b497f8b6-7751-4ae5-becd-7a11620725f7",
                                      "name": "Execute a next step",
                                      "request": {
                                        "name": "Execute a next step",
                                        "description": {
                                          "content": "Executes a next step for a meeting. For AI-type next steps, this triggers AI generation. For redirect-type next steps, this returns the redirect URL.",
                                          "type": "text/plain"
                                        },
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "next-steps",
                                            ":next_step_id",
                                            "execute"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": [
                                            {
                                              "type": "any",
                                              "value": "<uuid>",
                                              "key": "id",
                                              "disabled": false,
                                              "description": {
                                                "content": "(Required) Meeting ID",
                                                "type": "text/plain"
                                              }
                                            },
                                            {
                                              "type": "any",
                                              "value": "<uuid>",
                                              "key": "next_step_id",
                                              "disabled": false,
                                              "description": {
                                                "content": "(Required) Next Step ID",
                                                "type": "text/plain"
                                              }
                                            }
                                          ]
                                        },
                                        "header": [
                                          {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                          },
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          }
                                        ],
                                        "method": "POST",
                                        "body": {
                                          "mode": "raw",
                                          "raw": "{\n  \"action_button_id\": \"<string>\"\n}",
                                          "options": {
                                            "raw": {
                                              "headerFamily": "json",
                                              "language": "json"
                                            }
                                          }
                                        }
                                      },
                                      "response": [
                                        {
                                          "id": "bd2cd47e-b1a4-4114-b37d-2b2eb10143a7",
                                          "name": "OK",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "next-steps",
                                                ":next_step_id",
                                                "execute"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Content-Type",
                                                "value": "application/json"
                                              },
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {
                                              "mode": "raw",
                                              "raw": "{\n  \"action_button_id\": \"<string>\"\n}",
                                              "options": {
                                                "raw": {
                                                  "headerFamily": "json",
                                                  "language": "json"
                                                }
                                              }
                                            }
                                          },
                                          "status": "OK",
                                          "code": 200,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"content_format\": \"<string>\",\n  \"execution_log_id\": \"<string>\",\n  \"generated_text\": \"<string>\",\n  \"redirect_url\": \"<string>\",\n  \"result_id\": \"<string>\",\n  \"status\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "285ceaa9-0e79-46ac-898c-51819a4452f8",
                                          "name": "Invalid request parameters",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "next-steps",
                                                ":next_step_id",
                                                "execute"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Content-Type",
                                                "value": "application/json"
                                              },
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {
                                              "mode": "raw",
                                              "raw": "{\n  \"action_button_id\": \"<string>\"\n}",
                                              "options": {
                                                "raw": {
                                                  "headerFamily": "json",
                                                  "language": "json"
                                                }
                                              }
                                            }
                                          },
                                          "status": "Bad Request",
                                          "code": 400,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "b120ff89-5fe1-48be-ba5c-42fb782c48ad",
                                          "name": "Authentication required",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "next-steps",
                                                ":next_step_id",
                                                "execute"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Content-Type",
                                                "value": "application/json"
                                              },
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {
                                              "mode": "raw",
                                              "raw": "{\n  \"action_button_id\": \"<string>\"\n}",
                                              "options": {
                                                "raw": {
                                                  "headerFamily": "json",
                                                  "language": "json"
                                                }
                                              }
                                            }
                                          },
                                          "status": "Unauthorized",
                                          "code": 401,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "baa6a93e-c166-4b72-9d29-0104382927db",
                                          "name": "Meeting or next step not found",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "next-steps",
                                                ":next_step_id",
                                                "execute"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Content-Type",
                                                "value": "application/json"
                                              },
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {
                                              "mode": "raw",
                                              "raw": "{\n  \"action_button_id\": \"<string>\"\n}",
                                              "options": {
                                                "raw": {
                                                  "headerFamily": "json",
                                                  "language": "json"
                                                }
                                              }
                                            }
                                          },
                                          "status": "Not Found",
                                          "code": 404,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        },
                                        {
                                          "id": "f5d01c62-6713-484a-8b2a-f81fd135473f",
                                          "name": "Internal server error",
                                          "originalRequest": {
                                            "url": {
                                              "path": [
                                                "v1",
                                                "partner",
                                                "user",
                                                "meetings",
                                                ":id",
                                                "next-steps",
                                                ":next_step_id",
                                                "execute"
                                              ],
                                              "host": [
                                                "{{baseUrl}}"
                                              ],
                                              "query": [],
                                              "variable": []
                                            },
                                            "header": [
                                              {
                                                "key": "Content-Type",
                                                "value": "application/json"
                                              },
                                              {
                                                "key": "Accept",
                                                "value": "application/json"
                                              },
                                              {
                                                "description": {
                                                  "content": "Added as a part of security scheme: oauth2",
                                                  "type": "text/plain"
                                                },
                                                "key": "Authorization",
                                                "value": "<token>"
                                              }
                                            ],
                                            "method": "POST",
                                            "body": {
                                              "mode": "raw",
                                              "raw": "{\n  \"action_button_id\": \"<string>\"\n}",
                                              "options": {
                                                "raw": {
                                                  "headerFamily": "json",
                                                  "language": "json"
                                                }
                                              }
                                            }
                                          },
                                          "status": "Internal Server Error",
                                          "code": 500,
                                          "header": [
                                            {
                                              "key": "Content-Type",
                                              "value": "application/json"
                                            }
                                          ],
                                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                          "cookie": [],
                                          "_postman_previewlanguage": "json"
                                        }
                                      ],
                                      "event": [],
                                      "protocolProfileBehavior": {
                                        "disableBodyPruning": true
                                      }
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        },
                        {
                          "name": "participants",
                          "description": "",
                          "item": [
                            {
                              "id": "e0f4a4a5-12ea-43b3-a2fe-d90c3e5d33ed",
                              "name": "Get meeting participants",
                              "request": {
                                "name": "Get meeting participants",
                                "description": {
                                  "content": "Retrieves all participants for a specific meeting accessible to the authenticated partner user",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id",
                                    "participants"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<string>",
                                      "key": "id",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Meeting ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "ace6019e-2918-42e3-b02d-88d069411226",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "participants"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"items\": [\n    {\n      \"created_at\": \"<string>\",\n      \"email\": \"<string>\",\n      \"id\": \"<string>\",\n      \"is_attended\": \"<boolean>\",\n      \"meeting_id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"role\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"user_id\": \"<string>\"\n    },\n    {\n      \"created_at\": \"<string>\",\n      \"email\": \"<string>\",\n      \"id\": \"<string>\",\n      \"is_attended\": \"<boolean>\",\n      \"meeting_id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"role\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"user_id\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "7f58d564-8e44-4774-b748-716bd73ec771",
                                  "name": "Invalid meeting ID",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "participants"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "c28792df-b8bf-429f-9b1c-08a13086f28d",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "participants"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "bea4a70b-be5a-49be-ac17-a2c4a853272d",
                                  "name": "Meeting not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "participants"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "66bb7024-af68-42db-8d06-afc9d4c67a4a",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "participants"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "id": "999df752-1f79-4c3e-b138-633a59c2eaed",
                              "name": "Add meeting participant",
                              "request": {
                                "name": "Add meeting participant",
                                "description": {
                                  "content": "Adds a participant to a specific meeting. User must be an editor of the meeting.",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "meetings",
                                    ":id",
                                    "participants"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<uuid>",
                                      "key": "id",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Meeting ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "POST",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"email\": \"<string>\",\n  \"name\": \"<string>\",\n  \"role\": \"EDITOR\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "response": [
                                {
                                  "id": "bcb7cdcf-30dc-49d6-ae64-205c6f0f2ba0",
                                  "name": "Participant added successfully",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "participants"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"email\": \"<string>\",\n  \"name\": \"<string>\",\n  \"role\": \"EDITOR\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Created",
                                  "code": 201,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"created_at\": \"<string>\",\n  \"email\": \"<string>\",\n  \"id\": \"<string>\",\n  \"is_attended\": \"<boolean>\",\n  \"meeting_id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"role\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"user_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "b74c7efd-b289-4c3e-9c4f-4f8bb6efdb01",
                                  "name": "Invalid request",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "participants"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"email\": \"<string>\",\n  \"name\": \"<string>\",\n  \"role\": \"EDITOR\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "bbcefe9c-3208-480e-9db3-ab22dcf40113",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "participants"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"email\": \"<string>\",\n  \"name\": \"<string>\",\n  \"role\": \"EDITOR\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "72339047-d802-4ce7-a1db-37f5ed30a13d",
                                  "name": "User is not an editor of the meeting",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "participants"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"email\": \"<string>\",\n  \"name\": \"<string>\",\n  \"role\": \"EDITOR\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Forbidden",
                                  "code": 403,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"forbidden\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "a8c03349-498a-4d16-bbef-cfc60fcd92fb",
                                  "name": "Meeting not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "participants"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"email\": \"<string>\",\n  \"name\": \"<string>\",\n  \"role\": \"EDITOR\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "862e6990-ea5b-48ff-ba25-96e3733c5b6e",
                                  "name": "Participant already exists",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "participants"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"email\": \"<string>\",\n  \"name\": \"<string>\",\n  \"role\": \"EDITOR\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Conflict",
                                  "code": 409,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"conflict\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "1e85ebf1-336a-4275-b46e-dcede5f2df51",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "participants"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                      },
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {
                                      "mode": "raw",
                                      "raw": "{\n  \"email\": \"<string>\",\n  \"name\": \"<string>\",\n  \"role\": \"EDITOR\"\n}",
                                      "options": {
                                        "raw": {
                                          "headerFamily": "json",
                                          "language": "json"
                                        }
                                      }
                                    }
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "name": "{participant_id}",
                              "description": "",
                              "item": [
                                {
                                  "id": "28048aed-2927-4f2c-afe4-9cd3d16f45b7",
                                  "name": "Remove meeting participant",
                                  "request": {
                                    "name": "Remove meeting participant",
                                    "description": {
                                      "content": "Removes a participant from a specific meeting. User must be an editor of the meeting.",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "meetings",
                                        ":id",
                                        "participants",
                                        ":participant_id"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Meeting ID",
                                            "type": "text/plain"
                                          }
                                        },
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "participant_id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Participant ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "DELETE",
                                    "body": {}
                                  },
                                  "response": [
                                    {
                                      "id": "f0061e6d-aa9f-47d9-bbc1-9d5237ae4d58",
                                      "name": "Participant removed successfully",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "participants",
                                            ":participant_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "No Content",
                                      "code": 204,
                                      "header": [],
                                      "cookie": [],
                                      "_postman_previewlanguage": "text"
                                    },
                                    {
                                      "id": "58ffdfee-7ca5-413f-a036-163e99ca7290",
                                      "name": "Invalid request",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "participants",
                                            ":participant_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "1d2c00f2-f777-4106-add0-046d06cc28bc",
                                      "name": "Authentication required",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "participants",
                                            ":participant_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "4a420048-0e13-4e20-8117-20f57b17c7cc",
                                      "name": "User is not an editor of the meeting",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "participants",
                                            ":participant_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Forbidden",
                                      "code": 403,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"forbidden\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "4c237f11-1be3-4b1d-a6da-08f1efdf01d4",
                                      "name": "Participant not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "participants",
                                            ":participant_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "288d826b-9aea-4274-a919-9599748aecd0",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "meetings",
                                            ":id",
                                            "participants",
                                            ":participant_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "next-step-results",
                  "description": "",
                  "item": [
                    {
                      "name": "{result_id}",
                      "description": "",
                      "item": [
                        {
                          "id": "68e2cb31-383e-4b9c-8309-6a3c6fb34433",
                          "name": "Get a next step result",
                          "request": {
                            "name": "Get a next step result",
                            "description": {
                              "content": "Retrieves AI-generated content from a next step execution. Results expire after 7 days.",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "next-step-results",
                                ":result_id"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<uuid>",
                                  "key": "result_id",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Result ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "fcdc2753-0811-433d-a1e8-b9014efb70fc",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "next-step-results",
                                    ":result_id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"content_format\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"execution_log_id\": \"<string>\",\n  \"expires_at\": \"<string>\",\n  \"generated_text\": \"<string>\",\n  \"id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "eb6f56e6-0a3d-4082-9831-715511997f40",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "next-step-results",
                                    ":result_id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "cd0370b8-97cc-4f37-bfe1-6801b08c7749",
                              "name": "Result not found or expired",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "next-step-results",
                                    ":result_id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "a65c4714-db93-4d91-ba1f-da82ef17c4be",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "next-step-results",
                                    ":result_id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "profile",
                  "description": "",
                  "item": [
                    {
                      "id": "59aea0b8-9821-49eb-baa3-8b2d12314815",
                      "name": "Get user profile",
                      "request": {
                        "name": "Get user profile",
                        "description": {
                          "content": "Retrieves the authenticated user's profile information including workspace details and role",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "user",
                            "profile"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "95717e2e-24d4-48b7-a77d-413ec21e312b",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "profile"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"created_at\": \"<string>\",\n  \"display_name\": \"<string>\",\n  \"email\": \"<string>\",\n  \"id\": \"<string>\",\n  \"workspace_id\": \"<string>\",\n  \"workspace_name\": \"<string>\",\n  \"workspace_role\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "c52dd95b-d7ba-4784-8beb-125664f20f2f",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "profile"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "aada6145-9d8b-4aa4-8160-f30ff2048187",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "profile"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    }
                  ]
                },
                {
                  "name": "sessions",
                  "description": "",
                  "item": [
                    {
                      "id": "23f73cc8-9277-4ea8-8daa-dbe56556b1f8",
                      "name": "List chat sessions",
                      "request": {
                        "name": "List chat sessions",
                        "description": {
                          "content": "Retrieves a paginated list of chat sessions for the authenticated user",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "user",
                            "sessions"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "Filter by meeting ID",
                                "type": "text/plain"
                              },
                              "key": "meeting_id",
                              "value": "<uuid>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Maximum sessions to return (1-100, default: 25)",
                                "type": "text/plain"
                              },
                              "key": "limit",
                              "value": "<integer>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Number of sessions to skip (0-based, default: 0)",
                                "type": "text/plain"
                              },
                              "key": "offset",
                              "value": "<integer>"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "e2b348d2-1c33-4815-8979-0e177c086f3b",
                          "name": "Sessions retrieved successfully",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "sessions"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by meeting ID",
                                    "type": "text/plain"
                                  },
                                  "key": "meeting_id",
                                  "value": "<uuid>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum sessions to return (1-100, default: 25)",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "<integer>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of sessions to skip (0-based, default: 0)",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "<integer>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"items\": [\n    {\n      \"created_at\": \"<string>\",\n      \"id\": \"<string>\",\n      \"meeting_id\": \"<string>\",\n      \"metadata\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\",\n        \"key_2\": \"<string>\",\n        \"key_3\": \"<string>\"\n      },\n      \"status\": \"closed\",\n      \"title\": \"<string>\",\n      \"turn_count\": \"<integer>\",\n      \"updated_at\": \"<string>\"\n    },\n    {\n      \"created_at\": \"<string>\",\n      \"id\": \"<string>\",\n      \"meeting_id\": \"<string>\",\n      \"metadata\": {\n        \"key_0\": \"<string>\",\n        \"key_1\": \"<string>\",\n        \"key_2\": \"<string>\",\n        \"key_3\": \"<string>\"\n      },\n      \"status\": \"expired\",\n      \"title\": \"<string>\",\n      \"turn_count\": \"<integer>\",\n      \"updated_at\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "ea3d45b8-97d1-421c-b68a-0e285a382d64",
                          "name": "Invalid query parameters",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "sessions"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by meeting ID",
                                    "type": "text/plain"
                                  },
                                  "key": "meeting_id",
                                  "value": "<uuid>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum sessions to return (1-100, default: 25)",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "<integer>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of sessions to skip (0-based, default: 0)",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "<integer>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "7c88cc92-1021-4e17-87e7-1ef2c55474df",
                          "name": "Unauthorized",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "sessions"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by meeting ID",
                                    "type": "text/plain"
                                  },
                                  "key": "meeting_id",
                                  "value": "<uuid>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum sessions to return (1-100, default: 25)",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "<integer>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of sessions to skip (0-based, default: 0)",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "<integer>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "698602f4-0e95-4c15-bf68-cde8efe9adab",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "sessions"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by meeting ID",
                                    "type": "text/plain"
                                  },
                                  "key": "meeting_id",
                                  "value": "<uuid>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum sessions to return (1-100, default: 25)",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "<integer>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of sessions to skip (0-based, default: 0)",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "<integer>"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "id": "d0500560-6174-4b80-a0fa-9fde3000418d",
                      "name": "Create a new chat session",
                      "request": {
                        "name": "Create a new chat session",
                        "description": {
                          "content": "Creates a new chat session for the authenticated user. Optionally accepts an initial message.",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "user",
                            "sessions"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "disabled": false,
                            "description": {
                              "content": "Client-provided idempotency key",
                              "type": "text/plain"
                            },
                            "key": "Idempotency-Key",
                            "value": "<string>"
                          },
                          {
                            "key": "Content-Type",
                            "value": "application/json"
                          },
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "POST",
                        "body": {
                          "mode": "raw",
                          "raw": "{\n  \"message\": \"<string>\",\n  \"context_document_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"meeting_id\": \"<string>\",\n  \"metadata\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\"\n  }\n}",
                          "options": {
                            "raw": {
                              "headerFamily": "json",
                              "language": "json"
                            }
                          }
                        }
                      },
                      "response": [
                        {
                          "id": "3d4d2911-df48-4bf5-959f-b5a022ce670c",
                          "name": "Created",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "sessions"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "disabled": false,
                                "description": {
                                  "content": "Client-provided idempotency key",
                                  "type": "text/plain"
                                },
                                "key": "Idempotency-Key",
                                "value": "<string>"
                              },
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"message\": \"<string>\",\n  \"context_document_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"meeting_id\": \"<string>\",\n  \"metadata\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\"\n  }\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Created",
                          "code": 201,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"created_at\": \"<string>\",\n  \"id\": \"<string>\",\n  \"initial_turn\": {\n    \"agent_metadata\": {\n      \"referenced_documents\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"token_usage\": {\n        \"completion_tokens\": \"<integer>\",\n        \"prompt_tokens\": \"<integer>\",\n        \"total_tokens\": \"<integer>\"\n      },\n      \"tool_calls\": [\n        {\n          \"name\": \"<string>\",\n          \"status\": \"success\"\n        },\n        {\n          \"name\": \"<string>\",\n          \"status\": \"success\"\n        }\n      ]\n    },\n    \"completed_at\": \"<string>\",\n    \"content\": \"<string>\",\n    \"created_at\": \"<string>\",\n    \"error\": {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\"\n    },\n    \"id\": \"<string>\",\n    \"role\": \"user\",\n    \"sequence_number\": \"<integer>\",\n    \"session_id\": \"<string>\",\n    \"status\": \"queued\"\n  },\n  \"meeting_id\": \"<string>\",\n  \"metadata\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\"\n  },\n  \"status\": \"closed\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "3f2cbb33-7d7b-4196-9065-49b01c3643f9",
                          "name": "Invalid request",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "sessions"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "disabled": false,
                                "description": {
                                  "content": "Client-provided idempotency key",
                                  "type": "text/plain"
                                },
                                "key": "Idempotency-Key",
                                "value": "<string>"
                              },
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"message\": \"<string>\",\n  \"context_document_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"meeting_id\": \"<string>\",\n  \"metadata\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\"\n  }\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "9c7b1f3b-4e55-429c-98ae-8dabc9d4c32f",
                          "name": "Unauthorized",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "sessions"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "disabled": false,
                                "description": {
                                  "content": "Client-provided idempotency key",
                                  "type": "text/plain"
                                },
                                "key": "Idempotency-Key",
                                "value": "<string>"
                              },
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"message\": \"<string>\",\n  \"context_document_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"meeting_id\": \"<string>\",\n  \"metadata\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\"\n  }\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "7d237b64-bad7-495d-a3e6-5fca487db37e",
                          "name": "Validation error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "sessions"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "disabled": false,
                                "description": {
                                  "content": "Client-provided idempotency key",
                                  "type": "text/plain"
                                },
                                "key": "Idempotency-Key",
                                "value": "<string>"
                              },
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"message\": \"<string>\",\n  \"context_document_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"meeting_id\": \"<string>\",\n  \"metadata\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\"\n  }\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                          "code": 422,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"<string>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "95c1bd68-da23-46f3-92a1-00fce84d7f51",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "sessions"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "disabled": false,
                                "description": {
                                  "content": "Client-provided idempotency key",
                                  "type": "text/plain"
                                },
                                "key": "Idempotency-Key",
                                "value": "<string>"
                              },
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"message\": \"<string>\",\n  \"context_document_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"meeting_id\": \"<string>\",\n  \"metadata\": {\n    \"key_0\": \"<string>\",\n    \"key_1\": \"<string>\",\n    \"key_2\": \"<string>\"\n  }\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "{id}",
                      "description": "",
                      "item": [
                        {
                          "id": "137210b1-ac0e-4dff-8780-5e6e7b0653d5",
                          "name": "Get chat session details",
                          "request": {
                            "name": "Get chat session details",
                            "description": {
                              "content": "Retrieves details of a specific chat session including turns based on query parameters",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "sessions",
                                ":id"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum turns to return (1-200, default: 50)",
                                    "type": "text/plain"
                                  },
                                  "key": "turn_limit",
                                  "value": "<integer>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Pagination offset for turns",
                                    "type": "text/plain"
                                  },
                                  "key": "turn_offset",
                                  "value": "<integer>"
                                }
                              ],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<uuid>",
                                  "key": "id",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Session ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "0a1495a1-8e01-49a2-b354-4c11c326bdee",
                              "name": "Session retrieved successfully",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "sessions",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Maximum turns to return (1-200, default: 50)",
                                        "type": "text/plain"
                                      },
                                      "key": "turn_limit",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Pagination offset for turns",
                                        "type": "text/plain"
                                      },
                                      "key": "turn_offset",
                                      "value": "<integer>"
                                    }
                                  ],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"session\": {\n    \"created_at\": \"<string>\",\n    \"id\": \"<string>\",\n    \"meeting_id\": \"<string>\",\n    \"metadata\": {\n      \"key_0\": \"<string>\",\n      \"key_1\": \"<string>\"\n    },\n    \"status\": \"active\",\n    \"title\": \"<string>\",\n    \"turn_count\": \"<integer>\",\n    \"updated_at\": \"<string>\"\n  },\n  \"turn_pagination\": {\n    \"has_more\": \"<boolean>\",\n    \"limit\": \"<integer>\",\n    \"offset\": \"<integer>\",\n    \"total\": \"<integer>\"\n  },\n  \"turns\": [\n    {\n      \"agent_metadata\": {\n        \"referenced_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"token_usage\": {\n          \"completion_tokens\": \"<integer>\",\n          \"prompt_tokens\": \"<integer>\",\n          \"total_tokens\": \"<integer>\"\n        },\n        \"tool_calls\": [\n          {\n            \"name\": \"<string>\",\n            \"status\": \"failure\"\n          },\n          {\n            \"name\": \"<string>\",\n            \"status\": \"failure\"\n          }\n        ]\n      },\n      \"completed_at\": \"<string>\",\n      \"content\": \"<string>\",\n      \"created_at\": \"<string>\",\n      \"error\": {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\"\n      },\n      \"id\": \"<string>\",\n      \"role\": \"user\",\n      \"sequence_number\": \"<integer>\",\n      \"session_id\": \"<string>\",\n      \"status\": \"queued\"\n    },\n    {\n      \"agent_metadata\": {\n        \"referenced_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"token_usage\": {\n          \"completion_tokens\": \"<integer>\",\n          \"prompt_tokens\": \"<integer>\",\n          \"total_tokens\": \"<integer>\"\n        },\n        \"tool_calls\": [\n          {\n            \"name\": \"<string>\",\n            \"status\": \"failure\"\n          },\n          {\n            \"name\": \"<string>\",\n            \"status\": \"failure\"\n          }\n        ]\n      },\n      \"completed_at\": \"<string>\",\n      \"content\": \"<string>\",\n      \"created_at\": \"<string>\",\n      \"error\": {\n        \"code\": \"<string>\",\n        \"message\": \"<string>\"\n      },\n      \"id\": \"<string>\",\n      \"role\": \"user\",\n      \"sequence_number\": \"<integer>\",\n      \"session_id\": \"<string>\",\n      \"status\": \"completed\"\n    }\n  ]\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "99df7821-05c6-4294-a62b-f95a9d11dd4b",
                              "name": "Invalid session ID",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "sessions",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Maximum turns to return (1-200, default: 50)",
                                        "type": "text/plain"
                                      },
                                      "key": "turn_limit",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Pagination offset for turns",
                                        "type": "text/plain"
                                      },
                                      "key": "turn_offset",
                                      "value": "<integer>"
                                    }
                                  ],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "61fa0ca0-a5b8-4edc-b137-a5da48d10854",
                              "name": "Unauthorized",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "sessions",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Maximum turns to return (1-200, default: 50)",
                                        "type": "text/plain"
                                      },
                                      "key": "turn_limit",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Pagination offset for turns",
                                        "type": "text/plain"
                                      },
                                      "key": "turn_offset",
                                      "value": "<integer>"
                                    }
                                  ],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "407bec81-b2ca-4352-8007-1411885e4b03",
                              "name": "Session not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "sessions",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Maximum turns to return (1-200, default: 50)",
                                        "type": "text/plain"
                                      },
                                      "key": "turn_limit",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Pagination offset for turns",
                                        "type": "text/plain"
                                      },
                                      "key": "turn_offset",
                                      "value": "<integer>"
                                    }
                                  ],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "0344483b-2f95-46c6-aaf3-90ddaba17f94",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "sessions",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Maximum turns to return (1-200, default: 50)",
                                        "type": "text/plain"
                                      },
                                      "key": "turn_limit",
                                      "value": "<integer>"
                                    },
                                    {
                                      "disabled": false,
                                      "description": {
                                        "content": "Pagination offset for turns",
                                        "type": "text/plain"
                                      },
                                      "key": "turn_offset",
                                      "value": "<integer>"
                                    }
                                  ],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "id": "1787caad-c482-4c5a-bf6b-e36e36f469a5",
                          "name": "Send a message to a session",
                          "request": {
                            "name": "Send a message to a session",
                            "description": {
                              "content": "Submits a new message to an existing chat session",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "sessions",
                                ":id"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "id",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Session ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "disabled": false,
                                "description": {
                                  "content": "Client-provided idempotency key",
                                  "type": "text/plain"
                                },
                                "key": "Idempotency-Key",
                                "value": "<string>"
                              },
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "PUT",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"message\": \"<string>\",\n  \"meeting_id\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "response": [
                            {
                              "id": "efe8fd12-32f3-4066-8a15-b638f9ef4646",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "sessions",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "disabled": false,
                                    "description": {
                                      "content": "Client-provided idempotency key",
                                      "type": "text/plain"
                                    },
                                    "key": "Idempotency-Key",
                                    "value": "<string>"
                                  },
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"message\": \"<string>\",\n  \"meeting_id\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"turn\": {\n    \"agent_metadata\": {\n      \"referenced_documents\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"token_usage\": {\n        \"completion_tokens\": \"<integer>\",\n        \"prompt_tokens\": \"<integer>\",\n        \"total_tokens\": \"<integer>\"\n      },\n      \"tool_calls\": [\n        {\n          \"name\": \"<string>\",\n          \"status\": \"success\"\n        },\n        {\n          \"name\": \"<string>\",\n          \"status\": \"failure\"\n        }\n      ]\n    },\n    \"completed_at\": \"<string>\",\n    \"content\": \"<string>\",\n    \"created_at\": \"<string>\",\n    \"error\": {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\"\n    },\n    \"id\": \"<string>\",\n    \"role\": \"agent\",\n    \"sequence_number\": \"<integer>\",\n    \"session_id\": \"<string>\",\n    \"status\": \"queued\"\n  }\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "72a51ea8-ebe4-4146-9818-0ffcd5332114",
                              "name": "Invalid request",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "sessions",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "disabled": false,
                                    "description": {
                                      "content": "Client-provided idempotency key",
                                      "type": "text/plain"
                                    },
                                    "key": "Idempotency-Key",
                                    "value": "<string>"
                                  },
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"message\": \"<string>\",\n  \"meeting_id\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "c13ddd2e-259b-499a-a7fc-80d22648f340",
                              "name": "Unauthorized",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "sessions",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "disabled": false,
                                    "description": {
                                      "content": "Client-provided idempotency key",
                                      "type": "text/plain"
                                    },
                                    "key": "Idempotency-Key",
                                    "value": "<string>"
                                  },
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"message\": \"<string>\",\n  \"meeting_id\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "a4378bab-0172-457a-89c5-83d5daaedf23",
                              "name": "Session not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "sessions",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "disabled": false,
                                    "description": {
                                      "content": "Client-provided idempotency key",
                                      "type": "text/plain"
                                    },
                                    "key": "Idempotency-Key",
                                    "value": "<string>"
                                  },
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"message\": \"<string>\",\n  \"meeting_id\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "a1441664-0b79-42b9-be3b-6b4ac932c700",
                              "name": "Session not active",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "sessions",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "disabled": false,
                                    "description": {
                                      "content": "Client-provided idempotency key",
                                      "type": "text/plain"
                                    },
                                    "key": "Idempotency-Key",
                                    "value": "<string>"
                                  },
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"message\": \"<string>\",\n  \"meeting_id\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Conflict",
                              "code": 409,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"conflict\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "49e97972-2261-43a1-800b-859253924758",
                              "name": "Validation error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "sessions",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "disabled": false,
                                    "description": {
                                      "content": "Client-provided idempotency key",
                                      "type": "text/plain"
                                    },
                                    "key": "Idempotency-Key",
                                    "value": "<string>"
                                  },
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"message\": \"<string>\",\n  \"meeting_id\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                              "code": 422,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"<string>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "7f2158d3-8a0a-4317-a410-129c6a3c7887",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "sessions",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "disabled": false,
                                    "description": {
                                      "content": "Client-provided idempotency key",
                                      "type": "text/plain"
                                    },
                                    "key": "Idempotency-Key",
                                    "value": "<string>"
                                  },
                                  {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                  },
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "PUT",
                                "body": {
                                  "mode": "raw",
                                  "raw": "{\n  \"message\": \"<string>\",\n  \"meeting_id\": \"<string>\"\n}",
                                  "options": {
                                    "raw": {
                                      "headerFamily": "json",
                                      "language": "json"
                                    }
                                  }
                                }
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        },
                        {
                          "name": "turns",
                          "description": "",
                          "item": [
                            {
                              "name": "{turn_id}",
                              "description": "",
                              "item": [
                                {
                                  "id": "f579868f-bac0-4d9a-a55b-1a3f4c027f46",
                                  "name": "Get specific turn",
                                  "request": {
                                    "name": "Get specific turn",
                                    "description": {
                                      "content": "Retrieves details of a specific turn within a chat session by its ID",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "sessions",
                                        ":id",
                                        "turns",
                                        ":turn_id"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Session ID",
                                            "type": "text/plain"
                                          }
                                        },
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "turn_id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Turn ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "response": [
                                    {
                                      "id": "117c94e2-dc2b-49bf-a576-fe9554b9f698",
                                      "name": "Turn retrieved successfully",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "sessions",
                                            ":id",
                                            "turns",
                                            ":turn_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "OK",
                                      "code": 200,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"turn\": {\n    \"agent_metadata\": {\n      \"referenced_documents\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"token_usage\": {\n        \"completion_tokens\": \"<integer>\",\n        \"prompt_tokens\": \"<integer>\",\n        \"total_tokens\": \"<integer>\"\n      },\n      \"tool_calls\": [\n        {\n          \"name\": \"<string>\",\n          \"status\": \"success\"\n        },\n        {\n          \"name\": \"<string>\",\n          \"status\": \"failure\"\n        }\n      ]\n    },\n    \"completed_at\": \"<string>\",\n    \"content\": \"<string>\",\n    \"created_at\": \"<string>\",\n    \"error\": {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\"\n    },\n    \"id\": \"<string>\",\n    \"role\": \"user\",\n    \"sequence_number\": \"<integer>\",\n    \"session_id\": \"<string>\",\n    \"status\": \"failed\"\n  }\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "d89435c3-5ef7-4ba6-9a9d-bd582fbda7a8",
                                      "name": "Invalid session ID or turn ID",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "sessions",
                                            ":id",
                                            "turns",
                                            ":turn_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "3405305b-29cd-4f27-b112-ca918dbe59bf",
                                      "name": "Unauthorized",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "sessions",
                                            ":id",
                                            "turns",
                                            ":turn_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "9f85e7d5-5847-4d02-aedb-002893597a31",
                                      "name": "Session or turn not found",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "sessions",
                                            ":id",
                                            "turns",
                                            ":turn_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "244b6518-f9f1-4605-b511-cc6ef4e191cb",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "sessions",
                                            ":id",
                                            "turns",
                                            ":turn_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "GET",
                                        "body": {}
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "toolkits",
                  "description": "",
                  "item": [
                    {
                      "id": "0e1dfd3b-ed8d-4699-a774-ffadacbaf877",
                      "name": "List available toolkits",
                      "request": {
                        "name": "List available toolkits",
                        "description": {
                          "content": "Retrieves toolkits available for installation in the user's workspace",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "user",
                            "toolkits"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "Maximum number of items per page",
                                "type": "text/plain"
                              },
                              "key": "limit",
                              "value": "25"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Number of items to skip",
                                "type": "text/plain"
                              },
                              "key": "offset",
                              "value": "0"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "d57a7fb6-3692-48f6-a830-0725c896b8a5",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "toolkits"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum number of items per page",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of items to skip",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"items\": [\n    {\n      \"action_buttons_count\": \"<integer>\",\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"is_active\": \"<boolean>\",\n      \"name\": \"<string>\",\n      \"next_steps_count\": \"<integer>\",\n      \"ownership_type\": \"PARTNER\",\n      \"slug\": \"<string>\",\n      \"templates_count\": \"<integer>\",\n      \"updated_at\": \"<string>\",\n      \"version\": \"<string>\"\n    },\n    {\n      \"action_buttons_count\": \"<integer>\",\n      \"created_at\": \"<string>\",\n      \"description\": \"<string>\",\n      \"id\": \"<string>\",\n      \"is_active\": \"<boolean>\",\n      \"name\": \"<string>\",\n      \"next_steps_count\": \"<integer>\",\n      \"ownership_type\": \"PARTNER\",\n      \"slug\": \"<string>\",\n      \"templates_count\": \"<integer>\",\n      \"updated_at\": \"<string>\",\n      \"version\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "188c4752-1d03-461e-ac76-4ee02c3683e4",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "toolkits"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum number of items per page",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of items to skip",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "7d73397a-b43a-40ac-81ad-1196a3591ee0",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "toolkits"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Maximum number of items per page",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Number of items to skip",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "{toolkitId}",
                      "description": "",
                      "item": [
                        {
                          "name": "install",
                          "description": "",
                          "item": [
                            {
                              "id": "bcdd8f68-099a-4384-9504-2de0c1e12cca",
                              "name": "Install toolkit",
                              "request": {
                                "name": "Install toolkit",
                                "description": {
                                  "content": "Installs a toolkit to the authenticated user's workspace, creating all defined entities",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "toolkits",
                                    ":toolkitId",
                                    "install"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<uuid>",
                                      "key": "toolkitId",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Toolkit ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "POST",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "2c50776b-37c7-47be-9b02-fa06da9e97cc",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "toolkits",
                                        ":toolkitId",
                                        "install"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"entities\": {\n    \"action_buttons\": {\n      \"key_0\": \"<string>\",\n      \"key_1\": \"<string>\"\n    },\n    \"next_steps\": {\n      \"key_0\": \"<string>\",\n      \"key_1\": \"<string>\"\n    },\n    \"shortcuts\": {\n      \"key_0\": \"<string>\"\n    },\n    \"templates\": {\n      \"key_0\": \"<string>\"\n    }\n  },\n  \"id\": \"<string>\",\n  \"installed_at\": \"<string>\",\n  \"installed_by\": \"<string>\",\n  \"toolkit_id\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "ed8f9bb0-7a32-44f1-985c-d1eca8705d7e",
                                  "name": "Invalid request",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "toolkits",
                                        ":toolkitId",
                                        "install"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {}
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "4a2d3eb7-238b-4aee-a0d8-35f82a55a593",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "toolkits",
                                        ":toolkitId",
                                        "install"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "55536a9c-7eac-41d0-abd1-720741c291f6",
                                  "name": "Toolkit not found",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "toolkits",
                                        ":toolkitId",
                                        "install"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {}
                                  },
                                  "status": "Not Found",
                                  "code": 404,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "cab591e1-8d40-4c91-b8f0-b527170a854f",
                                  "name": "Toolkit already installed",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "toolkits",
                                        ":toolkitId",
                                        "install"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {}
                                  },
                                  "status": "Conflict",
                                  "code": 409,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"conflict\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "4e890895-cae9-4db6-9a5b-5f93aa615e06",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "toolkits",
                                        ":toolkitId",
                                        "install"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "POST",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            }
                          ]
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "workflow-runs",
                  "description": "",
                  "item": [
                    {
                      "id": "65cd6f61-e10c-4561-b74a-dcf45e696690",
                      "name": "List workflow runs",
                      "request": {
                        "name": "List workflow runs",
                        "description": {
                          "content": "Returns a paginated list of workflow runs in the caller's workspace. Optional filters may be supplied to narrow the result set.",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "user",
                            "workflow-runs"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [
                            {
                              "disabled": false,
                              "description": {
                                "content": "Limit",
                                "type": "text/plain"
                              },
                              "key": "limit",
                              "value": "25"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Offset",
                                "type": "text/plain"
                              },
                              "key": "offset",
                              "value": "0"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Filter by run status",
                                "type": "text/plain"
                              },
                              "key": "status",
                              "value": "cancelled"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Filter by workflow template ID",
                                "type": "text/plain"
                              },
                              "key": "workflow_template_id",
                              "value": "<string>"
                            },
                            {
                              "disabled": false,
                              "description": {
                                "content": "Filter by originating object type",
                                "type": "text/plain"
                              },
                              "key": "originating_type",
                              "value": "canvas"
                            }
                          ],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "GET",
                        "body": {}
                      },
                      "response": [
                        {
                          "id": "91940316-8bd2-453a-9c09-ee6251beef6d",
                          "name": "OK",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "workflow-runs"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by run status",
                                    "type": "text/plain"
                                  },
                                  "key": "status",
                                  "value": "cancelled"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by workflow template ID",
                                    "type": "text/plain"
                                  },
                                  "key": "workflow_template_id",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by originating object type",
                                    "type": "text/plain"
                                  },
                                  "key": "originating_type",
                                  "value": "canvas"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "OK",
                          "code": 200,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"items\": [\n    {\n      \"completed_at\": \"<string>\",\n      \"context_json\": {},\n      \"created_at\": \"<string>\",\n      \"current_step_ids\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"originating_id\": \"<string>\",\n      \"originating_type\": \"meeting\",\n      \"owner_user_id\": \"<string>\",\n      \"started_at\": \"<string>\",\n      \"status\": \"pending\",\n      \"trigger_type\": \"manual\",\n      \"triggered_by\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"workflow_template_id\": \"<string>\",\n      \"workspace_id\": \"<string>\"\n    },\n    {\n      \"completed_at\": \"<string>\",\n      \"context_json\": {},\n      \"created_at\": \"<string>\",\n      \"current_step_ids\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"originating_id\": \"<string>\",\n      \"originating_type\": \"canvas\",\n      \"owner_user_id\": \"<string>\",\n      \"started_at\": \"<string>\",\n      \"status\": \"frozen\",\n      \"trigger_type\": \"manual\",\n      \"triggered_by\": \"<string>\",\n      \"updated_at\": \"<string>\",\n      \"workflow_template_id\": \"<string>\",\n      \"workspace_id\": \"<string>\"\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "0ff288d0-e5bb-4d74-9361-a08002038918",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "workflow-runs"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by run status",
                                    "type": "text/plain"
                                  },
                                  "key": "status",
                                  "value": "cancelled"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by workflow template ID",
                                    "type": "text/plain"
                                  },
                                  "key": "workflow_template_id",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by originating object type",
                                    "type": "text/plain"
                                  },
                                  "key": "originating_type",
                                  "value": "canvas"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "e48eaf38-9b80-4ca6-8fee-b39471c06eb5",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "workflow-runs"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Limit",
                                    "type": "text/plain"
                                  },
                                  "key": "limit",
                                  "value": "25"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Offset",
                                    "type": "text/plain"
                                  },
                                  "key": "offset",
                                  "value": "0"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by run status",
                                    "type": "text/plain"
                                  },
                                  "key": "status",
                                  "value": "cancelled"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by workflow template ID",
                                    "type": "text/plain"
                                  },
                                  "key": "workflow_template_id",
                                  "value": "<string>"
                                },
                                {
                                  "disabled": false,
                                  "description": {
                                    "content": "Filter by originating object type",
                                    "type": "text/plain"
                                  },
                                  "key": "originating_type",
                                  "value": "canvas"
                                }
                              ],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "id": "eacf9d2e-35dc-4072-8ec9-8a488d43f027",
                      "name": "Trigger a workflow run",
                      "request": {
                        "name": "Trigger a workflow run",
                        "description": {
                          "content": "Creates and enqueues a new manual workflow run. Autopilot-triggered runs are reserved for internal use and cannot be created via this endpoint.",
                          "type": "text/plain"
                        },
                        "url": {
                          "path": [
                            "v1",
                            "partner",
                            "user",
                            "workflow-runs"
                          ],
                          "host": [
                            "{{baseUrl}}"
                          ],
                          "query": [],
                          "variable": []
                        },
                        "header": [
                          {
                            "key": "Content-Type",
                            "value": "application/json"
                          },
                          {
                            "key": "Accept",
                            "value": "application/json"
                          }
                        ],
                        "method": "POST",
                        "body": {
                          "mode": "raw",
                          "raw": "{\n  \"originating_id\": \"<string>\",\n  \"originating_type\": \"meeting\",\n  \"workflow_template_id\": \"<string>\"\n}",
                          "options": {
                            "raw": {
                              "headerFamily": "json",
                              "language": "json"
                            }
                          }
                        }
                      },
                      "response": [
                        {
                          "id": "a32689fb-2eec-4c88-9940-3bf603bfc1af",
                          "name": "Created",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "workflow-runs"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"originating_id\": \"<string>\",\n  \"originating_type\": \"meeting\",\n  \"workflow_template_id\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Created",
                          "code": 201,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"completed_at\": \"<string>\",\n  \"context_json\": {},\n  \"created_at\": \"<string>\",\n  \"current_step_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"originating_id\": \"<string>\",\n  \"originating_type\": \"canvas\",\n  \"owner_user_id\": \"<string>\",\n  \"started_at\": \"<string>\",\n  \"status\": \"cancelled\",\n  \"trigger_type\": \"autopilot\",\n  \"triggered_by\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"workflow_template_id\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "d8a1a5ec-f240-459c-86af-025a9a456713",
                          "name": "Invalid request body, invalid trigger type, or validation error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "workflow-runs"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"originating_id\": \"<string>\",\n  \"originating_type\": \"meeting\",\n  \"workflow_template_id\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Bad Request",
                          "code": 400,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "72ed8e61-bf3b-4539-8b6d-f04f4d78ac11",
                          "name": "Authentication required",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "workflow-runs"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"originating_id\": \"<string>\",\n  \"originating_type\": \"meeting\",\n  \"workflow_template_id\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Unauthorized",
                          "code": 401,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "e38fb6c0-410d-4470-a63d-41c6ce624f03",
                          "name": "Workflow templates feature is not available for this workspace's plan",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "workflow-runs"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"originating_id\": \"<string>\",\n  \"originating_type\": \"meeting\",\n  \"workflow_template_id\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Forbidden",
                          "code": 403,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"forbidden\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "70440975-e483-4571-bf3d-5ba32abbdc46",
                          "name": "Workflow template not found in the caller's workspace",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "workflow-runs"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"originating_id\": \"<string>\",\n  \"originating_type\": \"meeting\",\n  \"workflow_template_id\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Not Found",
                          "code": 404,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        },
                        {
                          "id": "c3f2a406-a775-4c1f-970d-6f0d5d1c5adc",
                          "name": "Internal server error",
                          "originalRequest": {
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "workflow-runs"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": []
                            },
                            "header": [
                              {
                                "key": "Content-Type",
                                "value": "application/json"
                              },
                              {
                                "key": "Accept",
                                "value": "application/json"
                              },
                              {
                                "description": {
                                  "content": "Added as a part of security scheme: oauth2",
                                  "type": "text/plain"
                                },
                                "key": "Authorization",
                                "value": "<token>"
                              }
                            ],
                            "method": "POST",
                            "body": {
                              "mode": "raw",
                              "raw": "{\n  \"originating_id\": \"<string>\",\n  \"originating_type\": \"meeting\",\n  \"workflow_template_id\": \"<string>\"\n}",
                              "options": {
                                "raw": {
                                  "headerFamily": "json",
                                  "language": "json"
                                }
                              }
                            }
                          },
                          "status": "Internal Server Error",
                          "code": 500,
                          "header": [
                            {
                              "key": "Content-Type",
                              "value": "application/json"
                            }
                          ],
                          "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                          "cookie": [],
                          "_postman_previewlanguage": "json"
                        }
                      ],
                      "event": [],
                      "protocolProfileBehavior": {
                        "disableBodyPruning": true
                      }
                    },
                    {
                      "name": "{id}",
                      "description": "",
                      "item": [
                        {
                          "id": "f3065c9c-0dc6-4f36-819b-f6e2e0ff1a6f",
                          "name": "Get a workflow run",
                          "request": {
                            "name": "Get a workflow run",
                            "description": {
                              "content": "Returns a single workflow run. The run must belong to the authenticated user's current workspace; otherwise a 404 response is returned.",
                              "type": "text/plain"
                            },
                            "url": {
                              "path": [
                                "v1",
                                "partner",
                                "user",
                                "workflow-runs",
                                ":id"
                              ],
                              "host": [
                                "{{baseUrl}}"
                              ],
                              "query": [],
                              "variable": [
                                {
                                  "type": "any",
                                  "value": "<string>",
                                  "key": "id",
                                  "disabled": false,
                                  "description": {
                                    "content": "(Required) Workflow Run ID",
                                    "type": "text/plain"
                                  }
                                }
                              ]
                            },
                            "header": [
                              {
                                "key": "Accept",
                                "value": "application/json"
                              }
                            ],
                            "method": "GET",
                            "body": {}
                          },
                          "response": [
                            {
                              "id": "52696648-d6b2-446d-927f-487634a07d00",
                              "name": "OK",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "workflow-runs",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "OK",
                              "code": 200,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"completed_at\": \"<string>\",\n  \"context_json\": {},\n  \"created_at\": \"<string>\",\n  \"current_step_ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"originating_id\": \"<string>\",\n  \"originating_type\": \"canvas\",\n  \"owner_user_id\": \"<string>\",\n  \"started_at\": \"<string>\",\n  \"status\": \"cancelled\",\n  \"trigger_type\": \"autopilot\",\n  \"triggered_by\": \"<string>\",\n  \"updated_at\": \"<string>\",\n  \"workflow_template_id\": \"<string>\",\n  \"workspace_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "989b51af-d9fe-4382-a7c0-9a79e9c2b0af",
                              "name": "Invalid workflow run ID",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "workflow-runs",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Bad Request",
                              "code": 400,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "d0bcdd8a-46be-4b26-a3b3-e7f22132fd65",
                              "name": "Authentication required",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "workflow-runs",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Unauthorized",
                              "code": 401,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "a8283641-ed5a-4c9a-a7d7-6487f5ab413e",
                              "name": "Workflow run not found",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "workflow-runs",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Not Found",
                              "code": 404,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            },
                            {
                              "id": "7e44d73a-c445-43cb-81ba-8dbec9a72b06",
                              "name": "Internal server error",
                              "originalRequest": {
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "workflow-runs",
                                    ":id"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": []
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  },
                                  {
                                    "description": {
                                      "content": "Added as a part of security scheme: oauth2",
                                      "type": "text/plain"
                                    },
                                    "key": "Authorization",
                                    "value": "<token>"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "status": "Internal Server Error",
                              "code": 500,
                              "header": [
                                {
                                  "key": "Content-Type",
                                  "value": "application/json"
                                }
                              ],
                              "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                              "cookie": [],
                              "_postman_previewlanguage": "json"
                            }
                          ],
                          "event": [],
                          "protocolProfileBehavior": {
                            "disableBodyPruning": true
                          }
                        }
                      ]
                    }
                  ]
                },
                {
                  "name": "workspaces",
                  "description": "",
                  "item": [
                    {
                      "name": "{workspace_id}",
                      "description": "",
                      "item": [
                        {
                          "name": "toolkits",
                          "description": "",
                          "item": [
                            {
                              "id": "7b50bc5d-60fd-42dc-a3d0-5df5ed26a0f8",
                              "name": "List installed toolkits",
                              "request": {
                                "name": "List installed toolkits",
                                "description": {
                                  "content": "Retrieves toolkits currently installed in a workspace with installation details",
                                  "type": "text/plain"
                                },
                                "url": {
                                  "path": [
                                    "v1",
                                    "partner",
                                    "user",
                                    "workspaces",
                                    ":workspace_id",
                                    "toolkits"
                                  ],
                                  "host": [
                                    "{{baseUrl}}"
                                  ],
                                  "query": [],
                                  "variable": [
                                    {
                                      "type": "any",
                                      "value": "<uuid>",
                                      "key": "workspace_id",
                                      "disabled": false,
                                      "description": {
                                        "content": "(Required) Workspace ID",
                                        "type": "text/plain"
                                      }
                                    }
                                  ]
                                },
                                "header": [
                                  {
                                    "key": "Accept",
                                    "value": "application/json"
                                  }
                                ],
                                "method": "GET",
                                "body": {}
                              },
                              "response": [
                                {
                                  "id": "ad80930d-04ed-428b-b24f-d5cddac2e0b1",
                                  "name": "OK",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "workspaces",
                                        ":workspace_id",
                                        "toolkits"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "OK",
                                  "code": 200,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"items\": [\n    {\n      \"installation\": {\n        \"entities\": {\n          \"action_buttons\": {\n            \"key_0\": \"<string>\",\n            \"key_1\": \"<string>\"\n          },\n          \"next_steps\": {\n            \"key_0\": \"<string>\",\n            \"key_1\": \"<string>\",\n            \"key_2\": \"<string>\"\n          },\n          \"shortcuts\": {\n            \"key_0\": \"<string>\"\n          },\n          \"templates\": {\n            \"key_0\": \"<string>\",\n            \"key_1\": \"<string>\"\n          }\n        },\n        \"id\": \"<string>\",\n        \"installed_at\": \"<string>\",\n        \"installed_by\": \"<string>\",\n        \"toolkit_id\": \"<string>\",\n        \"workspace_id\": \"<string>\"\n      },\n      \"toolkit\": {\n        \"action_buttons_count\": \"<integer>\",\n        \"created_at\": \"<string>\",\n        \"description\": \"<string>\",\n        \"id\": \"<string>\",\n        \"is_active\": \"<boolean>\",\n        \"name\": \"<string>\",\n        \"next_steps_count\": \"<integer>\",\n        \"ownership_type\": \"PARTNER\",\n        \"slug\": \"<string>\",\n        \"templates_count\": \"<integer>\",\n        \"updated_at\": \"<string>\",\n        \"version\": \"<string>\"\n      }\n    },\n    {\n      \"installation\": {\n        \"entities\": {\n          \"action_buttons\": {\n            \"key_0\": \"<string>\",\n            \"key_1\": \"<string>\",\n            \"key_2\": \"<string>\"\n          },\n          \"next_steps\": {\n            \"key_0\": \"<string>\",\n            \"key_1\": \"<string>\"\n          },\n          \"shortcuts\": {\n            \"key_0\": \"<string>\"\n          },\n          \"templates\": {\n            \"key_0\": \"<string>\",\n            \"key_1\": \"<string>\",\n            \"key_2\": \"<string>\",\n            \"key_3\": \"<string>\"\n          }\n        },\n        \"id\": \"<string>\",\n        \"installed_at\": \"<string>\",\n        \"installed_by\": \"<string>\",\n        \"toolkit_id\": \"<string>\",\n        \"workspace_id\": \"<string>\"\n      },\n      \"toolkit\": {\n        \"action_buttons_count\": \"<integer>\",\n        \"created_at\": \"<string>\",\n        \"description\": \"<string>\",\n        \"id\": \"<string>\",\n        \"is_active\": \"<boolean>\",\n        \"name\": \"<string>\",\n        \"next_steps_count\": \"<integer>\",\n        \"ownership_type\": \"PARTNER\",\n        \"slug\": \"<string>\",\n        \"templates_count\": \"<integer>\",\n        \"updated_at\": \"<string>\",\n        \"version\": \"<string>\"\n      }\n    }\n  ],\n  \"limit\": \"<integer>\",\n  \"offset\": \"<integer>\",\n  \"total\": \"<integer>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "0d5caf18-ccdd-4235-bc79-bdf704f90bf8",
                                  "name": "Invalid request",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "workspaces",
                                        ":workspace_id",
                                        "toolkits"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Bad Request",
                                  "code": 400,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "63b530b5-7de8-4d1d-b6d8-cae0b98b6434",
                                  "name": "Authentication required",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "workspaces",
                                        ":workspace_id",
                                        "toolkits"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Unauthorized",
                                  "code": 401,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                },
                                {
                                  "id": "e8f82271-8980-4adb-96a9-2b1e491c4010",
                                  "name": "Internal server error",
                                  "originalRequest": {
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "workspaces",
                                        ":workspace_id",
                                        "toolkits"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": []
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      },
                                      {
                                        "description": {
                                          "content": "Added as a part of security scheme: oauth2",
                                          "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                      }
                                    ],
                                    "method": "GET",
                                    "body": {}
                                  },
                                  "status": "Internal Server Error",
                                  "code": 500,
                                  "header": [
                                    {
                                      "key": "Content-Type",
                                      "value": "application/json"
                                    }
                                  ],
                                  "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                  "cookie": [],
                                  "_postman_previewlanguage": "json"
                                }
                              ],
                              "event": [],
                              "protocolProfileBehavior": {
                                "disableBodyPruning": true
                              }
                            },
                            {
                              "name": "{toolkit_id}",
                              "description": "",
                              "item": [
                                {
                                  "id": "7dcf58b0-3833-4137-ab03-fc065bc74f9b",
                                  "name": "Uninstall toolkit",
                                  "request": {
                                    "name": "Uninstall toolkit",
                                    "description": {
                                      "content": "Removes a toolkit installation from the authenticated user's workspace",
                                      "type": "text/plain"
                                    },
                                    "url": {
                                      "path": [
                                        "v1",
                                        "partner",
                                        "user",
                                        "workspaces",
                                        ":workspace_id",
                                        "toolkits",
                                        ":toolkit_id"
                                      ],
                                      "host": [
                                        "{{baseUrl}}"
                                      ],
                                      "query": [],
                                      "variable": [
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "workspace_id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Workspace ID",
                                            "type": "text/plain"
                                          }
                                        },
                                        {
                                          "type": "any",
                                          "value": "<uuid>",
                                          "key": "toolkit_id",
                                          "disabled": false,
                                          "description": {
                                            "content": "(Required) Toolkit ID",
                                            "type": "text/plain"
                                          }
                                        }
                                      ]
                                    },
                                    "header": [
                                      {
                                        "key": "Accept",
                                        "value": "application/json"
                                      }
                                    ],
                                    "method": "DELETE",
                                    "body": {}
                                  },
                                  "response": [
                                    {
                                      "id": "8590ca93-7b41-421a-a5d3-61e65818f027",
                                      "name": "Toolkit uninstalled successfully",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "workspaces",
                                            ":workspace_id",
                                            "toolkits",
                                            ":toolkit_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "No Content",
                                      "code": 204,
                                      "header": [],
                                      "cookie": [],
                                      "_postman_previewlanguage": "text"
                                    },
                                    {
                                      "id": "1dc01da6-183f-41ce-b4a3-687ed03532fa",
                                      "name": "Invalid request",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "workspaces",
                                            ":workspace_id",
                                            "toolkits",
                                            ":toolkit_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Bad Request",
                                      "code": 400,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"bad_request\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "83b3d833-090a-4800-ad53-97e143ae2f37",
                                      "name": "Authentication required",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "workspaces",
                                            ":workspace_id",
                                            "toolkits",
                                            ":toolkit_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Unauthorized",
                                      "code": 401,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"unauthorized\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "dce9baa6-438d-45ac-b9d1-fe3c5bcf48f4",
                                      "name": "Toolkit not found or not installed",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "workspaces",
                                            ":workspace_id",
                                            "toolkits",
                                            ":toolkit_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Not Found",
                                      "code": 404,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"not_found\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    },
                                    {
                                      "id": "0fd19945-ab7a-4e13-8fd2-942f30af0d87",
                                      "name": "Internal server error",
                                      "originalRequest": {
                                        "url": {
                                          "path": [
                                            "v1",
                                            "partner",
                                            "user",
                                            "workspaces",
                                            ":workspace_id",
                                            "toolkits",
                                            ":toolkit_id"
                                          ],
                                          "host": [
                                            "{{baseUrl}}"
                                          ],
                                          "query": [],
                                          "variable": []
                                        },
                                        "header": [
                                          {
                                            "key": "Accept",
                                            "value": "application/json"
                                          },
                                          {
                                            "description": {
                                              "content": "Added as a part of security scheme: oauth2",
                                              "type": "text/plain"
                                            },
                                            "key": "Authorization",
                                            "value": "<token>"
                                          }
                                        ],
                                        "method": "DELETE",
                                        "body": {}
                                      },
                                      "status": "Internal Server Error",
                                      "code": 500,
                                      "header": [
                                        {
                                          "key": "Content-Type",
                                          "value": "application/json"
                                        }
                                      ],
                                      "body": "{\n  \"code\": \"internal_server_error\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"request_id\": \"<string>\"\n}",
                                      "cookie": [],
                                      "_postman_previewlanguage": "json"
                                    }
                                  ],
                                  "event": [],
                                  "protocolProfileBehavior": {
                                    "disableBodyPruning": true
                                  }
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  ]
                }
              ]
            }
          ]
        }
      ]
    }
  ],
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "type": "text/javascript",
        "exec": [
          "// Auto-inject appropriate headers based on endpoint path",
          "const oauthToken = pm.variables.get(\"oauth_token\") || pm.environment.get(\"oauth_token\");",
          "const partnerApiKey = pm.variables.get(\"partner_api_key\") || pm.environment.get(\"partner_api_key\");",
          "const partnerClientId = pm.variables.get(\"partner_client_id\") || pm.environment.get(\"partner_client_id\");",
          "const partnerClientSecret = pm.variables.get(\"partner_client_secret\") || pm.environment.get(\"partner_client_secret\");",
          "",
          "// Get the current request URL",
          "const requestUrl = pm.request.url.toString();",
          "",
          "// Determine which auth type to use based on URL path",
          "// OAuth endpoints requiring Basic auth (client credentials):",
          "// - /oauth2/token: token exchange",
          "// - /oauth2/introspect: token introspection (requires RequirePartnerClientAuth middleware)",
          "// - /oauth2/scopes: get available scopes (requires RequirePartnerClientAuth middleware)",
          "// - /oauth2/revoke: token revocation (if implemented)",
          "// Note: /oauth2/authorize and /oauth2/check-consent are public/browser-facing endpoints",
          "if (requestUrl.includes(\"/oauth2/token\") || requestUrl.includes(\"/oauth2/introspect\") || requestUrl.includes(\"/oauth2/revoke\") || requestUrl.includes(\"/oauth2/scopes\")) {",
          "    // OAuth endpoints requiring client authentication - use Basic auth (client_id:client_secret)",
          "    if (partnerClientId && partnerClientSecret) {",
          "        const credentials = partnerClientId + ':' + partnerClientSecret;",
          "        const encoded = Buffer.from(credentials, 'utf8').toString('base64');",
          "        pm.request.headers.upsert({",
          "            key: 'Authorization',",
          "            value: 'Basic ' + encoded",
          "        });",
          "        console.log('� Added Basic Authorization header to OAuth endpoint');",
          "    } else {",
          "        console.log('⚠️ This OAuth endpoint requires both partner_client_id and partner_client_secret for Basic auth');",
          "    }",
          "    // Set Content-Type for POST endpoints (form-urlencoded)",
          "    if (requestUrl.includes(\"/oauth2/token\") || requestUrl.includes(\"/oauth2/introspect\") || requestUrl.includes(\"/oauth2/revoke\")) {",
          "        pm.request.headers.upsert({",
          "            key: 'Content-Type',",
          "            value: 'application/x-www-form-urlencoded'",
          "        });",
          "    }",
          "} else if (requestUrl.includes(\"/v1/partner/admin/\")) {",
          "    // Partner Admin API - use API Key + Client ID headers",
          "    if (partnerClientId) {",
          "        pm.request.headers.upsert({",
          "            key: 'X-Client-ID',",
          "            value: partnerClientId",
          "        });",
          "        console.log('🔑 Added X-Client-ID header to Partner Admin request');",
          "    } else {",
          "        console.log('⚠️ No partner_client_id available for Partner Admin endpoint');",
          "    }",
          "    if (partnerApiKey) {",
          "        pm.request.headers.upsert({",
          "            key: 'X-API-Key',",
          "            value: partnerApiKey",
          "        });",
          "        console.log('🔑 Added X-API-Key header to Partner Admin request');",
          "    } else {",
          "        console.log('⚠️ No partner_api_key available for Partner Admin endpoint');",
          "    }",
          "} else if (requestUrl.includes(\"/v1/partner/user/\") || requestUrl.includes(\"/oauth2/userInfo\")) {",
          "    // Partner User API - use OAuth Bearer token",
          "    if (oauthToken) {",
          "        pm.request.headers.upsert({",
          "            key: 'Authorization',",
          "            value: 'Bearer ' + oauthToken",
          "        });",
          "        console.log('🔐 Added Bearer Authorization header to Partner User request');",
          "    } else {",
          "        console.log('⚠️ No oauth_token available for Partner User endpoint');",
          "    }",
          "}",
          "",
          "// Ensure Content-Type is set for POST/PUT/PATCH requests with JSON body",
          "const method = pm.request.method;",
          "if (['POST', 'PUT', 'PATCH'].includes(method) && pm.request.body && pm.request.body.mode === 'raw') {",
          "    // Only add JSON content type if not already set (e.g., not for form-urlencoded OAuth requests)",
          "    if (!pm.request.headers.has('Content-Type')) {",
          "        pm.request.headers.upsert({",
          "            key: 'Content-Type',",
          "            value: 'application/json'",
          "        });",
          "    }",
          "}"
        ]
      }
    },
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "exec": [
          "// Common test assertions",
          "pm.test(\"Response time is reasonable\", function () {",
          "    pm.expect(pm.response.responseTime).to.be.below(5000);",
          "});",
          "",
          "pm.test(\"Response has valid JSON structure\", function () {",
          "    if (pm.response.headers.get(\"Content-Type\") && pm.response.headers.get(\"Content-Type\").includes(\"application/json\")) {",
          "        pm.response.to.be.json;",
          "    }",
          "});",
          "",
          "// Store oauth token if this is a token endpoint response",
          "if (pm.response.code === 200 && pm.request.url.toString().includes(\"/oauth2/verify\")) {",
          "    try {",
          "        const responseJson = pm.response.json();",
          "        if (responseJson.access_token) {",
          "            pm.collectionVariables.set(\"oauth_token\", responseJson.access_token);",
          "            console.log(\"🔑 Stored OAuth token from token endpoint response\");",
          "        }",
          "    } catch (e) {",
          "        // Response is not JSON, skip token extraction",
          "    }",
          "}"
        ]
      }
    }
  ],
  "variable": [
    {
      "key": "baseUrl",
      "value": "{{target_host}}",
      "description": "Base URL - uses target_host variable"
    },
    {
      "key": "target_host",
      "value": "https://api.contio.ai",
      "description": "Base URL for the Partner API (e.g., https://api.contio.ai, https://stage.api.contio.ai)"
    },
    {
      "key": "partner_client_id",
      "value": "",
      "description": "Client ID for Partner API. Set this in your environment or collection variables."
    },
    {
      "key": "partner_client_secret",
      "value": "",
      "description": "Client Secret for OAuth token endpoints (used with Basic auth). Set this in your environment or collection variables."
    },
    {
      "key": "partner_api_key",
      "value": "",
      "description": "API key for Partner Admin API endpoints. Set this in your environment or collection variables."
    },
    {
      "key": "oauth_token",
      "value": "",
      "description": "OAuth token for Partner User API endpoints. Set this in your environment or collection variables."
    },
    {
      "key": "api_version",
      "value": "1.7.1",
      "description": "API version from OpenAPI spec. This is read-only and reflects the API version this collection was generated from."
    },
    {
      "key": "oauth_email",
      "value": "",
      "description": "User email for OAuth flow. Set before running the OAuth Flow folder."
    },
    {
      "key": "oauth_session",
      "value": "",
      "description": "Session token from /auth/initiate. Automatically captured."
    },
    {
      "key": "otp_code",
      "value": "",
      "description": "OTP code from email. Set manually after receiving the OTP email."
    },
    {
      "key": "authorization_code",
      "value": "",
      "description": "Authorization code from consent. Automatically captured."
    },
    {
      "key": "redirect_uri",
      "value": "https://your-app.com/callback",
      "description": "Your OAuth redirect URI. Must match your partner app configuration."
    },
    {
      "key": "oauth_scopes",
      "value": "openid profile email meetings:read action-items:read",
      "description": "Space-separated OAuth scopes to request. Use unqualified scope names (e.g., meetings:read, not partner-api/meetings:read)."
    },
    {
      "key": "oauth_state",
      "value": "",
      "description": "CSRF state for OAuth flow. Auto-generated if empty."
    },
    {
      "key": "refresh_token",
      "value": "",
      "description": "Refresh token from OAuth flow. Automatically captured."
    },
    {
      "key": "id_token",
      "value": "",
      "description": "ID token from OAuth flow. Automatically captured. Contains user identity claims."
    }
  ],
  "info": {
    "_postman_id": "58473a74-8e1b-49d8-bccc-593e8b1d1b1d",
    "name": "Contio MeetingOS Partner API",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "description": "Partner API for Contio MeetingOS - External partner integration endpoints\n\nContact Support:\n Name: Contio MeetingOS Partner Support\n Email: partner-support@contio.ai\n\n**API Version:** 1.7.1\n\n\n\n**Documentation:**  https://docs.contio.ai/partner-api/\n\n\n\n## IMPORTANT: FIRST STEPS AFTER IMPORT\n\n1. **Important**: After importing this collection, go to \"Variables\" tab and set the `target_host` variable to your Partner API server URL\n   - This must be done first for the collection to work correctly\n   - The API calls are built using the \"target_host\" variable\n2. Set the `partner_client_id` variable for all Partner API endpoints\n3. Set the `partner_client_secret` variable for OAuth token endpoints (Basic auth)\n4. Set the `partner_api_key` variable for Partner Admin API endpoints\n5. Set the `oauth_token` variable for Partner User API endpoints\n6. The appropriate authentication headers will be automatically added to requests:\n   - OAuth token endpoints (`/oauth2/token`, `/oauth2/introspect`, `/oauth2/revoke`): Basic auth header\n   - Partner Admin API (`/v1/partner/admin/*`): X-API-Key + X-Client-ID headers\n   - Partner User API (`/v1/partner/user/*`): Bearer token header\n\n## Environment Examples\n\n- Production: `https://api.contio.ai`\n- Beta/Sandbox: `https://beta.api.contio.ai`\n",
    "version": "1.7.1"
  }
}
