vrchat_list_invite_messages
Retrieve a list of user invite messages in VRChat by specifying a valid user ID and message type. Requires admin credentials to access messages of other users.
Instructions
Returns a list of all the users Invite Messages. Admin Credentials are required to view messages of other users!
Input Schema
Name | Required | Description | Default |
---|---|---|---|
messageType | Yes | The type of message to fetch | |
userId | Yes | Must be a valid user ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"messageType": {
"description": "The type of message to fetch",
"enum": [
"message",
"response",
"request",
"requestResponse"
],
"type": "string"
},
"userId": {
"description": "Must be a valid user ID",
"minLength": 1,
"type": "string"
}
},
"required": [
"userId",
"messageType"
],
"type": "object"
}