Fastly · Schema

Customer

A customer account in Fastly that owns services and manages users.

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Properties

Name Type Description
id string The alphanumeric string identifying the customer.
name string The name of the customer account.
owner_id string The alphanumeric string identifying the account owner.
pricing_plan string The pricing plan associated with the customer.
can_configure_wordpress boolean Whether the customer can configure WordPress.
legal_contact_id string The ID of the legal contact for the account.
technical_contact_id string The ID of the technical contact for the account.
security_contact_id string The ID of the security contact for the account.
created_at string The date and time the customer was created.
updated_at string The date and time the customer was last updated.
View JSON Schema on GitHub

JSON Schema

fastly-customer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Customer",
  "title": "Customer",
  "type": "object",
  "description": "A customer account in Fastly that owns services and manages users.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The alphanumeric string identifying the customer."
    },
    "name": {
      "type": "string",
      "description": "The name of the customer account."
    },
    "owner_id": {
      "type": "string",
      "description": "The alphanumeric string identifying the account owner."
    },
    "pricing_plan": {
      "type": "string",
      "description": "The pricing plan associated with the customer."
    },
    "can_configure_wordpress": {
      "type": "boolean",
      "description": "Whether the customer can configure WordPress."
    },
    "legal_contact_id": {
      "type": "string",
      "nullable": true,
      "description": "The ID of the legal contact for the account."
    },
    "technical_contact_id": {
      "type": "string",
      "nullable": true,
      "description": "The ID of the technical contact for the account."
    },
    "security_contact_id": {
      "type": "string",
      "nullable": true,
      "description": "The ID of the security contact for the account."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the customer was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the customer was last updated."
    }
  }
}