Get a feedback
curl --request GET \
--url https://localhost:8080/api/receptionist/feedback/{id}import requests
url = "https://localhost:8080/api/receptionist/feedback/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://localhost:8080/api/receptionist/feedback/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8080",
CURLOPT_URL => "https://localhost:8080/api/receptionist/feedback/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://localhost:8080/api/receptionist/feedback/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://localhost:8080/api/receptionist/feedback/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://localhost:8080/api/receptionist/feedback/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": 123,
"order": {
"id": 123,
"farmer": {
"id": 123,
"email": "<string>",
"fullName": "<string>",
"phoneNumber": "<string>",
"street": "<string>",
"city": "<string>",
"province": "<string>",
"postalCode": "<string>",
"active": true
},
"receptionist": {
"id": 123,
"email": "<string>",
"fullName": "<string>",
"phoneNumber": "<string>",
"street": "<string>",
"city": "<string>",
"province": "<string>",
"postalCode": "<string>",
"active": true
},
"date": "2023-12-25",
"session": {
"id": 123,
"startTime": {
"hour": 123,
"minute": 123,
"second": 123,
"nano": 123
},
"endTime": {
"hour": 123,
"minute": 123,
"second": 123,
"nano": 123
}
},
"location": "<string>",
"latitude": 123,
"longitude": 123,
"cropType": {
"id": 123,
"name": "<string>"
},
"area": 123,
"cost": 123,
"completionDate": "2023-12-25",
"confirmed": true,
"creationDate": "2023-12-25"
},
"overallRating": 123,
"attentiveRating": 123,
"friendlyRating": 123,
"professionalRating": 123,
"text": "<string>"
}Feedback
Get a feedback
GET
/
api
/
receptionist
/
feedback
/
{id}
Get a feedback
curl --request GET \
--url https://localhost:8080/api/receptionist/feedback/{id}import requests
url = "https://localhost:8080/api/receptionist/feedback/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://localhost:8080/api/receptionist/feedback/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8080",
CURLOPT_URL => "https://localhost:8080/api/receptionist/feedback/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://localhost:8080/api/receptionist/feedback/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://localhost:8080/api/receptionist/feedback/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://localhost:8080/api/receptionist/feedback/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": 123,
"order": {
"id": 123,
"farmer": {
"id": 123,
"email": "<string>",
"fullName": "<string>",
"phoneNumber": "<string>",
"street": "<string>",
"city": "<string>",
"province": "<string>",
"postalCode": "<string>",
"active": true
},
"receptionist": {
"id": 123,
"email": "<string>",
"fullName": "<string>",
"phoneNumber": "<string>",
"street": "<string>",
"city": "<string>",
"province": "<string>",
"postalCode": "<string>",
"active": true
},
"date": "2023-12-25",
"session": {
"id": 123,
"startTime": {
"hour": 123,
"minute": 123,
"second": 123,
"nano": 123
},
"endTime": {
"hour": 123,
"minute": 123,
"second": 123,
"nano": 123
}
},
"location": "<string>",
"latitude": 123,
"longitude": 123,
"cropType": {
"id": 123,
"name": "<string>"
},
"area": 123,
"cost": 123,
"completionDate": "2023-12-25",
"confirmed": true,
"creationDate": "2023-12-25"
},
"overallRating": 123,
"attentiveRating": 123,
"friendlyRating": 123,
"professionalRating": 123,
"text": "<string>"
}⌘I