Skip to main content
GET
/
requests
/
{id}
Get Request
curl --request GET \
  --url https://v1.api.flux-os.com/requests/{id} \
  --header 'x-api-key: <api-key>' \
  --header 'x-user-id: <api-key>'
{
  "data": {
    "endpoint": "<string>",
    "method": "G",
    "id": "<string>",
    "organization": {
      "name": "<string>",
      "id": "<string>"
    },
    "key": {
      "id": "<string>",
      "active": true
    },
    "user": {
      "first_name": "<string>",
      "last_name": "<string>",
      "id": "<string>"
    },
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "status_code": "200",
    "request_data": null,
    "response_data": null,
    "headers": null,
    "query_params": null,
    "ip_address": null,
    "user_agent": null,
    "duration_ms": null
  }
}

Authorizations

x-api-key
string
header
required
x-user-id
string
header
required

Path Parameters

id
integer
required

The request ID.

Response

A single request.

data
object