Sage · Schema

UpdateContactRequest

AccountingBusiness ManagementCloud SoftwareERPPayrollHR

Properties

Name Type Description
contact object
View JSON Schema on GitHub

JSON Schema

sage-updatecontactrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateContactRequest",
  "title": "UpdateContactRequest",
  "type": "object",
  "properties": {
    "contact": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "email": {
          "type": "string"
        },
        "telephone": {
          "type": "string"
        },
        "address": {
          "$ref": "#/components/schemas/AddressInput"
        }
      }
    }
  }
}