- Auth
- Login/Guest Login
- Register
- Remember
- Auth Otp VerifyPOST
- Auth - LogoutDELETE
- Auth - StateGET
- 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
Auth - Remember Password For E-Mail
POST
https://test-api.ucuzyolu.com/auth/password/remember
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
type
enum<string> | enum<null>
optional
Allowed values:
emailsms
Default:
sms
email
string
required
Example
{
"phone": "+90 532 000 00 00",
"password": "123456tg"
}
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/auth/password/remember' \
--header 'client-id: 302382-1928283273-237723829-292999' \
--header 'Content-Type: application/json' \
--data-raw '{
"phone": "+90 532 000 00 00",
"password": "123456tg"
}'
Responses
🟢200OK
application/json
Body
data
object
required
jobId
string
required
status
string
required
attempts
integer
required
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": {
"jobId": "t62qItYLV8RQoSX4",
"status": "pending",
"attempts": 0
},
"success": true,
"code": 101,
"message": ""
}
🟠422Parameter Error
🟢200Otp Required
Modified at 2024-12-18 18:11:01