valorant-api-types
Version:
A collection of documented endpoints and return types for the unofficial Valorant API
21 lines (20 loc) • 733 B
TypeScript
import { z } from 'zod';
export declare const partyRequestEndpoint: {
readonly name: "Party Request";
readonly description: "Requests to join the specified party ID";
readonly queryName: "Party_RequestToJoinParty";
readonly category: "Party Endpoints";
readonly type: "glz";
readonly method: "POST";
readonly suffix: "parties/v1/parties/{party id}/request";
readonly riotRequirements: {
readonly token: true;
readonly entitlement: true;
readonly clientPlatform: true;
readonly clientVersion: true;
};
readonly responses: {
readonly '200': z.ZodUnknown;
};
};
export type PartyRequestResponse = z.input<typeof partyRequestEndpoint.responses['200']>;