Skip to main content

ListBinaries

List all previously uploaded binaries

Request Parameters

None

Response

  • binaries (array)

    An array of objects representing the uploaded binaries.

    • id (string)

      The ID of the binary.

    • created_at (integer)

      The Unix timestamp of when the binary was uploaded.

Example Request

{
"jsonrpc": "2.0",
"method": "dyndexer_listBinaries",
"params": [],
}

Example Response

{
"jsonrpc": "2.0",
"result": {
"binaries": [
{
"id": "binary-123456",
"created_at": 1630000000
}
]
}
}