Add Reservation Item
POST/api/reservations/:id/services
Add Reservation Item
Request
Path Parameters
id integerrequired
Header Parameters
X-Company-Slug stringrequired
- application/json
Body
employee_id string
service_id stringrequired
price float
quantity integerrequired
estimated_time integer
starting_at date-time
finishing_at date-time
Responses
- 200
Successful response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id string
code string
customer_id string
created_by_id string
updated_by_id string
notes stringnullable
total float
starting_at date-time
finishing_at date-time
created_at date-time
updated_at date-time
status ReservationStatusEnum (string)
Possible values: [new
, accepted
, cancelled
, no-show
, success
]
source_id numbernullable
custom_fields objectnullable
transaction_id numbernullable
services
object[]
id string
reservation_id string
employee_id string
service_id string
price float
quantity integer
estimated_time integer
starting_at date-time
finishing_at date-time
is_bound boolean
service
object
id string
name string
slug string
description stringnullable
price float
original_price floatnullable
estimated_time integer
category_id string
created_at date-time
updated_at date-time
employee
object
id string
email string
name stringnullable
surname stringnullable
language stringnullable
phone_number stringnullable
remember_me_token booleannullable
birthday datenullable
created_at date-time
updated_at date-time
timezone stringnullable
meta
object
gender ContactGenderEnum (string)nullable
Possible values: [male
, female
, other
]
{
"id": "4",
"code": "A5NZY1",
"customer_id": "101",
"created_by_id": "1",
"updated_by_id": "1",
"notes": "bla bla",
"total": 1122,
"starting_at": "2024-08-01T23:21:53.710+03:00",
"finishing_at": "2024-08-02T00:21:53.710+03:00",
"created_at": "2024-08-01T23:21:53.705+03:00",
"updated_at": "2024-08-01T23:21:53.725+03:00",
"status": "new",
"source_id": 1,
"custom_fields": {},
"transaction_id": 1,
"services": [
{
"id": "5",
"reservation_id": "4",
"employee_id": "8",
"service_id": "1",
"price": 1100,
"quantity": 1,
"estimated_time": 30,
"starting_at": "2024-08-01T23:21:53.710+03:00",
"finishing_at": "2024-08-01T23:51:53.710+03:00",
"is_bound": false,
"service": {
"id": "1",
"name": "denem",
"slug": "denem",
"description": "afa",
"price": 2200,
"original_price": 2100,
"estimated_time": 15,
"category_id": "5",
"created_at": "2024-06-16T23:09:57.899+03:00",
"updated_at": "2024-06-16T23:09:57.899+03:00"
},
"employee": {
"id": "1",
"email": "[email protected]",
"name": "Test",
"surname": "User 1",
"language": "en",
"phone_number": "+90123123213",
"remember_me_token": true,
"birthday": "1990-01-01",
"created_at": "2024-02-20T19:18:45.782+03:00",
"updated_at": "2024-04-11T01:11:24.889+03:00",
"timezone": "Europe/Istanbul",
"meta": {
"gender": "male"
}
}
}
]
}
Loading...