An object used to configure an ApiXRequest object.

interface ApiXRequestConfig {
    data?: ApiXJsonObject;
    httpMethod?: ApiXHttpMethod;
    keyStore: ApiXKeyStore;
    url: URL;
}

Properties

The HTTP JSON Body of the request.

httpMethod?: ApiXHttpMethod

The HTTP Method.

keyStore: ApiXKeyStore

An object that allows you to securely retrieve API keys and application keys.

url: URL

The URL to which the request will be made.