DeployedApiCallDetailInput
Input parameters for querying detailed API call metrics with filtering, sorting, and pagination options.
input DeployedApiCallDetailInput {
requestTsStart: DateTime!
requestTsEnd: DateTime!
filter: Filter
sortOrder: SortOrder
rowLimit: Int
}
Fields
DeployedApiCallDetailInput.requestTsStart ● DateTime! non-null scalar platform
Filters the records retrieved to only those on or after this timestamp.
DeployedApiCallDetailInput.requestTsEnd ● DateTime! non-null scalar platform
Filters the records retrieved to only those before this timestamp.
DeployedApiCallDetailInput.filter ● Filter scalar partner-portal
Filters the records retrieved using the Filter Query Language. The fields available in the filter expression are those listed in the DeployedApiCallDetailData type.
DeployedApiCallDetailInput.sortOrder ● SortOrder enum platform
Sorts the records in ascending or descending order based on request timestamp. If no value is provided it will sort with ascending order.
DeployedApiCallDetailInput.rowLimit ● Int scalar miscellaneous
Limits the number of rows requested. The allowed range is 0-999. The default is 999. If the value is more than 999, it will result in the default of 999.
Member Of
deployedApiCallDetail query