changed checkusers endpoint

This commit is contained in:
2025-10-09 23:42:48 -07:00
parent 8318d5c820
commit 159473250c

View File

@ -72,7 +72,7 @@ export class TASEClient {
if(UserIDs.length > 10000) throw new Error("The amount of UserIDs must be less than 10,000.") if(UserIDs.length > 10000) throw new Error("The amount of UserIDs must be less than 10,000.")
if(UserIDs.length < 1) throw new Error("The amount of UserIDs must be atleast 1 character.") if(UserIDs.length < 1) throw new Error("The amount of UserIDs must be atleast 1 character.")
const Response = await fetch(TASEApi + `/api/v1/mass-check`, { const Response = await fetch(TASEApi + `/api/v1/check/mass`, {
headers: { headers: {
authorization: `Bearer ${this.token}`, authorization: `Bearer ${this.token}`,
"content-type": "application/json" "content-type": "application/json"