Users

Get User Note

GET
/userNotes/{userNoteId}

Get a particular user note

Authorization

authCookie
auth<token>

Auth Token via Cookie

In: cookie

Path Parameters

userNoteId*string

Must be a valid user note ID.

Response Body

application/json

application/json

curl -X GET "https://api.vrchat.cloud/api/1/userNotes/unt_e9074848-d107-4019-b4aa-bbd19e67660d"
{
  "createdAt": "2019-08-24T14:15:22Z",
  "id": "unt_e9074848-d107-4019-b4aa-bbd19e67660d",
  "note": "string",
  "targetUser": {
    "id": "usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469",
    "displayName": "string"
  },
  "targetUserId": "usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469",
  "userId": "usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469"
}
{
  "error": {
    "message": "\"Missing Credentials\"",
    "status_code": 401
  }
}