- 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
Contact Form
Developing
POST
https://test-api.ucuzyolu.com/contactform
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
client-id
string
optional
Default:
302382-1928283273-237723829-292999
Body Params application/json
name
string
required
email
string
required
phone
string
required
message
string
required
Example
{
"name": "John Due",
"email": "m.gulbilge@gmail.com",
"phone": "+905320000000",
"message": "Deneme mesajı"
}
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 POST 'https://test-api.ucuzyolu.com/contactform' \
--header 'client-id: 302382-1928283273-237723829-292999' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "John Due",
"email": "m.gulbilge@gmail.com",
"phone": "+905320000000",
"message": "Deneme mesajı"
}'
Responses
🟢200OK
application/json
Body
data
array[string]
required
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": [],
"success": true,
"code": 0,
"message": "Mesajınız başarıyla kaydedildi."
}
Modified at 2024-10-05 11:13:02