Skip to main content
GET
/
reviews
Get Review List,
curl --request GET \
  --url https://use.hoop.dev/api/reviews
import requests

url = "https://use.hoop.dev/api/reviews"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://use.hoop.dev/api/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://use.hoop.dev/api/reviews",
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://use.hoop.dev/api/reviews"

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://use.hoop.dev/api/reviews")
.asString();
require 'uri'
require 'net/http'

url = URI("https://use.hoop.dev/api/reviews")

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
[
  {
    "access_duration": 0,
    "created_at": "2024-07-25T15:56:35.317601Z",
    "id": "9F9745B4-C77B-4D52-84D3-E24F67E3623C",
    "review_groups_data": [
      {
        "forced_review": false,
        "group": "sre",
        "id": "20A5AABE-C35D-4F04-A5A7-C856EE6C7703",
        "review_date": "2024-07-25T19:36:41Z",
        "reviewed_by": {
          "email": "john.wick@bad.org",
          "id": "D5BFA2DD-7A09-40AE-AFEB-C95787BA9E90",
          "name": "John Wick",
          "slack_id": "U053ELZHB53"
        },
        "status": "APPROVED"
      }
    ],
    "revoke_at": "",
    "session": "35DB0A2F-E5CE-4AD8-A308-55C3108956E5",
    "time_window": {
      "configuration": {
        "end_time": "18:00",
        "start_time": "09:00"
      },
      "type": "time_range"
    }
  }
]
{
"message": "the error description"
}
{
"message": "the error description"
}

Response

OK

access_duration
integer
default:1800000000000
read-only

The amount of time (nanoseconds) to allow access to the connection. It's valid only for jit type reviews

Example:

0

created_at
string
read-only

The time the resource was created

Example:

"2024-07-25T15:56:35.317601Z"

id
string<uuid>
read-only

Resource identifier

Example:

"9F9745B4-C77B-4D52-84D3-E24F67E3623C"

review_groups_data
object[]
read-only

Contains the groups that requires to approve this review

revoke_at
string
read-only

The time when this review was revoked

Example:

""

session
string<uuid>
read-only

The id of session

Example:

"35DB0A2F-E5CE-4AD8-A308-55C3108956E5"

status
enum<string>

The status of the review

  • PENDING - The resource is waiting to be reviewed
  • APPROVED - The resource is fully approved
  • REJECTED - The resource is fully rejected
  • REVOKED - The resource was revoked after being approved
  • PROCESSING - The review is being executed
  • EXECUTED - The review was executed
  • UNKNOWN - Unable to know the status of the review
Available options:
PENDING,
APPROVED,
REJECTED,
REVOKED,
PROCESSING,
EXECUTED,
UNKNOWN
time_window
object

The time window configuration that can execute the session

type
enum<string>

The type of the review

  • onetime - Represents a one time execution
  • jit - Represents a time based review
Available options:
onetime,
jit