Trendsic Platform Service

<back to all web services

ReceptionistBookRequest

The following routes are available for this service:
POST,OPTIONS/v1/receptionist/tool/book
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class ReceptionistBookResponse:
    calendar_event_id: int = 0
    response_status: Optional[ResponseStatus] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class ReceptionistBookRequest:
    slug: Optional[str] = None
    service_ids: Optional[str] = None
    start_date_time: datetime.datetime = datetime.datetime(1, 1, 1)
    first_name: Optional[str] = None
    last_name: Optional[str] = None
    phone: Optional[str] = None
    email: Optional[str] = None
    sms_opt_in: bool = False

Python ReceptionistBookRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /v1/receptionist/tool/book HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	Slug: String,
	ServiceIds: String,
	StartDateTime: 0001-01-01,
	FirstName: String,
	LastName: String,
	Phone: String,
	Email: String,
	SmsOptIn: False
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	CalendarEventId: 0,
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	}
}