Skip to content

Latest commit

 

History

History
82 lines (58 loc) · 1.86 KB

File metadata and controls

82 lines (58 loc) · 1.86 KB
subcategory Compute Engine
page_title Request
description Tools for listing and inspecting API requests in IONOS CLOUD.

Requests

list_requests

Lists all API requests in your IONOS CLOUD account.

Parameters:

Name Type Required Description
depth integer No Nesting depth of returned objects (0–5).
filters object No Server-side property filters; e.g. {"method":"POST","requestStatus":"DONE"}. If the result is empty, retry without filters — a filter typo or mismatch silently returns nothing.

Example:

{
  "name": "list_requests",
  "arguments": {}
}

API Reference: requestsGet


get_request

Gets detailed information about a specific API request.

Parameters:

Name Type Required Description
request_id string Yes The ID of the request
depth integer No Nesting depth of returned objects (0–5).

Example:

{
  "name": "get_request",
  "arguments": {
    "request_id": "12345678-1234-1234-1234-123456789012"
  }
}

API Reference: requestsFindById


get_request_status

Gets the status of a specific API request.

Parameters:

Name Type Required Description
request_id string Yes The ID of the request
depth integer No Nesting depth of returned objects (0–5).

Example:

{
  "name": "get_request_status",
  "arguments": {
    "request_id": "12345678-1234-1234-1234-123456789012"
  }
}

API Reference: requestsStatusGet