Skip to main content

Response

Represents a response from a CosmosAsync request.

note

This type is deducted from Spotify's internal usage. It may not be accurate and may change in the future.

interface Response {
body: any;
headers: Headers;
status: number;
uri?: string;
}
PropertyTypeDescription
bodyBodyParsed JSON response body.
headersHeadersResponse headers.
statusnumberHTTP status code.
uristring | undefinedRequest URI.