export interface RequestData
Represents possible data to be given to an endpoint
optionalboolean appendToFormData? :
Whether to append JSON data to form data instead of payload_json
when sending files
Alternate authorization data to use for this request only, or false
to disable the Authorization header. When making a request to a route that includes a token (such as interactions or webhooks), set to false
to avoid accidentally unsetting the instance token if a 401 is encountered.
The body to send to this request. If providing as BodyInit, set passThroughBody: true
optionalboolean passThroughBody? :
Whether to pass-through the body property directly to fetch()
. This only applies when files is NOT present
optionalURLSearchParams query? :
Query string parameters to append to the called endpoint
optionalAbortSignal | undefined signal? :
The signal to abort the queue entry or the REST call, where applicable
optionalboolean = true versioned? :
If this request should be versioned