Skip to main content
GET
/
apiKeyRequests
Get API key request
curl --request GET \
  --url https://api.quivo.co/apiKeyRequests
[
  {
    "id": 123,
    "initiator": "<string>",
    "sellerName": "<string>",
    "status": "APPROVED",
    "comment": "<string>",
    "approvedBy": "<string>",
    "value": "<string>",
    "created": "2023-11-07T05:31:56Z",
    "lastModified": "2023-11-07T05:31:56Z",
    "expirationDate": "2023-11-07T05:31:56Z",
    "sort": {
      "short": true,
      "nodeType": "ARRAY",
      "float": true,
      "binary": true,
      "number": true,
      "integralNumber": true,
      "boolean": true,
      "double": true,
      "long": true,
      "int": true,
      "valueNode": true,
      "containerNode": true,
      "missingNode": true,
      "object": true,
      "pojo": true,
      "floatingPointNumber": true,
      "bigDecimal": true,
      "bigInteger": true,
      "textual": true,
      "array": true,
      "null": true
    }
  }
]

Query Parameters

query
string

Search query string used to filter results. This field supports specific syntax for filtering across multiple fields.

sort
string

Optional sorting criteria for the results. Format is typically 'field:direction' (e.g., 'created:desc').

page
integer<int64>

The page number to retrieve when using offset-based pagination. Ignored if 'searchAfter' is provided.

searchAfter
string

Used for cursor-based pagination. Pass the 'sort' key value from the last item of the previous page to retrieve the next set of results efficiently. Overrides 'page'.

pageSize
integer<int64>

The maximum number of items to return per page. Used for both offset and cursor-based pagination.

Response

Returns an array of API key request records with status and request details.

id
integer<int64>

The unique identifier for the API request.

initiator
string

The user or system that initiated the API request.

sellerName
string

The name of the seller

status
enum<string>

The current status of the API request (e.g., pending, completed, failed).

Available options:
APPROVED,
REJECTED,
PENDING,
DELETED,
EXPIRED
comment
string

Comment or notes

approvedBy
string

The approved by

value
string

The value or data associated with the API request.

created
string<date-time>

Timestamp when the item was created

lastModified
string<date-time>

Timestamp when the item was last modified

expirationDate
string<date-time>

The date and time when the API request expires.

sort
object

The