BillingPolicyCreateRequest

Request body for creating a new billing policy.

Business ApplicationsCopilot StudioDataverseLow-CodeMicrosoftNo-CodePower PagesPower Platform

Properties

Name Type Description
name string The display name of the billing policy.
location string The geographic location of the billing policy.
status string The initial status of the billing policy.
billingInstrument object
View JSON Schema on GitHub

JSON Schema

power-platform-billingpolicycreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillingPolicyCreateRequest",
  "title": "BillingPolicyCreateRequest",
  "type": "object",
  "description": "Request body for creating a new billing policy.",
  "required": [
    "name",
    "location",
    "billingInstrument"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The display name of the billing policy.",
      "example": "Example Title"
    },
    "location": {
      "type": "string",
      "description": "The geographic location of the billing policy.",
      "example": "example_value"
    },
    "status": {
      "type": "string",
      "description": "The initial status of the billing policy.",
      "enum": [
        "Enabled",
        "Disabled"
      ],
      "default": "Enabled",
      "example": "Enabled"
    },
    "billingInstrument": {
      "$ref": "#/components/schemas/BillingInstrument"
    }
  }
}