BillingPolicyUpdateRequest

Request body for updating an existing billing policy.

Business ApplicationsCopilot StudioDataverseLow-CodeMicrosoftNo-CodePower PagesPower Platform

Properties

Name Type Description
name string The updated display name.
status string The updated status.
billingInstrument object
View JSON Schema on GitHub

JSON Schema

power-platform-billingpolicyupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillingPolicyUpdateRequest",
  "title": "BillingPolicyUpdateRequest",
  "type": "object",
  "description": "Request body for updating an existing billing policy.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The updated display name.",
      "example": "Example Title"
    },
    "status": {
      "type": "string",
      "description": "The updated status.",
      "enum": [
        "Enabled",
        "Disabled"
      ],
      "example": "Enabled"
    },
    "billingInstrument": {
      "$ref": "#/components/schemas/BillingInstrument"
    }
  }
}