Mews · Schema

TaskAddParameters

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
ClientToken string Token identifying the client application.
AccessToken string Access token of the client application.
Client string Name and version of the client application.
DepartmentId string Unique identifier of the [Department](https://mews-systems.gitbook.io/connector-api/operations/departments/#department) the task is addressed to.
ServiceOrderId string Unique identifier of the service order (reservation or product service order) the task is linked with.
Name string Name (or title) of the task.
Description string Further decription of the task.
DeadlineUtc string Deadline of the task in UTC timezone in ISO 8601 format.
View JSON Schema on GitHub

JSON Schema

mews-taskaddparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskAddParameters",
  "title": "TaskAddParameters",
  "required": [
    "AccessToken",
    "Client",
    "ClientToken",
    "DeadlineUtc",
    "Name"
  ],
  "type": "object",
  "properties": {
    "ClientToken": {
      "minLength": 1,
      "type": "string",
      "description": "Token identifying the client application."
    },
    "AccessToken": {
      "minLength": 1,
      "type": "string",
      "description": "Access token of the client application."
    },
    "Client": {
      "minLength": 1,
      "type": "string",
      "description": "Name and version of the client application."
    },
    "DepartmentId": {
      "type": "string",
      "description": "Unique identifier of the [Department](https://mews-systems.gitbook.io/connector-api/operations/departments/#department) the task is addressed to.",
      "format": "uuid",
      "nullable": true
    },
    "ServiceOrderId": {
      "type": "string",
      "description": "Unique identifier of the service order (reservation or product service order) the task is linked with.",
      "format": "uuid",
      "nullable": true
    },
    "Name": {
      "minLength": 1,
      "type": "string",
      "description": "Name (or title) of the task."
    },
    "Description": {
      "type": "string",
      "description": "Further decription of the task.",
      "nullable": true
    },
    "DeadlineUtc": {
      "minLength": 1,
      "type": "string",
      "description": "Deadline of the task in UTC timezone in ISO 8601 format.",
      "format": "date-time"
    }
  },
  "additionalProperties": false,
  "x-schema-id": "TaskAddParameters"
}