- I'm Guide - API Version Control
- I'm Guide - Custom Error Exception
- Planner
- Route
- Place
- Custom Trip
- Delete Custom Trip V1DELETE
- Create trip with ai promptPOST
- Optimize trip with ai promptPOST
- Create Custom trip V1POST
- Edit Custom Trip V1PUT
- VIew Detail User Custom Trip V1GET
- VIew List of User Custom Trip V1GET
- Create trip with custom presetdataPOST
- Create trip with popular presetdataPOST
- Review Trip V1POST
- Get Unavaliable Date List V1 GET
- Check Unavaliable Date V1POST
- Create trip with ai prompt V2POST
- VIew List of User Active Trip V1 GET
- Active Trip
- Config
- Activities
- Communities
- Feedback
- Internal Endpoint
- Line
- Get List Of Linked Trip In Group V1
- Get Detail Of Linked Trip In Group V1
- Get Day Detail Of Linked Trip In Group V1
- Generate Link Code V1
- Verify Link Code V1
- Unlink From LIne V1
- Unlink From App V1
- Get Current Trip In Group V1
- Get Current Trip By Day In Group V1
- Init Line
- Update Line Line Notification
- Update General Line Notification
- Get Noti Trip Line
- LINE GET TODAY TRIP BY DAY
- LINE GET TODAY TRIP
- LINE GET TODAY TRIP
- Get Noti General Line
- Core
- AI
- Storage
- Internal
- TEST TATGET
Review Trip V1
Developing
POST
/trips/v1/custom/{id}/review
Last modified:2025-03-23 05:13:59
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
string
required
Body Params application/json
ratingreview_rating
number
required
review_text
string
required
Example
{
"review_rating": 4,
"review_text": "Tantillus crepusculum dens textus praesentium dapifer depulso."
}
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 '/trips/v1/custom//review' \
--header 'Content-Type: application/json' \
--data-raw '{
"review_rating": 4,
"review_text": "Tantillus crepusculum dens textus praesentium dapifer depulso."
}'
Responses
🟢201Created
application/json
Body
status
string
required
action
string
required
tripId
string
required
user_trip_id
string
required
review
object
required
user_id
string
required
user_name
string
required
review_text
string
required
rating
integer
required
point
integer
required
created_at
string
required
Example
{
"status": "string",
"action": "string",
"tripId": "string",
"user_trip_id": "string",
"review": {
"user_id": "string",
"user_name": "string",
"review_text": "string",
"rating": 0,
"point": 0,
"created_at": "string"
}
}