| ADMIN_REQUEST_SEARCH | ADMIN Endpoint | |
| /rpc/admin/?method=ADMIN_REQUEST_SEARCH | ||
| Important: Due to the volume of data written to this table, you need to filter on CreatedDate (over a short range) to get results returned | ||
| For information on how to use Advanced Searches, click here |
| DETAILS | |||
| Prefix | Request |
| PARAMETERS | TYPE | NOTES | |
| Id | Numeric | ||
| Instance | Text (10) | Application server that processed the request | |
| Method | Numeric | ||
| MethodText | Text (50) | As per SETUP_METHOD_SEARCH | |
| PostData | Text (1000) | ||
| ProcessingTime | Numeric | The lenght of time in seconds it took to process the request | |
| QueryString | Text (4000) | ||
| ReturnText | Text (500) | ||
| SourceHost | Text (100) | ||
| SourceIPAddress | Text (50) | ||
| Version | Text (10) | Either ONDEMAND or RPC |
| RETURN | ||
| Selected Fields |
| EXAMPLE | ||
| Using mydigitalstructure SDK/js |
mydigitalstructure.retrieve(
{
object: 'admin_request',
data:
{
criteria:
{
fields: [
{name: 'methodtext'},
{name: 'modifieddate'},
{name: 'returntext'},
{name: 'postdata'} ],
filters: [
{ name: 'method', comparison: 'EQUAL_TO', value1: '408'}],
sorts: [
{ name: 'id', direction: 'desc'}],
options:
{ rows: 20 }
}}});
|