Codat · Schema

Start scheduled sync result

Represents the result of an ad-hoc sync request.

Unified_API

Properties

Name Type Description
syncId string The unique identifier for the created sync.
View JSON Schema on GitHub

JSON Schema

codat-startscheduledsyncresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StartScheduledSyncResult",
  "title": "Start scheduled sync result",
  "type": "object",
  "description": "Represents the result of an ad-hoc sync request.",
  "properties": {
    "syncId": {
      "type": "string",
      "format": "uuid",
      "description": "The unique identifier for the created sync."
    }
  },
  "required": [
    "syncId"
  ]
}