API Docs / Schemas / ServiceImportPreviewClientDto

ServiceImportPreviewClientDto

Preview for a single client row in the CSV

Properties

Name Type Description
clientCodeAndNameDto
csvClientNamestring

The client name as it appears in the CSV (used when client is not found)

The client name as it appears in the CSV (used when client is not found)

errorstring

Error message if client could not be matched

Error message if client could not be matched

servicesarray of ServiceImportPreviewActionDto

Services that will be created, updated, or skipped for this client

Services that will be created, updated, or skipped for this client

JSON Example

{
  "client": {
    "code": "string",
    "name": "string"
  },
  "csvClientName": "string",
  "error": "string",
  "services": [
    {
      "service": "...",
      "action": "...",
      "price": "...",
      "frequency": "...",
      "startDate": "..."
    }
  ]
}

Contained in Schemas