Members Activity By Id
GraphQL Endpoint to fetch members' activity of specific users in your Discord Server
GraphQL Query
query MembersActivityByIds($ids: [String]!, $startDate: String, $endDate: String, $guildId: String) {
membersActivityByIds(ids: $ids, startDate: $startDate, endDate: $endDate, guildId: $guildId) {
totalMembers
membersList {
id
name
discriminator
lastActiveDate
numMessages
numMessagesLast90Days
numMessagesLast60Days
numMessagesLast30Days
}
}
}Variables
Response
Examples
POST https://dashboard.withblaze.app/api/graphql-api
Without startDate and endDate
Query Parameters
Name
Type
Description
ids*
["111111111111111111"]
List of discord members ids
guildId
GUILD-ID
Optional: Guild ID of the Discord Server
If the guild ID is not specified, the data of the discord server that was integrated first will be retrieved
Headers
Name
Type
Description
x-api-key*
API-KEY
Your Blaze API Key
POST https://dashboard.withblaze.app/api/graphql-api
With startDate and endDate
Query Parameters
Name
Type
Description
startDate
2023-05-14
endDate
2023-06-14
guildId
GUILD-ID
Guild ID of the discord server
ids*
["111111111111111111"]
List of discord members ids
Headers
Name
Type
Description
x-api-key
API-KEY
Your Blaze API Key
Last updated
Was this helpful?