settings_updateCompanyPlan

WRITE

Update company plan.

Parameters

stripeCustomerIdstringrequired
stripeSubscriptionIdstringrequired
stripeSubscriptionStatusstringrequired
subscriptionStartDatestringrequired

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "settings_updateCompanyPlan",
  "arguments": {
    "stripeCustomerId": "string",
    "stripeSubscriptionId": "string",
    "stripeSubscriptionStatus": "string",
    "subscriptionStartDate": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "stripeCustomerId": {
      "type": "string"
    },
    "stripeSubscriptionId": {
      "type": "string"
    },
    "stripeSubscriptionStatus": {
      "type": "string"
    },
    "subscriptionStartDate": {
      "type": "string"
    }
  },
  "required": [
    "stripeCustomerId",
    "stripeSubscriptionId",
    "stripeSubscriptionStatus",
    "subscriptionStartDate"
  ]
}