- Auth
- Customer
- Passengers
- invoice Info
- Favorite Flights
- Notifications
- Fast Actions
- Customer - Get ProfileGET
- Customer - Update ProfilePOST
- Customer - Update PasswordPOST
- Search History - FlightGET
- Customer - Remove AccountDELETE
- Utils
- Flight
- Bus
- Hotel
- Socket
- Auto Completes
- Queue / Socket
- Misc
- Payment
- Orders
- Blog
- Contents
- Refund
- Notifications
- Checkout
- Otp VerifyPOST
- StatusGET
Calendar - Month
GET
https://test-api.ucuzyolu.com/calendar
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
month
string
required
Example:
8
Header Params
client-id
string
optional
Default:
302382-1928283273-237723829-292999
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://test-api.ucuzyolu.com/calendar?month=8' \
--header 'client-id: 302382-1928283273-237723829-292999'
Responses
🟢200OK
application/json
Body
data
array[object (Calendar Item) {9}]
required
id
integer
required
repeat
enum<string>
required
Allowed values:
onceyearly
date
string <date>
required
title
string
required
description
string | null
optional
eventType
enum<string>
required
Allowed values:
holidayvacationnational_vacationother
links
object
required
color
string | null
optional
Example:
#FFFFFF
textColor
string | null
optional
Example:
#FFFFFF
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": [
{
"id": 1,
"repeat": "once",
"date": "2024-08-14",
"title": "Babalar günü",
"description": null,
"color": "#ff1a1a",
"links": {
"web": null,
"mobile": null
},
"eventType": "other",
"textColor": "#ffffff"
}
],
"success": true,
"code": 0,
"message": ""
}
🟢200OK
Modified at 2024-11-28 01:29:13