GET
/
custom
/
org
/
{organization_uuid}
/
reports
/
requests
curl --request GET \
  --url https://api.tilt.io/custom/org/{organization_uuid}/reports/requests/ \
  --header 'X-Api-Key: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "created": "2023-11-07T05:31:56Z",
      "method": "<string>",
      "full_url": "<string>",
      "url_route": "<string>",
      "status_code": -1,
      "user": {
        "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      }
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

organization_uuid
string
required

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

user
string

Filter requests by user UUID.

Response

200 - application/json

The response is of type object.