diff --git a/research/RecNet API.postman_collection.json b/research/RecNet API.postman_collection.json
new file mode 100644
index 0000000..4eb5f13
--- /dev/null
+++ b/research/RecNet API.postman_collection.json
@@ -0,0 +1,11099 @@
+{
+ "info": {
+ "_postman_id": "96c8925d-6e64-48a1-96ba-1b4fc0c857aa",
+ "name": "RecNet API",
+ "description": "This is an **unofficial documentation** of the RecNet API, compiled from [RecNetAPI Docs](https://rec-room.fandom.com/wiki/Current_Api_Documentation) and [RecNet API](https://documenter.getpostman.com/view/13848200/TVt184DN#69bd1bfd-1052-422d-b16e-e18e0d7668dc). These 2 places were missing a fair few requests, so I thought it would be best to use Postman to compile them all into one place.\n\nFeel free to use this documentation as you see fit, however, if you are copying the docs - make sure you give credit :)",
+ "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
+ "_exporter_id": "47016093",
+ "_collection_link": "https://go.postman.co/collection/47016093-96c8925d-6e64-48a1-96ba-1b4fc0c857aa?source=collection_link"
+ },
+ "item": [
+ {
+ "name": "Images",
+ "item": [
+ {
+ "name": "Image Information From ID",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v4/:photoId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v4",
+ ":photoId"
+ ],
+ "variable": [
+ {
+ "key": "photoId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes an image ID as a path parameter, and returns an object that contains detailed information about an image."
+ },
+ "response": [
+ {
+ "name": "Image Information From ID",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v4/:photoId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v4",
+ ":photoId"
+ ],
+ "variable": [
+ {
+ "key": "photoId",
+ "value": "81792706"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 22:46:44 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "353"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Id\": 81792706,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"19bdccb6f31e4e408a4731da550866d4.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-31T11:52:07.9448923Z\",\n \"CheerCount\": 2,\n \"CommentCount\": 0\n}"
+ }
+ ]
+ },
+ {
+ "name": "Image Comments",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net//api/images/v1/:photoId/comments",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "",
+ "api",
+ "images",
+ "v1",
+ ":photoId",
+ "comments"
+ ],
+ "variable": [
+ {
+ "key": "photoId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes an image ID as a path parameter, and returns an array of objects that detail comment information.\n\n## Comment Properties\n\n| Property | Type | Description |\n| --- | --- | --- |\n| Saved Image Comment ID | Int | Each comment has a unique ID associated with it. Comment IDs are sequential which means that every time a new comment is shared to RecNet, it's ID will be +1 of the previous comment shared to RecNet. |\n| Saved Image ID | Int | This is the internal image ID of the image that the comment is associated with. |\n| Player ID | Int | This is the internal account ID of the player who made the comment. For more information regarding account information look at the [Accounts](https://documenter.getpostman.com/view/13848200/TVt184DN#72845adf-0224-43a6-abda-7bff6fde3d03) section. |\n| Comment | String | This is the comment data that is associated with the image & account ID. |"
+ },
+ "response": [
+ {
+ "name": "Image Comments",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net//api/images/v1/:photoId/comments",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "",
+ "api",
+ "images",
+ "v1",
+ ":photoId",
+ "comments"
+ ],
+ "variable": [
+ {
+ "key": "photoId",
+ "value": "81792706"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 22:48:06 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "214"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"SavedImageCommentId\": 686232,\n \"SavedImageId\": 81792706,\n \"PlayerId\": 10441985,\n \"Comment\": \"This is an example comment! :)\"\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Image Cheers",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v1/:imageId/cheers",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v1",
+ ":imageId",
+ "cheers"
+ ],
+ "variable": [
+ {
+ "key": "imageId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes an image ID as a path parameter, and returns an array of all the internal account IDs of all the players that cheered the cheered the image."
+ },
+ "response": [
+ {
+ "name": "Image Cheers",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v1/:imageId/cheers",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v1",
+ ":imageId",
+ "cheers"
+ ],
+ "variable": [
+ {
+ "key": "imageId",
+ "value": "81792706"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 22:48:24 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "140"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n 20508577,\n 21481223\n]"
+ }
+ ]
+ },
+ {
+ "name": "Images of a Player",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v3/feed/player/:playerId?take=",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v3",
+ "feed",
+ "player",
+ ":playerId"
+ ],
+ "query": [
+ {
+ "key": "take",
+ "value": ""
+ }
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This is takes an account ID as a path parameter, and returns an array of all the image objects that have the account ID in the `TaggedPlayerIds` property."
+ },
+ "response": [
+ {
+ "name": "Images of a Player",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v3/feed/player/:playerId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v3",
+ "feed",
+ "player",
+ ":playerId"
+ ],
+ "query": [
+ {
+ "key": "take",
+ "value": "",
+ "disabled": true
+ }
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": "10441985"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 22:54:38 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "4681"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"Id\": 278591530,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"3jbb0er97qfwg3k4f29ojjd33.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T21:24:06.8181539Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278570089,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"biippuvh1xvz4ador0s7dlkla.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T20:47:15.501946Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 227418820,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"aqko1i4se1nr2hyfz0fex9fe5.jpg\",\n \"Description\": null,\n \"PlayerId\": 551129,\n \"TaggedPlayerIds\": [\n 1052593,\n 10441985,\n 48152322\n ],\n \"RoomId\": 55233468,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-03-18T22:31:03.5799428Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 227417238,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"023dfhvcxn7g1ni78f16e47h9.jpg\",\n \"Description\": null,\n \"PlayerId\": 8745597,\n \"TaggedPlayerIds\": [\n 4432135,\n 8745597,\n 10441985\n ],\n \"RoomId\": 55233468,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-03-18T22:28:55.548224Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 227409814,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"d6rafychkjey0n0k35xtisryl.jpg\",\n \"Description\": null,\n \"PlayerId\": 472065,\n \"TaggedPlayerIds\": [\n 1273877,\n 10441985,\n 13453560,\n 19133421\n ],\n \"RoomId\": 55233468,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-03-18T22:19:00.8573968Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 227373676,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"267dvg2h46eqzu8gqlj63pd7p.jpg\",\n \"Description\": null,\n \"PlayerId\": 28359499,\n \"TaggedPlayerIds\": [\n 10441985,\n 13537292,\n 14252916,\n 58760808\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-03-18T21:18:09.350364Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 202189808,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"4a00cae4722c4ee99984fe543a4b5643.jpg\",\n \"Description\": null,\n \"PlayerId\": 10772092,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 170134,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-02-18T18:18:35.0842708Z\",\n \"CheerCount\": 22,\n \"CommentCount\": 0\n },\n {\n \"Id\": 200473476,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"894141358c67465dacff5b3162480a68.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 18302616,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-02-16T17:03:43.6330649Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 160467440,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"f67e27b82dd840d3ad34df2eb3129f2b.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 29563053,\n 39531412\n ],\n \"RoomId\": 170136,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-01-02T01:21:23.4683042Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124344518,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"a5416aba9fa84a0781a69eb0522e0809.jpg\",\n \"Description\": null,\n \"PlayerId\": 29563053,\n \"TaggedPlayerIds\": [\n 10441985,\n 29563053\n ],\n \"RoomId\": 32488724,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T22:48:27.9431385Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 122616619,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"0498a1434548489a802dfb502f76d63f.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 170143,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-10T14:12:08.7152545Z\",\n \"CheerCount\": 2,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121874964,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"400389034efb4cb0a5cb0368b8fe2772.jpg\",\n \"Description\": null,\n \"PlayerId\": 29565301,\n \"TaggedPlayerIds\": [\n 10441985,\n 29563053,\n 29565301\n ],\n \"RoomId\": 31892849,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T22:36:55.0376541Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121873975,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"bdfe87e0e88e4a589bcdad01dd9312e6.jpg\",\n \"Description\": null,\n \"PlayerId\": 29565301,\n \"TaggedPlayerIds\": [\n 10441985,\n 29563053,\n 29565301\n ],\n \"RoomId\": 31892849,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T22:33:58.0231976Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121868556,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"8b7e9ead30894abdbde802dc828f83f1.jpg\",\n \"Description\": null,\n \"PlayerId\": 29565301,\n \"TaggedPlayerIds\": [\n 10441985,\n 29563053,\n 29565301\n ],\n \"RoomId\": 25980128,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T22:18:10.4797472Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121866686,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"6271814d0a3d4ae59bb85fa045403df0.jpg\",\n \"Description\": null,\n \"PlayerId\": 29565301,\n \"TaggedPlayerIds\": [\n 10441985,\n 29565301\n ],\n \"RoomId\": 25980128,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T22:12:44.0673448Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121866350,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"d409addf7a584876a4bb5c1340bc4e1c.jpg\",\n \"Description\": null,\n \"PlayerId\": 29565301,\n \"TaggedPlayerIds\": [\n 10441985,\n 29563053,\n 29565301\n ],\n \"RoomId\": 25980128,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T22:11:47.6177506Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121849925,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"12d562c96ce44e79a0d0a6ebadfa56b7.jpg\",\n \"Description\": null,\n \"PlayerId\": 29563053,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T21:22:10.264495Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121849584,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"b6bb7c4a63c147678eae35bcf0456eff.jpg\",\n \"Description\": null,\n \"PlayerId\": 29563053,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T21:21:08.4447991Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121827966,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"f806c15600c244f08f4380de0efc398d.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 29563053,\n 29565301\n ],\n \"RoomId\": 12721688,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T20:20:09.1143181Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121827920,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"def4d9d043ff4cdb846bf0c38cd2a23c.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 29563053,\n 29565301\n ],\n \"RoomId\": 12721688,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T20:20:00.8181726Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120531300,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"32d840c8d81744bc8ec5be4ba9ce66a7.jpg\",\n \"Description\": null,\n \"PlayerId\": 2043505,\n \"TaggedPlayerIds\": [\n 10441985,\n 14922080,\n 18475086,\n 27120056\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T18:59:25.6263519Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 118946321,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"140ac5adc8514934a2e17cf839da7f0f.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 2949413,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-09-27T17:46:46.4602065Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 118935458,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"8190ca6a8cb74bb2939b0d5774935280.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 23018444,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-09-27T16:40:12.2164926Z\",\n \"CheerCount\": 2,\n \"CommentCount\": 0\n },\n {\n \"Id\": 118935027,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"ce42b55f3b2c4abcb20007ee5e0fc3c0.jpg\",\n \"Description\": null,\n \"PlayerId\": 12717226,\n \"TaggedPlayerIds\": [\n 10441985,\n 12717226\n ],\n \"RoomId\": 23018444,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-09-27T16:37:36.0663108Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 118932401,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"a94224cad98944e1b1d3c06308a397ea.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 12717226,\n 22138044,\n 26929544,\n 28734510\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-09-27T16:21:02.7673895Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 118672786,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"0deb1627beda493fad6b266650c2ec24.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 12721688,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-09-26T17:43:33.1212988Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 118313466,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"294f3615fca1447ab83dbc5f7d8087c7.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 12721688,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-09-25T19:18:02.1015574Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 118263820,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"41b577f8e5f24b6da432f1c19e4f1abf.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": null,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-09-25T17:14:04.8169497Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 117896251,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"4411a2f2abdc495c8363826df1c62070.jpg\",\n \"Description\": null,\n \"PlayerId\": 9998701,\n \"TaggedPlayerIds\": [\n 1375026,\n 1978132,\n 2522015,\n 3928122,\n 5129929,\n 6884124,\n 10441985,\n 20763489,\n 23356014,\n 23724891\n ],\n \"RoomId\": 28529057,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-09-24T19:04:29.3250403Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 117896179,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"6d4d0fbb817b4801850247600c2ec52c.jpg\",\n \"Description\": null,\n \"PlayerId\": 20763489,\n \"TaggedPlayerIds\": [\n 1976304,\n 1978132,\n 2093413,\n 3928122,\n 6884124,\n 9998701,\n 10441985,\n 20763489,\n 23356014,\n 26172365\n ],\n \"RoomId\": 28529057,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-09-24T19:04:14.2306092Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 117896077,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"c6ddd0c91e6e453bb71ea4c62beffc32.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 1803695,\n 1976304,\n 10441985,\n 23724891\n ],\n \"RoomId\": 28529057,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-09-24T19:03:50.3103315Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 117895928,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"81ee0d6349e44ea39484ea2955a000c6.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 1803695,\n 1976304,\n 2093413,\n 2522015,\n 10441985,\n 20763489\n ],\n \"RoomId\": 28529057,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-09-24T19:03:24.5002363Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 110647493,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"5e236282b4aa45b7b68b05758b200e99.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 9153409,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-08-30T12:08:51.9700295Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 110647144,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"57b41147913b44108d6f59021c151963.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 9153409,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-08-30T12:06:51.7060469Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 110646205,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"983973f8789c4832b1d8f9481e9dcc49.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 28755066,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-08-30T12:01:05.5027163Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 110646129,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"f2f26d33408441c38521bcdc9d4c5e94.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 28755066,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-08-30T12:00:33.7812328Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 110444783,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"590679c1cefb49208093bef428e65a15.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 18224017,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-08-29T20:34:13.3569188Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 110296491,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"406b88c98f364612b4f0a5fcfc44564c.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 11937484,\n 20577063,\n 23422999\n ],\n \"RoomId\": 6068852,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-08-29T13:19:02.3883107Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 110296440,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"17f5b0bf60c04a118396fa9456f34f54.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 11937484,\n 20577063,\n 23422999\n ],\n \"RoomId\": 6068852,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-08-29T13:18:49.0126832Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 86250008,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"0d28d0c66262444eb901c0a6d0367c05.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 11847793,\n 18967610\n ],\n \"RoomId\": 9182791,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-15T15:06:09.5832138Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 82145365,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"77bfab34f04a4ef2ae374009aa9c7f7c.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 14277362,\n 20405876\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-01T18:16:39.0262955Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 82142332,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"ddcbf0778e67425d9ce55d6eab0b73d3.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 19834088\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-01T18:05:04.0752783Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 81792814,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"ebceef9e9f9145ea9dda4bb87fb0cb1a.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-31T11:53:10.9990724Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 81792785,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"e349cb67c7d04bd28b3490a4d5d27df1.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-31T11:52:57.108372Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 79721648,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"23f6285ae0814cde835c6f0e2c5ed29f.jpg\",\n \"Description\": null,\n \"PlayerId\": 10452682,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 20043122,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-23T13:16:58.3560031Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 79720859,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"b46cc375dbe044eebac1b56ac9b1b2c4.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 10452682\n ],\n \"RoomId\": 20043122,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-23T13:11:52.864353Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 79720788,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"9c413e10966a47909ba87f8f2f466191.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 10452682\n ],\n \"RoomId\": 20043122,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-23T13:11:30.9910308Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 79720742,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"45d0e3df8aa74e118b55225441a88eaa.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 10452682\n ],\n \"RoomId\": 20043122,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-23T13:11:13.2708996Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 79720588,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"7fe45b7ca4024b2fa31995739dcb39a0.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 10452682\n ],\n \"RoomId\": 20043122,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-23T13:10:14.640392Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 79720551,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"2ae965d1375f491e9d7a43f4a8b6c579.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 20043122,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-23T13:10:01.9367964Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 79720477,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"e4dae7c06d424338babc220db519e518.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 20043122,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-23T13:09:40.6108224Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 79719212,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"5753bd0246cc4219930dc11cf636d1f0.jpg\",\n \"Description\": null,\n \"PlayerId\": 10452682,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 20043122,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-23T13:01:49.7896205Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 79715876,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"de3df078d7ec4a2c8a17ba5aec63829b.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 8142561,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-23T12:40:02.6972386Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 79715848,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"2e22c05b7ab54287917a8a4289282de0.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 8142561,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-23T12:39:51.1636859Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 79715819,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"19dd246a048d448aa2ffcc0b701a42ea.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 8142561,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-23T12:39:39.4899189Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 79715748,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"9087cc4c73df44239697b3a3c91373f4.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 8142561,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-23T12:39:08.0398194Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 74951472,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"d9cd95b9b6944bedb9c2d3075a79e2fc.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 10452682,\n 18246756\n ],\n \"RoomId\": 13858590,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-02T14:57:15.1667084Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 74951438,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"80c3c6464c2245c69cf534cff5ea2d06.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 13858590,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-05-02T14:57:05.607623Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 70066894,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"e4b560f156d744649f95d0343217e103.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 13858590,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-04-11T17:00:22.7238454Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 70066744,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"dbefbdcbcedd4dc7ad8f09664832ec44.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 13858590,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-04-11T16:59:36.3452629Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 70066568,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"303977f9fcca418fa8b2574e621b7312.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 13858590,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-04-11T16:58:53.0373028Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 70066156,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"35c22eaadfca4cd09a9594f5d39ecb70.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 13858590,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-04-11T16:56:51.9865468Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 70066045,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"f7d61d3baca04817a150746173a4e99e.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 13858590,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-04-11T16:56:28.1010927Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 70065864,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"4690fef0181c49809b2cac7dac77dabc.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 13858590,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-04-11T16:55:31.6532031Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Images Taken By a Player",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v4/player/:playerId?take=",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v4",
+ "player",
+ ":playerId"
+ ],
+ "query": [
+ {
+ "key": "take",
+ "value": "",
+ "type": "text"
+ }
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes an account ID as a path parameter, and returns an array of all the image objects that have the account ID as it's `PlayerId` property."
+ },
+ "response": [
+ {
+ "name": "Images Taken By a Player",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v4/player/:playerId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v4",
+ "player",
+ ":playerId"
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": "10441985"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 22:55:03 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "4313"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"Id\": 278592203,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"2swwu11o11k7x6bc7pqu7pgvf.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T21:25:18.0398609Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278592008,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"44t1qoezdxsckpo89dhuytqp3.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 8205098,\n 8826977,\n 38597592,\n 44140393,\n 45910043\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T21:24:57.3184597Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278591530,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"3jbb0er97qfwg3k4f29ojjd33.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T21:24:06.8181539Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278591313,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"3iko594o5stktalq9wa8ulc1c.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 62425527,\n 63478496,\n 65536484\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T21:23:44.5687394Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278570089,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"biippuvh1xvz4ador0s7dlkla.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T20:47:15.501946Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 271946166,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"bfo13d4cnevdb20ppgyhopjls.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 12606623\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-21T20:55:33.3685779Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 271859375,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"4o186bzd5rtdh50rquskuf26k.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-21T19:01:05.2677226Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 209543926,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"6ywjopga1xk7ryklm92sw7akg.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 12721688,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-02-25T22:36:33.096461Z\",\n \"CheerCount\": 9,\n \"CommentCount\": 0\n },\n {\n \"Id\": 208332645,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"d5j7l6mo66wdclim6nwxcmgi2.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 170137,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-02-24T15:12:25.4613146Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 202994356,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"6d81f1fdde244014b1563a28c0c471f9.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 6068852,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-02-19T11:27:28.3208653Z\",\n \"CheerCount\": 3,\n \"CommentCount\": 0\n },\n {\n \"Id\": 200473476,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"894141358c67465dacff5b3162480a68.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 18302616,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-02-16T17:03:43.6330649Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 200421008,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"5782dbf123484c63acee1d8d79c78dbe.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 170132,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-02-16T15:25:01.7435019Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 184265700,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"4185b99898d445eea480305f51dbec8d.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 46218579,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-01-29T14:20:29.2700959Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 184260671,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"d06ee2231d97415e8ecab26ab76b0229.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 46218579,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-01-29T14:14:06.1928702Z\",\n \"CheerCount\": 8,\n \"CommentCount\": 0\n },\n {\n \"Id\": 160469623,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"0ca2dc85877c435d92efdfde04525af4.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 12721688,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-01-02T01:23:51.0355934Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 160467440,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"f67e27b82dd840d3ad34df2eb3129f2b.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 29563053,\n 39531412\n ],\n \"RoomId\": 170136,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-01-02T01:21:23.4683042Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 157425211,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"ff4a769fe40043178f43943f662c76be.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 17357349,\n 39531412\n ],\n \"RoomId\": 170136,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-12-29T22:41:57.7459919Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 157364827,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"3829ff35ae9e4d638efa2ea34fced56b.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-12-29T21:46:42.4364497Z\",\n \"CheerCount\": 3,\n \"CommentCount\": 0\n },\n {\n \"Id\": 156498314,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"7248fc6011a7434a8e0d7fe0137fc574.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 170134,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-12-29T00:16:36.0422979Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 155437529,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"4a47fdd033894e5c9e02f198d1e6604c.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 39531412\n ],\n \"RoomId\": 170134,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-12-27T23:03:52.4447091Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 155419747,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"b3e9fcceb78044958e2680e3f479f0a3.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-12-27T22:44:00.8563367Z\",\n \"CheerCount\": 2,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124335180,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"3dd9e276c0ea4a0c982ac5e7991f7ece.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053\n ],\n \"RoomId\": 32488724,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T22:21:20.622287Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124308758,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"0131894f03b94838a18672ce734544f9.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053\n ],\n \"RoomId\": 32488724,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T21:04:12.6712851Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124308637,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"4fc5ca01c6164675bb736f0c996f3ca3.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053\n ],\n \"RoomId\": 32488724,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T21:03:49.2232945Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124308597,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"5a55068139d845599c868d263c69cd89.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053\n ],\n \"RoomId\": 32488724,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T21:03:42.3004114Z\",\n \"CheerCount\": 24,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124308170,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"f41f965b3b1746eea8cbc107dd8c9bb2.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053\n ],\n \"RoomId\": 32488724,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T21:02:22.318526Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124308107,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"bc392c2a78d5468d8b496136073d7aab.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053\n ],\n \"RoomId\": 32488724,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T21:02:08.7802287Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124308034,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"7d321af19d1840d89a41d531c6a45589.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053\n ],\n \"RoomId\": 32488724,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T21:01:56.3465053Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124307975,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"d3647cf748a14abd908e47d962413404.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053\n ],\n \"RoomId\": 32488724,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T21:01:45.8164562Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124290763,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"d5b59c697cc34edba5587f40cb6a0025.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 32488724,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T20:07:15.7655869Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124290230,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"840a94484a6d4fa79f105740f6d1ac8c.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 31892849,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T20:05:29.9462981Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124288455,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"02a4d40815ee4aca94340f0c73690293.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053\n ],\n \"RoomId\": 31892849,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T19:59:32.9821266Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124288442,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"83a8cb6855a54f1885691b1be3bbb420.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29565301\n ],\n \"RoomId\": 31892849,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T19:59:30.2133288Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124287545,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"1eb4dd7c19ac4a9ba37a0756885584d1.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053\n ],\n \"RoomId\": 31892849,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T19:56:24.9829723Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124271566,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"542c6f9c4b924ccfa6a854e092f1e30c.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 170135,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T18:59:13.0679009Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124267171,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"444d014de3b046b291db99d48627a280.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 170135,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T18:42:22.9563053Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 122633583,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"72c2411657654eabb11afa493553b798.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 170132,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-10T14:57:22.1362233Z\",\n \"CheerCount\": 3,\n \"CommentCount\": 0\n },\n {\n \"Id\": 122616619,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"0498a1434548489a802dfb502f76d63f.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 170143,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-10T14:12:08.7152545Z\",\n \"CheerCount\": 2,\n \"CommentCount\": 0\n },\n {\n \"Id\": 122304733,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"6ac9aa3001de40298ea46d0b5785b450.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053,\n 29565301\n ],\n \"RoomId\": 12721688,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-09T20:36:04.2806679Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 122292633,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"d6adedf7f32041869756a8e299d834e6.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 170132,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-09T20:08:12.2207782Z\",\n \"CheerCount\": 8,\n \"CommentCount\": 0\n },\n {\n \"Id\": 122158536,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"a76455e20f244e5da68b69f04bc2b07b.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 4418926,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-09T15:08:02.8068139Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121875748,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"3263d2f7930d4ed3b44e00f48be69764.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 31892849,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T22:39:14.41076Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121875662,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"2efc668a739d4483bf10da517e78ec59.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 31892849,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T22:38:58.8944656Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121873759,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"f80b6535740c4ca8bee0211b907206d3.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 31892849,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T22:33:18.420781Z\",\n \"CheerCount\": 4,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121873141,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"41d848caa82a4541a787bd53f6a8a1a2.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 31892849,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T22:31:26.4445497Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121873105,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"78594175dcdb4051be7e46867915369f.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053\n ],\n \"RoomId\": 31892849,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T22:31:18.6456445Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121873062,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"6719d620944944eca8482aeca5c8e491.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053\n ],\n \"RoomId\": 31892849,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T22:31:10.5945924Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121869632,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"366f33c1a39f424c842ed997d9d500d1.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053,\n 29565301\n ],\n \"RoomId\": 25980128,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T22:21:02.8165135Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121850303,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"facd8acad3c14821af97175e25bf754d.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053,\n 29565301\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T21:23:21.093678Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121847841,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"fb040c3d83a24be3bcaea4ace1780d55.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053,\n 29565301\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T21:16:08.3801416Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121847685,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"b80b7214e8654134ab276820edb11c33.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053,\n 29565301\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T21:15:39.3682333Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121827966,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"f806c15600c244f08f4380de0efc398d.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 29563053,\n 29565301\n ],\n \"RoomId\": 12721688,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T20:20:09.1143181Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121827920,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"def4d9d043ff4cdb846bf0c38cd2a23c.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10441985,\n 29563053,\n 29565301\n ],\n \"RoomId\": 12721688,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T20:20:00.8181726Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120553387,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"da23ae5a07f74e9583dafc33a4c55439.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 12721688,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T19:56:45.3658714Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120530545,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"5b487207e0a84fbd8c062a8a12250207.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 14922080\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T18:57:29.9578462Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120521024,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"df73de7c39414bbda67df2e7182289b9.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T18:33:13.14654Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120520904,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"195e80aba26e41358d2dddf04e8e23e1.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T18:32:55.130365Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120520770,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"825f32f8706f4529b714127ce03264a7.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T18:32:34.8571053Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120419083,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"2539ada3a0524e4294f1e41609baa1cc.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 31540280,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T13:37:57.1828084Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120412309,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"3dfe2a12ccd34d68a9689d3f4ed99927.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 17689351,\n 28346079\n ],\n \"RoomId\": 30855426,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T13:09:38.1924278Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120412240,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"ff76d2b81e404edf852cecef9966fff2.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 28346079\n ],\n \"RoomId\": 30855426,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T13:09:20.7977968Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120406272,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"b8fec59806aa4ccd8ad9c9d6d6e4acfb.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 10612840,\n 16382461\n ],\n \"RoomId\": 30855426,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T12:42:40.0674199Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120404266,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"d6889ea893554fa0b4be31652718bfdc.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 30855426,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T12:33:00.6157859Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120402332,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"441f7c1308a548948b9d75836335911b.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 30855426,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T12:23:13.4834323Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Images Taken During an Event",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v1/playerevent/:eventId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v1",
+ "playerevent",
+ ":eventId"
+ ],
+ "variable": [
+ {
+ "key": "eventId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes an event ID as a path parameter, and returns an array of all the image objects that have the event ID as it's `PlayerEventId` property."
+ },
+ "response": [
+ {
+ "name": "Images Taken During an Event",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v1/playerevent/:eventId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v1",
+ "playerevent",
+ ":eventId"
+ ],
+ "variable": [
+ {
+ "key": "eventId",
+ "value": "1202548"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 22:58:03 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "665"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"Id\": 278549452,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"6p84jyzaenamne3yq9wzdmtsv.jpg\",\n \"Description\": null,\n \"PlayerId\": 72188422,\n \"TaggedPlayerIds\": [\n 11582742\n ],\n \"RoomId\": 20361979,\n \"PlayerEventId\": 1202548,\n \"CreatedAt\": \"2022-05-31T20:12:23.5550012Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278549178,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"czwwr3zzcyirj1my509fqrgmk.jpg\",\n \"Description\": null,\n \"PlayerId\": 72188422,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 20361979,\n \"PlayerEventId\": 1202548,\n \"CreatedAt\": \"2022-05-31T20:11:57.3401653Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 277867056,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"94l4fza906uv6e9shoizpb626.jpg\",\n \"Description\": null,\n \"PlayerId\": 38729512,\n \"TaggedPlayerIds\": [\n 6926361,\n 11314174\n ],\n \"RoomId\": 20361979,\n \"PlayerEventId\": 1202548,\n \"CreatedAt\": \"2022-05-30T18:43:07.6376098Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 277867015,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"9bowk01402yz1w4cgep15wqcn.jpg\",\n \"Description\": null,\n \"PlayerId\": 38729512,\n \"TaggedPlayerIds\": [\n 4346455,\n 10577006,\n 11582742,\n 12309675,\n 14030439,\n 20123002\n ],\n \"RoomId\": 20361979,\n \"PlayerEventId\": 1202548,\n \"CreatedAt\": \"2022-05-30T18:43:03.2181756Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 277866305,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"92ctvx4wl5qfiah7wa4gc8fqv.jpg\",\n \"Description\": null,\n \"PlayerId\": 20123002,\n \"TaggedPlayerIds\": [\n 6926361,\n 20123002\n ],\n \"RoomId\": 20361979,\n \"PlayerEventId\": 1202548,\n \"CreatedAt\": \"2022-05-30T18:42:04.3020448Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Images Taken in a Room",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v4/room/:roomId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v4",
+ "room",
+ ":roomId"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes a room ID as a path parameter, and returns an array of all the image objects that have the room ID as it's `RoomId` property."
+ },
+ "response": [
+ {
+ "name": "Images Taken in a Room",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v4/room/:roomId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v4",
+ "room",
+ ":roomId"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": "23570830"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:02:25 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "4312"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"Id\": 244724811,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"bhnhx6b3qd9wjpyz3m29hrxe3.jpg\",\n \"Description\": null,\n \"PlayerId\": 50809536,\n \"TaggedPlayerIds\": [\n 50809536\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-04-10T16:09:27.2798242Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 244354216,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"2fsxodlc8gnzkk5xcjvzr0kvv.jpg\",\n \"Description\": null,\n \"PlayerId\": 63340076,\n \"TaggedPlayerIds\": [\n 63340076\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-04-10T04:06:23.8644821Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 236013497,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"1jmkwtvp75cvp8utxkjnck7uk.jpg\",\n \"Description\": null,\n \"PlayerId\": 4015064,\n \"TaggedPlayerIds\": [\n 4015064,\n 19165990,\n 52993747\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-03-29T19:03:28.5000659Z\",\n \"CheerCount\": 5,\n \"CommentCount\": 0\n },\n {\n \"Id\": 225178763,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"8fh4wgsa8ou5n6822znnl0bgs.jpg\",\n \"Description\": null,\n \"PlayerId\": 45868779,\n \"TaggedPlayerIds\": [\n 45868779\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-03-15T21:01:59.3902586Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 225178155,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"8dys6sibn3jwewv61u250rvb7.jpg\",\n \"Description\": null,\n \"PlayerId\": 45868779,\n \"TaggedPlayerIds\": [\n 45868779\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-03-15T21:01:10.4176149Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 225176681,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"cl99f410tyd85vmajd8mo88w8.jpg\",\n \"Description\": null,\n \"PlayerId\": 45868779,\n \"TaggedPlayerIds\": [\n 42553645,\n 45868779\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-03-15T20:59:14.0311908Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 224687486,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"1e23yqbnkauvoqigt19xdrrn3.jpg\",\n \"Description\": null,\n \"PlayerId\": 58100273,\n \"TaggedPlayerIds\": [\n 58100273\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-03-15T02:44:44.9661116Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 215514898,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"38x0r8g62hm75h87w3jw23fdj.jpg\",\n \"Description\": null,\n \"PlayerId\": 53761785,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-03-05T00:09:34.5296743Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 201215728,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"ca35889dbdca4aea9672ec8a173555a1.jpg\",\n \"Description\": null,\n \"PlayerId\": 14993101,\n \"TaggedPlayerIds\": [\n 14993101\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-02-17T17:33:15.2965539Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 201215573,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"ed7ace164b134510903ddb7fde58cf23.jpg\",\n \"Description\": null,\n \"PlayerId\": 14993101,\n \"TaggedPlayerIds\": [\n 14993101\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-02-17T17:32:59.9737578Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 201215421,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"f4295f3f52b044a78a0418c004004698.jpg\",\n \"Description\": null,\n \"PlayerId\": 14993101,\n \"TaggedPlayerIds\": [\n 14993101,\n 38245078\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-02-17T17:32:47.2548776Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 200247118,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"b7bac0003a5e47c5bbac1e9eeee02c43.jpg\",\n \"Description\": null,\n \"PlayerId\": 51562878,\n \"TaggedPlayerIds\": [\n 51562878\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-02-16T06:37:14.6563963Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 183831158,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"ee877926690249bdb82c2665e719ea1c.jpg\",\n \"Description\": null,\n \"PlayerId\": 39715217,\n \"TaggedPlayerIds\": [\n 39715217\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-01-29T02:26:25.2533101Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 138504262,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"ab212438d4b649328609d42b23eb8958.jpg\",\n \"Description\": null,\n \"PlayerId\": 34470009,\n \"TaggedPlayerIds\": [\n 34470009\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-11-25T00:01:03.3448678Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124272623,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"cda3c88b8c7d47ea94553961e9c809bd.jpg\",\n \"Description\": null,\n \"PlayerId\": 30008369,\n \"TaggedPlayerIds\": [\n 29141662\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T19:03:22.8608275Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124271090,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"58c5a556a3ca4bb39eb3ae1398c5dee1.jpg\",\n \"Description\": null,\n \"PlayerId\": 30008369,\n \"TaggedPlayerIds\": [\n 30008369\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T18:57:23.0867354Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124271011,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"6ec203acbb544109acd671b34658d880.jpg\",\n \"Description\": null,\n \"PlayerId\": 30008369,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T18:57:03.66261Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124270604,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"14d3f653780242bca58869eb2532f42e.jpg\",\n \"Description\": null,\n \"PlayerId\": 30008369,\n \"TaggedPlayerIds\": [\n 29141662,\n 30008369\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T18:55:26.4224862Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124270469,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"ec6d0484cf8d476e81e802c57036fc8e.jpg\",\n \"Description\": null,\n \"PlayerId\": 30008369,\n \"TaggedPlayerIds\": [\n 30008369\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T18:54:57.1390339Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 124269884,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"144e64151f46408fabdfd1f7dcb3b8a7.jpg\",\n \"Description\": null,\n \"PlayerId\": 30008369,\n \"TaggedPlayerIds\": [\n 30008369\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-15T18:52:44.779504Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121850489,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"1d8f20a339c84dc69958e6eeb82129fb.jpg\",\n \"Description\": null,\n \"PlayerId\": 29563053,\n \"TaggedPlayerIds\": [\n 29565301\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T21:23:53.9941529Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121850359,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"1ab458a23df744d3bdb9899801293893.jpg\",\n \"Description\": null,\n \"PlayerId\": 29563053,\n \"TaggedPlayerIds\": [\n 29565301\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T21:23:31.9684516Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121850303,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"facd8acad3c14821af97175e25bf754d.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053,\n 29565301\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T21:23:21.093678Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121849925,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"12d562c96ce44e79a0d0a6ebadfa56b7.jpg\",\n \"Description\": null,\n \"PlayerId\": 29563053,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T21:22:10.264495Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121849805,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"feab7c5289904dd9b16aa96765a44c0a.jpg\",\n \"Description\": null,\n \"PlayerId\": 29563053,\n \"TaggedPlayerIds\": [\n 29563053\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T21:21:50.5905171Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121849584,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"b6bb7c4a63c147678eae35bcf0456eff.jpg\",\n \"Description\": null,\n \"PlayerId\": 29563053,\n \"TaggedPlayerIds\": [\n 10441985\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T21:21:08.4447991Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121847841,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"fb040c3d83a24be3bcaea4ace1780d55.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053,\n 29565301\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T21:16:08.3801416Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 121847685,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"b80b7214e8654134ab276820edb11c33.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 29563053,\n 29565301\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-08T21:15:39.3682333Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120521024,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"df73de7c39414bbda67df2e7182289b9.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T18:33:13.14654Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120520904,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"195e80aba26e41358d2dddf04e8e23e1.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T18:32:55.130365Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120520770,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"825f32f8706f4529b714127ce03264a7.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T18:32:34.8571053Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120394331,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"c6c41b3af66b4dae9cfd6f33f8ee5aa9.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T11:40:51.5161421Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120380689,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"953a87f32fdd42d2b1d0c41e3e373d40.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-03T10:19:30.8625955Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120133770,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"06feb0ecbd8f44c8a586e4ffb83adda9.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-02T18:36:24.986238Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120128262,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"ce7b6e1f3e4d4a3aad963ad763bcf777.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-02T18:20:52.4844388Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120106805,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"563a75e24036415fa9f56187ee04a3ea.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-02T17:22:28.0321784Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 120106476,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"83560f729b7b4eb796d759680d22531d.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-10-02T17:21:33.4031756Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 110298509,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"9af32359571b400f833b82e8f05fd257.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 20577063\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-08-29T13:27:50.3259259Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 110297523,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"b86ff3babafa43d095deae6bd50c614a.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 11937484,\n 20577063\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-08-29T13:23:38.1922706Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 110297403,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"f7d043ce719645c2a0f2e23dace45b97.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 11937484,\n 20577063\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-08-29T13:23:04.4866099Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 110297377,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"813c1146a44645deb1708f53a7daaccd.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 11937484\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-08-29T13:22:55.5551548Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 110297293,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"c4dea9b39ab24ea3ae06656fb2aacba4.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 20577063\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-08-29T13:22:32.8811467Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 100565976,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"a8c9b2b67f164bc781c2ed38295b5925.jpg\",\n \"Description\": null,\n \"PlayerId\": 24466638,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-07-30T18:54:23.9690319Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 98395074,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"2457ab186dcb475db4ad0c55d6f74823.jpg\",\n \"Description\": null,\n \"PlayerId\": 24028256,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-07-24T00:28:52.3711909Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 85661148,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"47e39da1e89842698d418684c20f86fd.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-13T09:52:17.6662188Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 85661103,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"84feb05240e84516a27da6f56b633e83.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-13T09:51:55.7744767Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 84160243,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"b12954eba5aa4e48ab6253de9d93a81d.jpg\",\n \"Description\": null,\n \"PlayerId\": 20710793,\n \"TaggedPlayerIds\": [\n 20710793\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-07T21:37:26.8945444Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 84160172,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"69eca0b7458f4f44acadb0e800c98dab.jpg\",\n \"Description\": null,\n \"PlayerId\": 20710793,\n \"TaggedPlayerIds\": [\n 20710793\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-07T21:37:13.8320716Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83718351,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"1d94cb3040bb49088e2c79f4a91c22d2.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-06T12:13:46.5973178Z\",\n \"CheerCount\": 2,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83716772,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"fde5b36587024fc5a1418a873f9fea1e.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-06T12:03:36.6057588Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83710026,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"26bb8d70735e4f8abac47b2310a9146e.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 4205699,\n 13459116\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": 437230,\n \"CreatedAt\": \"2021-06-06T11:17:00.8466541Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83709270,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"4ef7675876094d838d83c7b0791b620f.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 13459116\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": 437230,\n \"CreatedAt\": \"2021-06-06T11:11:52.1191737Z\",\n \"CheerCount\": 5,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83708863,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"16aff54bb1974c02b484567b7e1bf826.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 4205699,\n 13459116\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": 437230,\n \"CreatedAt\": \"2021-06-06T11:08:42.0746515Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83699268,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"6e73d030cd3e4fc5a7566d4772fba528.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-06T10:00:15.5196359Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83536180,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"9c95f35b06f341b9a533ec1dbfeb81e4.jpg\",\n \"Description\": null,\n \"PlayerId\": 18141590,\n \"TaggedPlayerIds\": [\n 18141590\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-05T22:12:17.2842554Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83488538,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"c20ee42c197b44e1a538c2a771096900.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-05T19:40:41.938184Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83463752,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"6db430896db748c884322ccee1335232.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-05T18:21:36.318696Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83424685,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"3bf75abe39334f359c6a32aa26e3a615.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 20792055\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-05T16:02:49.9234966Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83417509,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"57563f1598d544c6905f878989fc3339.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [\n 18141590\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-05T15:32:07.2717727Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83203370,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"85427ae29d76473b95b8db0306481dc4.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-04T22:35:55.2194716Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83203304,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"17dd362a1e044a9caf24d0f4405ee806.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-04T22:35:43.8976026Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83203186,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"c41cf97be90545e5b6827e85850e3fef.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-04T22:35:21.4467393Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 83135697,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"7ba0861b98c643f4ae22343ec012ef2c.jpg\",\n \"Description\": null,\n \"PlayerId\": 20681019,\n \"TaggedPlayerIds\": [\n 20681019\n ],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-04T19:15:45.4334479Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 82522122,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"d0eb37e21b33487d891d1ce1d0ebfe61.jpg\",\n \"Description\": null,\n \"PlayerId\": 10441985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 23570830,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2021-06-02T20:56:36.2607247Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Trending Images",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v3/feed/global",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v3",
+ "feed",
+ "global"
+ ]
+ },
+ "description": "This returns an array of image objects that are on the front page of RecNet."
+ },
+ "response": [
+ {
+ "name": "Trending Images",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v3/feed/global",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v3",
+ "feed",
+ "global"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:02:41 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "4649"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"Id\": 278342056,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"8z58p9k7socbxdqez8pagjek8.jpg\",\n \"Description\": null,\n \"PlayerId\": 61902915,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 55597011,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T13:37:21.309Z\",\n \"CheerCount\": 134,\n \"CommentCount\": 13\n },\n {\n \"Id\": 278398497,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"5xw99p0lmlfn8op2mw4ilu8ep.jpg\",\n \"Description\": null,\n \"PlayerId\": 20695471,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 7237037,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T15:40:27.534Z\",\n \"CheerCount\": 113,\n \"CommentCount\": 23\n },\n {\n \"Id\": 278424385,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"61e7rc09gdyvg2jkcff3xe4se.jpg\",\n \"Description\": null,\n \"PlayerId\": 7522464,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 9405683,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T16:31:32.468Z\",\n \"CheerCount\": 77,\n \"CommentCount\": 4\n },\n {\n \"Id\": 278341458,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"7ln361wq6jkzfui4wart78hm3.jpg\",\n \"Description\": null,\n \"PlayerId\": 21237834,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T13:35:57.922Z\",\n \"CheerCount\": 58,\n \"CommentCount\": 10\n },\n {\n \"Id\": 278330114,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"69kw848s8blkyaqqmv48nshxa.jpg\",\n \"Description\": null,\n \"PlayerId\": 45038419,\n \"TaggedPlayerIds\": [\n 45038419\n ],\n \"RoomId\": 44004488,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T13:06:20.188Z\",\n \"CheerCount\": 46,\n \"CommentCount\": 23\n },\n {\n \"Id\": 278308304,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"bfspy8brc1h5or7ru2l50ssb1.jpg\",\n \"Description\": null,\n \"PlayerId\": 32907624,\n \"TaggedPlayerIds\": [\n 32907624\n ],\n \"RoomId\": 26714409,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T12:01:48.294Z\",\n \"CheerCount\": 40,\n \"CommentCount\": 33\n },\n {\n \"Id\": 278417047,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"143zwyv663fwviocxt6dizajf.jpg\",\n \"Description\": null,\n \"PlayerId\": 39218532,\n \"TaggedPlayerIds\": [\n 39218532\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T16:16:50.178Z\",\n \"CheerCount\": 35,\n \"CommentCount\": 15\n },\n {\n \"Id\": 278342303,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"53xo717ydjz3f63u0fcsql3j6.jpg\",\n \"Description\": null,\n \"PlayerId\": 13058570,\n \"TaggedPlayerIds\": [\n 12997643\n ],\n \"RoomId\": 7063823,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T13:37:58.842Z\",\n \"CheerCount\": 34,\n \"CommentCount\": 9\n },\n {\n \"Id\": 278354903,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"5bekugryzjvk7odlvy0dww6ep.jpg\",\n \"Description\": null,\n \"PlayerId\": 30818418,\n \"TaggedPlayerIds\": [\n 30818418\n ],\n \"RoomId\": 19899306,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T14:08:03.719Z\",\n \"CheerCount\": 30,\n \"CommentCount\": 7\n },\n {\n \"Id\": 278489088,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"bh0aa5i5ae00tlthz2y2n7l7z.jpg\",\n \"Description\": null,\n \"PlayerId\": 19231973,\n \"TaggedPlayerIds\": [\n 19231973,\n 62833178\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T18:29:17.38Z\",\n \"CheerCount\": 20,\n \"CommentCount\": 8\n },\n {\n \"Id\": 278413562,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"4pj0wloznrmjlsz1yz85c2xqk.jpg\",\n \"Description\": null,\n \"PlayerId\": 8983985,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 11115962,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T16:10:26.111Z\",\n \"CheerCount\": 23,\n \"CommentCount\": 6\n },\n {\n \"Id\": 278495076,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"5i78sra0ak46o4dzk7y63bb1h.jpg\",\n \"Description\": null,\n \"PlayerId\": 48072846,\n \"TaggedPlayerIds\": [\n 72202327\n ],\n \"RoomId\": 14005455,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T18:39:54.352Z\",\n \"CheerCount\": 16,\n \"CommentCount\": 5\n },\n {\n \"Id\": 278479931,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"32akp0aq92y3ohijc3p5egvma.jpg\",\n \"Description\": null,\n \"PlayerId\": 38861695,\n \"TaggedPlayerIds\": [\n 38861695\n ],\n \"RoomId\": 58231239,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T18:12:51.195Z\",\n \"CheerCount\": 15,\n \"CommentCount\": 4\n },\n {\n \"Id\": 278566856,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"3hngnqcl75isjh7ff1nexk4dg.jpg\",\n \"Description\": null,\n \"PlayerId\": 17583322,\n \"TaggedPlayerIds\": [\n 17583322\n ],\n \"RoomId\": 36566135,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T20:41:52.735Z\",\n \"CheerCount\": 7,\n \"CommentCount\": 2\n },\n {\n \"Id\": 278528130,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"2cyrvgumle311p8t8pykd5v5m.jpg\",\n \"Description\": null,\n \"PlayerId\": 5445142,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 32514426,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T19:37:03.504Z\",\n \"CheerCount\": 9,\n \"CommentCount\": 1\n },\n {\n \"Id\": 278348107,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"9qli0ho7hnpdnccgjbfnlqei2.jpg\",\n \"Description\": null,\n \"PlayerId\": 70345193,\n \"TaggedPlayerIds\": [\n 71215491\n ],\n \"RoomId\": 170130,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T13:52:19.744Z\",\n \"CheerCount\": 14,\n \"CommentCount\": 5\n },\n {\n \"Id\": 278579009,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"76j4w4ipfm65c1xec97od7vv9.jpg\",\n \"Description\": null,\n \"PlayerId\": 5858700,\n \"TaggedPlayerIds\": [\n 5858700,\n 10556432,\n 38688025\n ],\n \"RoomId\": 40512045,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T21:02:20.417Z\",\n \"CheerCount\": 5,\n \"CommentCount\": 3\n },\n {\n \"Id\": 278525291,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"4tfn7fi0rhx82vb3p2d92dd06.jpg\",\n \"Description\": null,\n \"PlayerId\": 22449517,\n \"TaggedPlayerIds\": [\n 26895972\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T19:32:11.901Z\",\n \"CheerCount\": 5,\n \"CommentCount\": 6\n },\n {\n \"Id\": 278499924,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"48pvl3akwzm91ojue99cdwbri.jpg\",\n \"Description\": null,\n \"PlayerId\": 16814675,\n \"TaggedPlayerIds\": [\n 71655517\n ],\n \"RoomId\": 19865962,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T18:48:42.465Z\",\n \"CheerCount\": 8,\n \"CommentCount\": 2\n },\n {\n \"Id\": 278480005,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"cl3vzg7y395o7944uxsjfhfn5.jpg\",\n \"Description\": null,\n \"PlayerId\": 13285396,\n \"TaggedPlayerIds\": [\n 13285396,\n 21832736\n ],\n \"RoomId\": 2423678,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T18:12:59.19Z\",\n \"CheerCount\": 8,\n \"CommentCount\": 2\n },\n {\n \"Id\": 278579109,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"01q6oxzjwtm3t5z8k8jcbuevw.jpg\",\n \"Description\": null,\n \"PlayerId\": 40850291,\n \"TaggedPlayerIds\": [\n 40850291\n ],\n \"RoomId\": 40708604,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T21:02:31.293Z\",\n \"CheerCount\": 4,\n \"CommentCount\": 2\n },\n {\n \"Id\": 278564776,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"1hiy07awbow2cw3zadhzf1m5u.jpg\",\n \"Description\": null,\n \"PlayerId\": 19822650,\n \"TaggedPlayerIds\": [\n 19822650\n ],\n \"RoomId\": 49768024,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T20:38:13.67Z\",\n \"CheerCount\": 5,\n \"CommentCount\": 1\n },\n {\n \"Id\": 278570587,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"5pkxoh7w7wjk3ou9i0702j245.jpg\",\n \"Description\": null,\n \"PlayerId\": 66217224,\n \"TaggedPlayerIds\": [\n 45999099\n ],\n \"RoomId\": 9393631,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T20:48:01.244Z\",\n \"CheerCount\": 4,\n \"CommentCount\": 1\n },\n {\n \"Id\": 278527145,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"8sra1rtyvk35nnq35u3th1wge.jpg\",\n \"Description\": null,\n \"PlayerId\": 49745836,\n \"TaggedPlayerIds\": [\n 3250424,\n 38572050,\n 61428081\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T19:35:20.075Z\",\n \"CheerCount\": 5,\n \"CommentCount\": 2\n },\n {\n \"Id\": 278526890,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"1a9z5y4slb5an20brrblmjqz4.jpg\",\n \"Description\": null,\n \"PlayerId\": 71100798,\n \"TaggedPlayerIds\": [\n 5668256\n ],\n \"RoomId\": 7094822,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T19:34:55.795Z\",\n \"CheerCount\": 5,\n \"CommentCount\": 2\n },\n {\n \"Id\": 278623768,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"1hd391ylfdjlmwh8e6i1zknu4.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096,\n 40461012\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:21:24.316Z\",\n \"CheerCount\": 2,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278633814,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"46q8tdpk2g4kso8b6klsc7a6l.jpg\",\n \"Description\": null,\n \"PlayerId\": 23478038,\n \"TaggedPlayerIds\": [\n 23478038,\n 72396954\n ],\n \"RoomId\": 7813156,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:39:42.027Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 1\n },\n {\n \"Id\": 278568987,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"bmwf7im127xidghiri7as8zmo.jpg\",\n \"Description\": null,\n \"PlayerId\": 3151015,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 54073847,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T20:45:27.651Z\",\n \"CheerCount\": 4,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278641482,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"1dkw03t0amiobypuh2qgwnmvf.jpg\",\n \"Description\": null,\n \"PlayerId\": 48648781,\n \"TaggedPlayerIds\": [\n 48648781\n ],\n \"RoomId\": 67034024,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:53:38.327Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278579852,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"1aoqh2nxwauli34gvcv4buhgj.jpg\",\n \"Description\": null,\n \"PlayerId\": 20056589,\n \"TaggedPlayerIds\": [\n 20056589,\n 57079291\n ],\n \"RoomId\": 54264743,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T21:03:47.126Z\",\n \"CheerCount\": 3,\n \"CommentCount\": 1\n },\n {\n \"Id\": 278640026,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"294h7oafmvt9zgob8byptxtnn.jpg\",\n \"Description\": null,\n \"PlayerId\": 46018127,\n \"TaggedPlayerIds\": [\n 46018127\n ],\n \"RoomId\": 66987234,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:51:03.189Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278639652,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"cege9b2andolpxwacbp3jbz24.jpg\",\n \"Description\": null,\n \"PlayerId\": 54264914,\n \"TaggedPlayerIds\": [\n 54264914\n ],\n \"RoomId\": 52056369,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:50:22.418Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278636596,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"22aomvh3li15mxmrxoovx9tz5.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:44:47.985Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278636482,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"dcnf2f3ur1s3n9u11yx5eckpe.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:44:35.097Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278636185,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"8rgwbhb6ybt86vvcw3vs677yz.jpg\",\n \"Description\": null,\n \"PlayerId\": 16669090,\n \"TaggedPlayerIds\": [\n 16669090\n ],\n \"RoomId\": 39160693,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:44:03.59Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278636091,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"e2ljgwumfgl2bvmkclgp6mibo.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:43:52.576Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278635785,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"as5u73r7e89uwase39f8wurmt.jpg\",\n \"Description\": null,\n \"PlayerId\": 20304256,\n \"TaggedPlayerIds\": [],\n \"RoomId\": 131664,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:43:19.315Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278634852,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"a9k2su7shc4wqytoqbd6hli9a.jpg\",\n \"Description\": null,\n \"PlayerId\": 51877296,\n \"TaggedPlayerIds\": [\n 51877296\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:41:36.4Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278634842,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"3w97hlmzlnbim2ek3z9pylo0a.jpg\",\n \"Description\": null,\n \"PlayerId\": 42280657,\n \"TaggedPlayerIds\": [\n 32713334,\n 51877296,\n 72496203\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:41:35.837Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278634692,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"7yd4sk9dws0eu4zikxcmqloe7.jpg\",\n \"Description\": null,\n \"PlayerId\": 42280657,\n \"TaggedPlayerIds\": [\n 22051726,\n 32713334,\n 51877296,\n 69313864,\n 71842692,\n 72368572\n ],\n \"RoomId\": 170126,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:41:20.374Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278633943,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"2xutimthv9hu8em4yl9s185uf.jpg\",\n \"Description\": null,\n \"PlayerId\": 16669090,\n \"TaggedPlayerIds\": [\n 16669090,\n 38699963\n ],\n \"RoomId\": 39160693,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:39:56.936Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278633543,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"c1c3fpttmgol3d8wg8e7c7c81.jpg\",\n \"Description\": null,\n \"PlayerId\": 32915722,\n \"TaggedPlayerIds\": [\n 32915722,\n 37445775\n ],\n \"RoomId\": 67090860,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:39:13.56Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278632954,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"7fnxtychanm2csc9543x0umvz.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:38:09.276Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278632124,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"3ri0ft3rzwqv5fpya4sric1hi.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:36:32.505Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278570021,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"8xwt1l36eml9sy8kcgzaa62r1.jpg\",\n \"Description\": null,\n \"PlayerId\": 3151015,\n \"TaggedPlayerIds\": [\n 65958304\n ],\n \"RoomId\": 54073847,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T20:47:09.961Z\",\n \"CheerCount\": 3,\n \"CommentCount\": 1\n },\n {\n \"Id\": 278630949,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"ctdqwliavpfb360vszqibh2xn.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:34:27.59Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278630243,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"apdt0sbsjq79jyk8ozre4i0yr.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:33:09.095Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278630075,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"eiul0nhcbpbx2z50xywf6tdnu.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:32:50.869Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278629970,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"221xhx1te95sx3wcdvpegtrqw.jpg\",\n \"Description\": null,\n \"PlayerId\": 7381849,\n \"TaggedPlayerIds\": [\n 67528012\n ],\n \"RoomId\": 66831973,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:32:39.046Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278629904,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"6qcrym2l5311snnf03qp9dger.jpg\",\n \"Description\": null,\n \"PlayerId\": 8487549,\n \"TaggedPlayerIds\": [\n 50369480\n ],\n \"RoomId\": 36566135,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:32:30.18Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278530443,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"d5hcwrmle6uj5kzaw0wonkolm.jpg\",\n \"Description\": null,\n \"PlayerId\": 12905461,\n \"TaggedPlayerIds\": [\n 12905461,\n 53371712\n ],\n \"RoomId\": 51337153,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T19:40:32.192Z\",\n \"CheerCount\": 5,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278629776,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"3kqtk24j3a87c16m9evwhz5tu.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:32:17.257Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278629173,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"9gbfg7a59g6tzs9omwg0f5mfh.jpg\",\n \"Description\": null,\n \"PlayerId\": 28595409,\n \"TaggedPlayerIds\": [\n 7381849,\n 28595409\n ],\n \"RoomId\": 66831973,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:31:11.847Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278628984,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"dchqeydamxacegdc4xwkk8n8f.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:30:49.141Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278628782,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"1ugiudsb2hj5mu0hj14posl0u.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:30:27.416Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278627430,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"dyxdpl6skrbp1y2vc117ofogb.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:28:00.309Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278627183,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"1paelt67vm9qatacfbehzmri0.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:27:35.687Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278626512,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"a2zimk0h10k0bye8k7rl94eua.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:26:17.957Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278626282,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"clent9varqg2paw8gotkahjad.jpg\",\n \"Description\": null,\n \"PlayerId\": 3971997,\n \"TaggedPlayerIds\": [\n 3971997,\n 17681561\n ],\n \"RoomId\": 4589768,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:25:52.16Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278626052,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"76ca4l85s9mczoc8lf5at4j0w.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:25:31.426Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278625673,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"7r4xh20pcvmz68gmdvvo63tq8.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:24:49.639Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278624923,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"b7ktkdb9rr6kju5i5my27oh4y.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40457096\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:23:28.857Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278624819,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"e2b6hhsow5mndxtdjd8csbg79.jpg\",\n \"Description\": null,\n \"PlayerId\": 40461012,\n \"TaggedPlayerIds\": [\n 40461012\n ],\n \"RoomId\": 63553728,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:23:18.453Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n },\n {\n \"Id\": 278624738,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"bmheccqv0itwe6rh09pjj2qz4.jpg\",\n \"Description\": null,\n \"PlayerId\": 29369714,\n \"TaggedPlayerIds\": [\n 7466819,\n 31362879,\n 48598710\n ],\n \"RoomId\": 15781097,\n \"PlayerEventId\": null,\n \"CreatedAt\": \"2022-05-31T22:23:10.729Z\",\n \"CheerCount\": 1,\n \"CommentCount\": 0\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Bulk Image Information",
+ "request": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "type": "text",
+ "key": "Ids[]",
+ "value": ""
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/images/v3/bulk",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v3",
+ "bulk"
+ ]
+ },
+ "description": "This returns an array of image objects whos IDs match the IDs that were passed in to the form body. The array is in reverse order of the way the IDs appear in the body."
+ },
+ "response": [
+ {
+ "name": "Bulk Image Information",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "type": "text",
+ "key": "Ids[]",
+ "value": "45084641"
+ },
+ {
+ "type": "text",
+ "key": "Ids[]",
+ "value": "45083996"
+ },
+ {
+ "type": "text",
+ "key": "Ids[]",
+ "value": "44246409"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/images/v3/bulk",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v3",
+ "bulk"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:03:00 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "525"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"Id\": 44246409,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"e834204fc39f4513b16eb9391f66b492.jpg\",\n \"Description\": null,\n \"PlayerId\": 5614008,\n \"TaggedPlayerIds\": [\n 1827567\n ],\n \"RoomId\": 6731585,\n \"PlayerEventId\": 184455,\n \"CreatedAt\": \"2020-12-10T03:30:01.1238827Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 45083996,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"0887a573cefa45dba205ddf3589da300.jpg\",\n \"Description\": null,\n \"PlayerId\": 1827567,\n \"TaggedPlayerIds\": [\n 1827567\n ],\n \"RoomId\": 170134,\n \"PlayerEventId\": 189069,\n \"CreatedAt\": \"2020-12-15T04:47:24.8209761Z\",\n \"CheerCount\": 0,\n \"CommentCount\": 0\n },\n {\n \"Id\": 45084641,\n \"Type\": 1,\n \"Accessibility\": 1,\n \"AccessibilityLocked\": false,\n \"ImageName\": \"fe721c0f7f1c4deaaa2d79057cc62af1.jpg\",\n \"Description\": null,\n \"PlayerId\": 1827567,\n \"TaggedPlayerIds\": [\n 1827567\n ],\n \"RoomId\": 170134,\n \"PlayerEventId\": 189069,\n \"CreatedAt\": \"2020-12-15T04:56:54.4519046Z\",\n \"CheerCount\": 2,\n \"CommentCount\": 3\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Cheer Image",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "SavedImageId",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "Cheer",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://api.rec.net//api/images/v1/cheer",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "",
+ "api",
+ "images",
+ "v1",
+ "cheer"
+ ]
+ },
+ "description": "Cheers/Uncheers an image based on given values\n\n| **Value** | **Type** | **Description** |\n| --- | --- | --- |\n| SavedImageId | int | Image being cheered/uncheered | Image being cheered/uncheered |\n| Cheer | boolean | True/False | True/False |"
+ },
+ "response": []
+ },
+ {
+ "name": "Report Image",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "POST",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v1/:imageid/report",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v1",
+ ":imageid",
+ "report"
+ ],
+ "variable": [
+ {
+ "key": "imageid",
+ "value": ""
+ }
+ ]
+ },
+ "description": "Reports an image with `imageId` to be reviewed by the RecRoom Support Team."
+ },
+ "response": []
+ },
+ {
+ "name": "Untag from Image",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "PUT",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v1/:imageid/player/:playerid/untag",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v1",
+ ":imageid",
+ "player",
+ ":playerid",
+ "untag"
+ ],
+ "variable": [
+ {
+ "key": "imageid",
+ "value": ""
+ },
+ {
+ "key": "playerid",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Untag from Image",
+ "originalRequest": {
+ "method": "PUT",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/images/v1/:imageid/player/:playerid/untag",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "images",
+ "v1",
+ ":imageid",
+ "player",
+ ":playerid",
+ "untag"
+ ],
+ "variable": [
+ {
+ "key": "imageid",
+ "value": "280558799"
+ },
+ {
+ "key": "playerid",
+ "value": "10441985"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "plain",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Sun, 05 Jun 2022 00:30:52 GMT"
+ },
+ {
+ "key": "Content-Length",
+ "value": "0"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": null
+ }
+ ]
+ }
+ ],
+ "description": "This section contains all the endpoints that can be used to retrieve image information, and image information that is associated with things like rooms and events. More information on images and image information is given below.\n\n## Image Properties\n\n| Property | Type | Description |\n| --- | --- | --- |\n| Image ID | String | Each image has a unique ID associated with it. This is the same ID used when obtaining a shareable link to an image ( i.e `https://rec.net/image/:imageId` ). Image IDs are sequential which means that every time a new image is shared to RecNet, it's ID will be +1 of the previous image shared to RecNet. |\n| Image Name | String | This is the file name of an image, and it can be used to get a link to the image itself from this endpoint, `https://img.rec.net/:imageName`. |\n| Accessiblity | Int | This property defines who is able to see the image. If this is equal to 1, then it's accessibility is set to public, and everyone can access it. If this is equal to 0, then it's accessibility is set to private, and only the image author will be able to access it. |\n| Player ID | Int | This is the internal account ID of the player who took the image. For more information regarding account information look at the [Accounts](https://documenter.getpostman.com/view/13848200/TVt184DN#72845adf-0224-43a6-abda-7bff6fde3d03) section. |\n| Tagged Player IDs | Int Array | This is an array of all the internal account IDs of players that were seen in the image(s). If no players were seen in the image, then this property will be null. For more information regarding account information look at the [Accounts](https://documenter.getpostman.com/view/13848200/TVt184DN#72845adf-0224-43a6-abda-7bff6fde3d03) section. |\n| Room ID | Int | This is the internal room ID of the room that the image was taken in. For more information regarding room information look at the [Rooms](https://documenter.getpostman.com/view/13848200/TVt184DN#531b844c-5b15-4185-9bf7-d191a3cd3247) section. |\n| Player Event ID | Int | This is the internal event ID of the event that the image was taken in. If an image wasn't taken during an event, then this property will be null. For more information regarding event information look at the [Events](https://documenter.getpostman.com/view/13848200/TVt184DN#009eeea1-5647-4185-b65b-cde704810a6e) section. |\n| Created At | String | This is the time that the image was shared to RecNet. |\n| Cheer Count | Int | This is the number of cheers that an image has received. |\n| Comment Count | Int | This is the number of comments that an image has received. |",
+ "auth": {
+ "type": "noauth"
+ },
+ "event": [
+ {
+ "listen": "prerequest",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ },
+ {
+ "listen": "test",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "name": "Rooms",
+ "item": [
+ {
+ "name": "Room Information From ID",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomId",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomId"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes a room ID as a path parameter, and returns an object that contains detailed information about a room. An optional query parameter called `inc`Include Parameter\n\nThe `include` parameter takes an integer as an input, and returns different information based on it's value. Each value and it's corresponding information is listed below.\n\n| Value | Description |\n| --- | --- |\n| 2 | This returns an object array of subroom information that is connected to the room |\n| 4 | This returns an object array of players who have special permissions. The role value is representative of what perms a player has. 255 is the owner, 30 is a co-owner, 20 is a moderator, and 10 is host. |\n| 8 | This returns an object array of information on the room's tags. Each tag has a type, and any thing with a type of 0 are tags that were set by a player. |\n| 32 | This returns the promo content that was set on RecNet. |\n| 64 | This returns an object that describes how a room is ranked in relation to the hot page. |\n| 256 | This returns an object that has information on a rooms custom loading screen. |\n\nThese values can be added to get more information at once."
+ },
+ "response": [
+ {
+ "name": "Room Information From ID",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomId",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomId"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": "23570830"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:06:50 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "TiPMix=69.70403115554161; path=/; HttpOnly; Domain=rooms.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "x-ms-routing-name=self; path=/; HttpOnly; Domain=rooms.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"RoomId\": 23570830,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 1,\n \"MaxPlayers\": 40,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"Escape.Rooms\",\n \"Description\": \"Discover awesome experiences and escape the uncharted lands!\",\n \"ImageName\": \"d4e5d87f006c44ff8866149be19739ea.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 1,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2021-05-30T10:21:18.1407127Z\",\n \"Stats\": {\n \"CheerCount\": 143,\n \"FavoriteCount\": 116,\n \"VisitorCount\": 2261,\n \"VisitCount\": 2717\n }\n}"
+ }
+ ]
+ },
+ {
+ "name": "Room Information From Room Name",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms?name={Room_Name}",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms"
+ ],
+ "query": [
+ {
+ "key": "name",
+ "value": "{Room_Name}"
+ }
+ ]
+ },
+ "description": "This takes a room name as a query parameter, and returns an object that contains detailed information about a room."
+ },
+ "response": [
+ {
+ "name": "Room Information From Room Name",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms?name=Escape.Rooms",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms"
+ ],
+ "query": [
+ {
+ "key": "name",
+ "value": "Escape.Rooms"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:08:05 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"RoomId\": 23570830,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 1,\n \"MaxPlayers\": 40,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"Escape.Rooms\",\n \"Description\": \"Discover awesome experiences and escape the uncharted lands!\",\n \"ImageName\": \"d4e5d87f006c44ff8866149be19739ea.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 1,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2021-05-30T10:21:18.1407127Z\",\n \"Stats\": {\n \"CheerCount\": 143,\n \"FavoriteCount\": 116,\n \"VisitorCount\": 2261,\n \"VisitCount\": 2717\n }\n}"
+ }
+ ]
+ },
+ {
+ "name": "Rooms Created by a Player",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/createdby/:playerId",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ "createdby",
+ ":playerId"
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": "10441985"
+ }
+ ]
+ },
+ "description": "This takes an account ID as a path parameter, and returns an array of all the room objects that have the account ID as it's `CreatorAccountId` property."
+ },
+ "response": [
+ {
+ "name": "Rooms Created by a Player",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/createdby/:playerId",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ "createdby",
+ ":playerId"
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": "10441985"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:09:17 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"RoomId\": 23986836,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 0,\n \"MaxPlayers\": 20,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"EscapeTheDungeon.\",\n \"Description\": \"This room is a blank canvas. Make it into whatever you like!\",\n \"ImageName\": \"61b2179646e1468f832c3f5585fba985.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 1,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2021-06-06T09:50:04.7817615Z\",\n \"Stats\": {\n \"CheerCount\": 0,\n \"FavoriteCount\": 3,\n \"VisitorCount\": 93,\n \"VisitCount\": 106\n }\n },\n {\n \"RoomId\": 23570830,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 1,\n \"MaxPlayers\": 40,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"Escape.Rooms\",\n \"Description\": \"Discover awesome experiences and escape the uncharted lands!\",\n \"ImageName\": \"d4e5d87f006c44ff8866149be19739ea.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 1,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2021-05-30T10:21:18.1407127Z\",\n \"Stats\": {\n \"CheerCount\": 143,\n \"FavoriteCount\": 116,\n \"VisitorCount\": 2261,\n \"VisitCount\": 2717\n }\n },\n {\n \"RoomId\": 17682826,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 0,\n \"MaxPlayers\": 40,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"NightclubIcey\",\n \"Description\": \"Hangout and listen to some music provided by the DJ.\",\n \"ImageName\": \"f61f9802586f4fab9ecf4d90abe7d829.jpg\",\n \"WarningMask\": 36,\n \"CustomWarning\": \"Loud Music\",\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 1,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2021-02-14T16:42:56.8942041Z\",\n \"Stats\": {\n \"CheerCount\": 26,\n \"FavoriteCount\": 27,\n \"VisitorCount\": 259,\n \"VisitCount\": 442\n }\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Rooms Owned by a Player",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/ownedby/:playerId",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ "ownedby",
+ ":playerId"
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes an account ID as a path parameter, and returns an array of all the room objects that represent rooms owned by a player."
+ },
+ "response": [
+ {
+ "name": "Rooms Owned by a Player",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/ownedby/:playerId",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ "ownedby",
+ ":playerId"
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": "10441985"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:09:55 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"RoomId\": 23986836,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 0,\n \"MaxPlayers\": 20,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"EscapeTheDungeon.\",\n \"Description\": \"This room is a blank canvas. Make it into whatever you like!\",\n \"ImageName\": \"61b2179646e1468f832c3f5585fba985.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 1,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2021-06-06T09:50:04.7817615Z\",\n \"Stats\": {\n \"CheerCount\": 0,\n \"FavoriteCount\": 3,\n \"VisitorCount\": 93,\n \"VisitCount\": 106\n }\n },\n {\n \"RoomId\": 23570830,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 1,\n \"MaxPlayers\": 40,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"Escape.Rooms\",\n \"Description\": \"Discover awesome experiences and escape the uncharted lands!\",\n \"ImageName\": \"d4e5d87f006c44ff8866149be19739ea.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 1,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2021-05-30T10:21:18.1407127Z\",\n \"Stats\": {\n \"CheerCount\": 143,\n \"FavoriteCount\": 116,\n \"VisitorCount\": 2261,\n \"VisitCount\": 2717\n }\n },\n {\n \"RoomId\": 17682826,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 0,\n \"MaxPlayers\": 40,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"NightclubIcey\",\n \"Description\": \"Hangout and listen to some music provided by the DJ.\",\n \"ImageName\": \"f61f9802586f4fab9ecf4d90abe7d829.jpg\",\n \"WarningMask\": 36,\n \"CustomWarning\": \"Loud Music\",\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 1,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2021-02-14T16:42:56.8942041Z\",\n \"Stats\": {\n \"CheerCount\": 26,\n \"FavoriteCount\": 27,\n \"VisitorCount\": 259,\n \"VisitCount\": 442\n }\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Room Search",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/search?query={Search_Query}",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ "search"
+ ],
+ "query": [
+ {
+ "key": "query",
+ "value": "{Search_Query}"
+ }
+ ]
+ },
+ "description": "This takes a search query as a query parameter, and returns an array of all the room objects that are most relevant to the search query."
+ },
+ "response": [
+ {
+ "name": "Room Search",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/search?query=Escape.Rooms",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ "search"
+ ],
+ "query": [
+ {
+ "key": "query",
+ "value": "Escape.Rooms"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:10:52 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Results\": [\n {\n \"RoomId\": 23570830,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 1,\n \"MaxPlayers\": 40,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"Escape.Rooms\",\n \"Description\": \"Discover awesome experiences and escape the uncharted lands!\",\n \"ImageName\": \"d4e5d87f006c44ff8866149be19739ea.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 1,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2021-05-30T10:21:18.1407127Z\",\n \"Stats\": {\n \"CheerCount\": 143,\n \"FavoriteCount\": 116,\n \"VisitorCount\": 2261,\n \"VisitCount\": 2717\n }\n }\n ],\n \"TotalResults\": 1\n}"
+ }
+ ]
+ },
+ {
+ "name": "Room Showcase",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/showcase/:playerid",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "showcase",
+ ":playerid"
+ ],
+ "variable": [
+ {
+ "key": "playerid",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This returns an array of room Ids that a player has chosen to showcase."
+ },
+ "response": [
+ {
+ "name": "Room Showcase",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/showcase/:playerid",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "showcase",
+ ":playerid"
+ ],
+ "variable": [
+ {
+ "key": "playerid",
+ "value": "10441985"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:11:48 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n 23570830,\n 17682826\n]"
+ }
+ ]
+ },
+ {
+ "name": "Hot Page Rooms",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/roomserver/rooms/hot",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "roomserver",
+ "rooms",
+ "hot"
+ ]
+ },
+ "description": "This returns an array all room objects from greatest to least hot score."
+ },
+ "response": [
+ {
+ "name": "Hot Page Rooms",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/roomserver/rooms/hot",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "roomserver",
+ "rooms",
+ "hot"
+ ]
+ }
+ },
+ "status": "Not Found",
+ "code": 404,
+ "_postman_previewlanguage": "html",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:12:13 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "text/html"
+ },
+ {
+ "key": "Content-Length",
+ "value": "103"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable."
+ }
+ ]
+ },
+ {
+ "name": "Featured Rooms",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/featuredrooms/current",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "featuredrooms",
+ "current"
+ ]
+ },
+ "description": "Returns basic information on the currently featured rooms."
+ },
+ "response": [
+ {
+ "name": "Featured Rooms",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/featuredrooms/current",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "featuredrooms",
+ "current"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:12:37 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"FeaturedRoomGroupId\": 195,\n \"Name\": \"Featured Rooms\",\n \"StartAt\": \"2022-05-31T07:00:00Z\",\n \"EndAt\": \"2022-06-07T07:00:00Z\",\n \"Rooms\": [\n {\n \"RoomId\": 51437513,\n \"RoomName\": \"Phasmophobia.v\",\n \"ImageName\": \"4ky7s56edlfka6vqk4e07afh5.jpg\"\n },\n {\n \"RoomId\": 36566135,\n \"RoomName\": \"RainyCafe\",\n \"ImageName\": \"eczdx2rgbvy8bppw8deoard7b.jpg\"\n },\n {\n \"RoomId\": 19985412,\n \"RoomName\": \"BasementPVP3\",\n \"ImageName\": \"dbdimsaaxbu5y1oum2sr8hywq.jpg\"\n },\n {\n \"RoomId\": 7237037,\n \"RoomName\": \"Albequerque_Desert\",\n \"ImageName\": \"8o82vk1j1s8jq8hzgux9gr4xm.jpg\"\n },\n {\n \"RoomId\": 41830652,\n \"RoomName\": \"ThreeLittlePigs\",\n \"ImageName\": \"a0nseq69wzs5g6d432u50fy6v.jpg\"\n },\n {\n \"RoomId\": 48529151,\n \"RoomName\": \"Dock-Hangout\",\n \"ImageName\": \"awerhj2qyzliu3dzua6mhv6w2.jpg\"\n },\n {\n \"RoomId\": 42518467,\n \"RoomName\": \"LegendOfNian-PVP\",\n \"ImageName\": \"8u7pdfgra90jb15saltu7a5vg.jpg\"\n },\n {\n \"RoomId\": 51807980,\n \"RoomName\": \"perlshaw\",\n \"ImageName\": \"ekh73zypu5llz5euvpfhzjzso.jpg\"\n },\n {\n \"RoomId\": 21567808,\n \"RoomName\": \"Mausoleum_Madness\",\n \"ImageName\": \"7t5ja4yhnzfu5wpuenbiqw2gj.jpg\"\n },\n {\n \"RoomId\": 41983095,\n \"RoomName\": \"NantgarthTown\",\n \"ImageName\": \"2i79tnaftwmgxo5t6km2hy7k4.jpg\"\n }\n ]\n}"
+ }
+ ]
+ },
+ {
+ "name": "Bulk Room Information",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/bulk?id=&include=",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ "bulk"
+ ],
+ "query": [
+ {
+ "key": "id",
+ "value": ""
+ },
+ {
+ "key": "include",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This returns an array of room objects whos IDs match the IDs that were passed in to the form body. The array is in reverse order of the way the IDs appear in the body."
+ },
+ "response": [
+ {
+ "name": "Bulk Room Information",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/bulk?id=23570830&id=170126&include=8",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ "bulk"
+ ],
+ "query": [
+ {
+ "key": "id",
+ "value": "23570830"
+ },
+ {
+ "key": "id",
+ "value": "170126"
+ },
+ {
+ "key": "include",
+ "value": "8"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:13:40 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"RoomId\": 170126,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 0,\n \"MaxPlayers\": 12,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"RecCenter\",\n \"Description\": \"A social hub to meet and mingle with friends new and old.\",\n \"ImageName\": \"22eefa3219f046fd9e2090814650ede3\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": true,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2018-08-28T15:44:47.3149535Z\",\n \"Stats\": {\n \"CheerCount\": 404774,\n \"FavoriteCount\": 259399,\n \"VisitorCount\": 52035066,\n \"VisitCount\": 478635865\n }\n },\n {\n \"RoomId\": 23570830,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 1,\n \"MaxPlayers\": 40,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"Escape.Rooms\",\n \"Description\": \"Discover awesome experiences and escape the uncharted lands!\",\n \"ImageName\": \"d4e5d87f006c44ff8866149be19739ea.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 1,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2021-05-30T10:21:18.1407127Z\",\n \"Stats\": {\n \"CheerCount\": 143,\n \"FavoriteCount\": 116,\n \"VisitorCount\": 2261,\n \"VisitCount\": 2717\n }\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Room Role",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomid/roles/myrole",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomid",
+ "roles",
+ "myrole"
+ ],
+ "variable": [
+ {
+ "key": "roomid",
+ "value": ""
+ }
+ ]
+ },
+ "description": "Gets bearer's role in room with roomId.\n\n| **Value** | **Role** |\n| --- | --- |\n| 255 | Owner |\n| 30 | Co-owner |\n| 20 | Moderator |\n| 10 | Member |"
+ },
+ "response": [
+ {
+ "name": "Room Role",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomid/roles/myrole",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomid",
+ "roles",
+ "myrole"
+ ],
+ "variable": [
+ {
+ "key": "roomid",
+ "value": "23570830"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:26:24 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"AccountId\": 10441985,\n \"Role\": 255,\n \"LastChangedByAccountId\": null,\n \"InvitedRole\": 0\n}"
+ }
+ ]
+ },
+ {
+ "name": "Room Interactions",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomid/interactionby/me",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomid",
+ "interactionby",
+ "me"
+ ],
+ "variable": [
+ {
+ "key": "roomid",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Room Interactions",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomid/interactionby/me",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomid",
+ "interactionby",
+ "me"
+ ],
+ "variable": [
+ {
+ "key": "roomid",
+ "value": "23570830"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:28:30 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Cheered\": true,\n \"Favorited\": true,\n \"LastVisitedAt\": \"2022-05-31T20:50:45.3604344Z\"\n}"
+ }
+ ]
+ },
+ {
+ "name": "Get Room Backups",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomId/subrooms/:subroomId/datahistory",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomId",
+ "subrooms",
+ ":subroomId",
+ "datahistory"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": null
+ },
+ {
+ "key": "subroomId",
+ "value": null
+ }
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Favourite Room",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "PUT",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomid/interactionby/me/favorite",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomid",
+ "interactionby",
+ "me",
+ "favorite"
+ ],
+ "variable": [
+ {
+ "key": "roomid",
+ "value": null
+ }
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Unfavourite Room",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "DELETE",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomid/interactionby/me/favorite",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomid",
+ "interactionby",
+ "me",
+ "favorite"
+ ],
+ "variable": [
+ {
+ "key": "roomid",
+ "value": null
+ }
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Cheer Room",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "PUT",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomid/interactionby/me/cheer",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomid",
+ "interactionby",
+ "me",
+ "cheer"
+ ],
+ "variable": [
+ {
+ "key": "roomid",
+ "value": null
+ }
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Uncheer Room",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "DELETE",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomid/interactionby/me/cheer",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomid",
+ "interactionby",
+ "me",
+ "cheer"
+ ],
+ "variable": [
+ {
+ "key": "roomid",
+ "value": null
+ }
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Update Room Settings",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "name",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "description",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "accessibility",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "supportsScreens",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "supportsWalkVR",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "supportsTeleportVr",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "supportsJuniors",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "cloningAllowed",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "disableMicAutoMute",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "disableRoomComments",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "encryptVoiceChat",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomId/modify",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomId",
+ "modify"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Update Room Settings",
+ "originalRequest": {
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "name",
+ "value": "GyalsGrimeyGrotto",
+ "type": "text"
+ },
+ {
+ "key": "description",
+ "value": " This room is a blank canvas. Make it into whatever you like",
+ "type": "text"
+ },
+ {
+ "key": "accessibility",
+ "value": " 0",
+ "type": "text"
+ },
+ {
+ "key": "supportsScreens",
+ "value": " true",
+ "type": "text"
+ },
+ {
+ "key": "supportsWalkVR",
+ "value": " true",
+ "type": "text"
+ },
+ {
+ "key": "supportsTeleportVr",
+ "value": " true",
+ "type": "text"
+ },
+ {
+ "key": "supportsJuniors",
+ "value": " false",
+ "type": "text"
+ },
+ {
+ "key": "cloningAllowed",
+ "value": " false",
+ "type": "text"
+ },
+ {
+ "key": "disableMicAutoMute",
+ "value": " false",
+ "type": "text"
+ },
+ {
+ "key": "disableRoomComments",
+ "value": " false",
+ "type": "text"
+ },
+ {
+ "key": "encryptVoiceChat",
+ "value": "false",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomId/modify",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomId",
+ "modify"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": "32488724"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Fri, 03 Jun 2022 23:23:55 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Value\": {\n \"RoomId\": 32488724,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 0,\n \"MaxPlayers\": 20,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"GyalsGrimeyGrotto\",\n \"Description\": \" This room is a blank canvas. Make it into whatever you like\",\n \"ImageName\": \"d5b59c697cc34edba5587f40cb6a0025.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 0,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": false,\n \"MinLevel\": 4,\n \"CreatedAt\": \"2021-10-15T20:06:27.3622557Z\",\n \"Stats\": {\n \"CheerCount\": 1,\n \"FavoriteCount\": 0,\n \"VisitorCount\": 3,\n \"VisitCount\": 7\n },\n \"DataBlob\": \"89e1eecdeb4e41699d3c1bc91c3f230a.meta\",\n \"DataBlobHash\": \"WZSEOQZfKWGe9BKAy7kyvlLFbZnFlmtl4BESOfCYu+8=\",\n \"SubRooms\": [\n {\n \"SubRoomId\": 33147384,\n \"RoomId\": 32488724,\n \"UnitySceneId\": \"a75f7547-79eb-47c6-8986-6767abcb4f92\",\n \"Name\": \"Home\",\n \"DataBlob\": \"213fe922aed94c71ba684b50a1242b78.room\",\n \"DataBlobHash\": \"3wlxJwGkhsl2QBACyqtfl1LepJt4XVbV1ZTGQpwhu+g=\",\n \"DataSavedAt\": \"2021-10-18T20:38:20.2078213Z\",\n \"IsSandbox\": true,\n \"MaxPlayers\": 20,\n \"Accessibility\": 1\n }\n ],\n \"Roles\": [\n {\n \"AccountId\": 29563053,\n \"Role\": 30,\n \"LastChangedByAccountId\": 29563053,\n \"InvitedRole\": 0\n },\n {\n \"AccountId\": 10441985,\n \"Role\": 255,\n \"LastChangedByAccountId\": null,\n \"InvitedRole\": 0\n }\n ],\n \"Tags\": [\n {\n \"Tag\": \"beta\",\n \"Type\": 1\n }\n ],\n \"PromoImages\": [],\n \"PromoExternalContent\": [],\n \"LoadScreens\": []\n },\n \"Success\": true,\n \"ErrorId\": null,\n \"Error\": null\n}"
+ }
+ ]
+ },
+ {
+ "name": "Restore Room Backup",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "filename",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomId/subrooms/:subroomId/restoredata",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomId",
+ "subrooms",
+ ":subroomId",
+ "restoredata"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": ""
+ },
+ {
+ "key": "subroomId",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Restore Room Backup",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "filename",
+ "value": "b13834c9354a470dacea392142a3c2b5.room",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomId/subrooms/:subroomId/restoredata",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomId",
+ "subrooms",
+ ":subroomId",
+ "restoredata"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": "32488725"
+ },
+ {
+ "key": "subroomId",
+ "value": "33147384"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Fri, 03 Jun 2022 23:28:15 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Value\": {\n \"RoomId\": 32488725,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 0,\n \"MaxPlayers\": 20,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"LoadScreenLocked\": false,\n \"Version\": 1,\n \"Name\": \"Escape.Roomss\",\n \"Description\": \" This room is a blank canvas. Make it into whatever you like\",\n \"ImageName\": \"d5b59c697cc34edba5587f40db6a0025.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 0,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": false,\n \"MinLevel\": 4,\n \"CreatedAt\": \"2021-10-15T20:06:27.3622557Z\",\n \"Stats\": {\n \"CheerCount\": 1,\n \"FavoriteCount\": 0,\n \"VisitorCount\": 3,\n \"VisitCount\": 7\n },\n \"DataBlob\": \"89e1eecdeb4e41699d3c1bc91c3f230a.meta\",\n \"DataBlobHash\": \"WZSEOQZfKWGe9BKAy7kyvlLFbZnFlmtl4BESOfCYu+8=\",\n \"SubRooms\": [\n {\n \"SubRoomId\": 33147384,\n \"RoomId\": 32488724,\n \"UnitySceneId\": \"a75f7547-79eb-47c6-8986-6767abcb4f92\",\n \"Name\": \"Home\",\n \"DataBlob\": \"b13834c9354a470dacea392142a3c2b5.room\",\n \"DataBlobHash\": \"QAt5AP0e8sIYA5A+q988fQe6wQaLTwoofmnDwZawmeM=\",\n \"DataSavedAt\": \"2021-10-16T00:12:15.6807987Z\",\n \"IsSandbox\": true,\n \"MaxPlayers\": 20,\n \"Accessibility\": 1\n }\n ],\n \"Roles\": [\n {\n \"AccountId\": 10441985,\n \"Role\": 255,\n \"LastChangedByAccountId\": null,\n \"InvitedRole\": 0\n }\n ],\n \"Tags\": [\n {\n \"Tag\": \"beta\",\n \"Type\": 1\n }\n ],\n \"PromoImages\": [],\n \"PromoExternalContent\": [],\n \"LoadScreens\": []\n },\n \"Success\": true,\n \"ErrorId\": null,\n \"Error\": null\n}"
+ }
+ ]
+ },
+ {
+ "name": "Set Room Video Promotion",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "reference",
+ "value": " ",
+ "type": "text"
+ },
+ {
+ "key": "type",
+ "value": " ",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomId/promo_external",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomId",
+ "promo_external"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Set Room Video",
+ "originalRequest": {
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "reference",
+ "value": " XIMLoLxmTDw",
+ "type": "text"
+ },
+ {
+ "key": "type",
+ "value": " 0",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomId/promo_external",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomId",
+ "promo_external"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": "32488725"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Fri, 03 Jun 2022 23:31:44 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Value\": {\n \"RoomId\": 32488725,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 0,\n \"MaxPlayers\": 20,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"Escape.Roomss\",\n \"Description\": \" This room is a blank canvas. Make it into whatever you like\",\n \"ImageName\": \"d5b59c697cc34edba5587f40db6a0025.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 0,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": false,\n \"MinLevel\": 4,\n \"CreatedAt\": \"2021-10-15T20:06:27.3622557Z\",\n \"Stats\": {\n \"CheerCount\": 1,\n \"FavoriteCount\": 0,\n \"VisitorCount\": 3,\n \"VisitCount\": 7\n },\n \"DataBlob\": \"89e1eecdeb4e41699d3c1bc91c3f230a.meta\",\n \"DataBlobHash\": \"WZSEOQZfKWGe9BKAy7kyvlLFbZnFlmtl4BESOfCYu+8=\",\n \"SubRooms\": [\n {\n \"SubRoomId\": 33147384,\n \"RoomId\": 32488724,\n \"UnitySceneId\": \"a75f7547-79eb-47c6-8986-6767abcb4f92\",\n \"Name\": \"Home\",\n \"DataBlob\": \"b13834c9354a470dacea392142a3c2b5.room\",\n \"DataBlobHash\": \"QAt5AP0e8sIYA5A+q988fQe6wQaLTwoofmnDwZawmeM=\",\n \"DataSavedAt\": \"2021-10-16T00:12:15.6807987Z\",\n \"IsSandbox\": true,\n \"MaxPlayers\": 20,\n \"Accessibility\": 1\n }\n ],\n \"Roles\": [\n {\n \"AccountId\": 10441985,\n \"Role\": 255,\n \"LastChangedByAccountId\": null,\n \"InvitedRole\": 0\n }\n ],\n \"Tags\": [\n {\n \"Tag\": \"beta\",\n \"Type\": 1\n }\n ],\n \"PromoImages\": [],\n \"PromoExternalContent\": [],\n \"LoadScreens\": []\n },\n \"Success\": true,\n \"ErrorId\": null,\n \"Error\": null\n}"
+ }
+ ]
+ },
+ {
+ "name": "Delete Room",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "DELETE",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net//rooms/:roomId",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "",
+ "rooms",
+ ":roomId"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": null
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Delete Room",
+ "originalRequest": {
+ "method": "DELETE",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net//rooms/:roomId",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "",
+ "rooms",
+ ":roomId"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": "15095793"
+ }
+ ]
+ }
+ },
+ "status": "Unauthorized",
+ "code": 401,
+ "_postman_previewlanguage": "plain",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Fri, 03 Jun 2022 23:34:22 GMT"
+ },
+ {
+ "key": "Content-Length",
+ "value": "0"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "WWW-Authenticate",
+ "value": "Bearer"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\"Success\":true,\"ErrorId\":null,\"Error\":null}"
+ }
+ ]
+ },
+ {
+ "name": "Get Logs",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "formdata",
+ "formdata": [
+ {
+ "key": "count",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "continuationToken",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomId/logs/getForPlayer",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomId",
+ "logs",
+ "getForPlayer"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Get Logs",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "formdata",
+ "formdata": [
+ {
+ "key": "count",
+ "value": " 25",
+ "type": "text"
+ },
+ {
+ "key": "continuationToken",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomId/logs/getForPlayer",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomId",
+ "logs",
+ "getForPlayer"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": "23570830"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 22 Jun 2022 15:03:57 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Value\": {\n \"Logs\": [],\n \"ContinuationToken\": null\n },\n \"Success\": true,\n \"ErrorId\": null,\n \"Error\": null\n}"
+ }
+ ]
+ },
+ {
+ "name": "Set Room Image",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "imageName",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomid/image",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomid",
+ "image"
+ ],
+ "variable": [
+ {
+ "key": "roomid",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Set Room Image",
+ "originalRequest": {
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "imageName",
+ "value": "br0nqq45fyhwk6d1bx0mhpw3q.jpg",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomid/image",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomid",
+ "image"
+ ],
+ "variable": [
+ {
+ "key": "roomid",
+ "value": "67486120"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Mon, 29 Aug 2022 16:18:34 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Value\": {\n \"RoomId\": 67486120,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 0,\n \"MaxPlayers\": 20,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"StopLookingLol\",\n \"Description\": \"Relax on the warm beach and swim in the ocean. You can customize this template however you like.\",\n \"ImageName\": \"br0nqq45fyhwk6d1bx0mhpw3j.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 1,\n \"State\": 0,\n \"Accessibility\": 0,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2022-06-03T23:55:07.8561866Z\",\n \"Stats\": {\n \"CheerCount\": 69420,\n \"FavoriteCount\": 1337,\n \"VisitorCount\": 1358178,\n \"VisitCount\": 2132871245\n },\n \"DataBlob\": \"8wbbpqh15m0gk1rpdv2hnnemd.meta\",\n \"DataBlobHash\": \"Sq7wokbVAL+2tROp3fDo8rJVco0JRU/BHCrp1qrU5o4=\",\n \"SubRooms\": [\n {\n \"SubRoomId\": 68683021,\n \"RoomId\": 67486144,\n \"UnitySceneId\": \"a75f7547-79eb-47c6-8986-6767abcb4f92\",\n \"Name\": \"Home\",\n \"DataBlob\": \"djna023rvnnujd5i15hr7sheg.room\",\n \"DataBlobHash\": \"m4azRMDqhuMsKD06G/MJnw3rYrQmzYMYjn9AGBGx3DA=\",\n \"DataSavedAt\": \"2022-06-04T00:28:38.3440284Z\",\n \"IsSandbox\": true,\n \"MaxPlayers\": 20,\n \"Accessibility\": 1\n }\n ],\n \"Roles\": [\n {\n \"AccountId\": 1,\n \"Role\": 255,\n \"LastChangedByAccountId\": null,\n \"InvitedRole\": 0\n }\n ],\n \"Tags\": [\n {\n \"Tag\": \"beta\",\n \"Type\": 1\n }\n ],\n \"PromoImages\": [],\n \"PromoExternalContent\": [],\n \"LoadScreens\": []\n },\n \"Success\": true,\n \"ErrorId\": null,\n \"Error\": null,\n \"LocalizationContext\": null\n}"
+ }
+ ]
+ },
+ {
+ "name": "Set Player Role",
+ "request": {
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "role",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomId/roles/:accountId",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomId",
+ "roles",
+ ":accountId"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": null
+ },
+ {
+ "key": "accountId",
+ "value": null
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Set Player Role",
+ "originalRequest": {
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "role",
+ "value": "moderator",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/rooms/:roomId/roles/:accountId",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "rooms",
+ ":roomId",
+ "roles",
+ ":accountId"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": "67486120"
+ },
+ {
+ "key": "accountId",
+ "value": "1"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 30 Aug 2022 14:59:56 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Value\": {\n \"RoomId\": 67486120,\n \"IsDorm\": false,\n \"MaxPlayerCalculationMode\": 0,\n \"MaxPlayers\": 20,\n \"CloningAllowed\": false,\n \"DisableMicAutoMute\": false,\n \"DisableRoomComments\": false,\n \"EncryptVoiceChat\": false,\n \"ToxmodEnabled\": false,\n \"LoadScreenLocked\": false,\n \"Name\": \"StopLookingLol\",\n \"Description\": \"Relax on the warm beach and swim in the ocean. You can customize this template however you like.\",\n \"ImageName\": \"br0nqq45fyhwk6d1bx0mhpw3a.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": null,\n \"CreatorAccountId\": 10441985,\n \"State\": 0,\n \"Accessibility\": 0,\n \"SupportsLevelVoting\": false,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2022-06-03T23:55:07.8561866Z\",\n \"Stats\": {\n \"CheerCount\": 0,\n \"FavoriteCount\": 0,\n \"VisitorCount\": 1,\n \"VisitCount\": 2\n },\n \"DataBlob\": \"8wbbpqh15m0gk1rpdv2hnneme.meta\",\n \"DataBlobHash\": \"Sq7wokbVAL+2tROp3fDo8rJVco0IRU/BHCrp1qrU5o4=\",\n \"SubRooms\": [\n {\n \"SubRoomId\": 68683021,\n \"RoomId\": 67486120,\n \"UnitySceneId\": \"a75f7547-79eb-47c6-8986-6767abcb4f92\",\n \"Name\": \"Home\",\n \"DataBlob\": \"djna023rvnnujd5i15hr7sheg.room\",\n \"DataBlobHash\": \"m4azRMDqhuMsKD06G/MJnw3rYrQmzYMYjn9AGBGx3DA=\",\n \"DataSavedAt\": \"2022-06-04T00:28:38.3440284Z\",\n \"IsSandbox\": true,\n \"MaxPlayers\": 20,\n \"Accessibility\": 1\n }\n ],\n \"Roles\": [\n {\n \"AccountId\": 1,\n \"Role\": 20,\n \"LastChangedByAccountId\": 10441985,\n \"InvitedRole\": 0\n },\n {\n \"AccountId\": 10441985,\n \"Role\": 255,\n \"LastChangedByAccountId\": null,\n \"InvitedRole\": 0\n }\n ],\n \"Tags\": [\n {\n \"Tag\": \"beta\",\n \"Type\": 1\n }\n ],\n \"PromoImages\": [],\n \"PromoExternalContent\": [],\n \"LoadScreens\": []\n },\n \"Success\": true,\n \"ErrorId\": null,\n \"Error\": null,\n \"LocalizationContext\": null\n}"
+ }
+ ]
+ }
+ ],
+ "description": "This section contains all the endpoints that can be used to retrieve room information. Player/Account information isn't a part of `api.rec.net`, but is instead accessed through `rooms.rec.net`. More information on rooms and room information is given below.\n\n## Room Properties\n\n| Property | Type | Description |\n| --- | --- | --- |\n| Room ID | Int | Each roon has a unique ID associated with it. Room IDs are sequential which means that every time a new room is created, it's ID will be +1 of the previous room created. |\n| Room Name | String | This is the unique name of the room that was chosen by the room creator. This is the name that is used in the URL of the room's RecNet page ( i.e `https://rec.net/room/:roomName` ). |\n| Room Description | String | This is the description of the room. If no description was set, then this property will be null. |\n| Image Name | String | This is the file name of the room thumbnail, and it can be used to get a link to the image itself from this endpoint, `https://img.rec.net/:imageName`. |\n| Custom Warning | String | This is the warning on the room. If no warning was set, then this property will be null. |\n| Creator Account ID | Int | This is the internal account ID of the player who made the room. For more information regarding account information look at the [Accounts](https://colinxyz.postman.co/workspace/My-Workspace~4352b2cf-e1b4-4aeb-856c-0fee7f62c96b/documentation/13848200-ed8c30d7-95b7-4749-961a-7fab1ec0f78f?entity=folder-72845adf-0224-43a6-abda-7bff6fde3d03) section. |\n| Accessibility | Int | This property defines who is able to access the room. If this is equal to 1, then it's accessibility is set to public, and everyone can access it. If this is equal to 0, then it's accessibility is set to private, and only the room owner and co-owners will be able to access it. |\n| Created At | String | This is the time the room was created. |\n| Stats | Object | This is the room statistics. It has four properties which gives information on how people have interacted in that room. `VisitCount` and `VisitorCount` are different because `VisitCount` is the total number of times a room has been visited whereas VisitorCount is the number of unique players who visited a room. |"
+ },
+ {
+ "name": "Events",
+ "item": [
+ {
+ "name": "All Events",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1"
+ ]
+ },
+ "description": "This returns an array of all event objects from newest to oldest."
+ },
+ "response": [
+ {
+ "name": "All Events",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:38:57 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "5888"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "TiPMix=26.312493618869006; path=/; HttpOnly; Domain=api.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "x-ms-routing-name=self; path=/; HttpOnly; Domain=api.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"PlayerEventId\": 1204906,\n \"CreatorPlayerId\": 1361191,\n \"ImageName\": null,\n \"RoomId\": 66954494,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"lego costume vibez\",\n \"Description\": \"lego\",\n \"StartTime\": \"2022-05-31T19:45:00Z\",\n \"EndTime\": \"2022-05-31T23:45:00Z\",\n \"AttendeeCount\": 28,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1202490,\n \"CreatorPlayerId\": 39889091,\n \"ImageName\": null,\n \"RoomId\": 49789597,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"squid game for free gifts\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T20:00:00Z\",\n \"EndTime\": \"2022-06-01T00:00:00Z\",\n \"AttendeeCount\": 20,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1203900,\n \"CreatorPlayerId\": 27762041,\n \"ImageName\": null,\n \"RoomId\": 65392585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"D day\",\n \"Description\": \"Sub\",\n \"StartTime\": \"2022-05-31T20:00:00Z\",\n \"EndTime\": \"2022-06-01T00:00:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204048,\n \"CreatorPlayerId\": 29878499,\n \"ImageName\": null,\n \"RoomId\": 66097861,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"MAPS FOR SALE\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T20:00:00Z\",\n \"EndTime\": \"2022-06-01T00:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204408,\n \"CreatorPlayerId\": 13673458,\n \"ImageName\": null,\n \"RoomId\": 28135975,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"kill a ragdoll\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T20:00:00Z\",\n \"EndTime\": \"2022-06-01T00:00:00Z\",\n \"AttendeeCount\": 4,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204813,\n \"CreatorPlayerId\": 18967016,\n \"ImageName\": null,\n \"RoomId\": 66941833,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"kill a ai\",\n \"Description\": null,\n \"StartTime\": \"2022-05-31T20:00:00Z\",\n \"EndTime\": \"2022-06-01T00:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1204872,\n \"CreatorPlayerId\": 72180996,\n \"ImageName\": null,\n \"RoomId\": 46926770,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Tenis 🎾 \",\n \"Description\": \"Play tenis all day\",\n \"StartTime\": \"2022-05-31T20:00:00Z\",\n \"EndTime\": \"2022-05-31T23:45:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1204889,\n \"CreatorPlayerId\": 48571664,\n \"ImageName\": null,\n \"RoomId\": 10608852,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"boi\",\n \"Description\": \"yes\",\n \"StartTime\": \"2022-05-31T20:00:00Z\",\n \"EndTime\": \"2022-06-01T00:00:00Z\",\n \"AttendeeCount\": 10,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 945621,\n \"CreatorPlayerId\": 21580520,\n \"ImageName\": null,\n \"RoomId\": 46835831,\n \"SubRoomId\": 47724734,\n \"ClubId\": null,\n \"Name\": \"mini you for free\",\n \"Description\": \"come here and get a mini plush of you\",\n \"StartTime\": \"2022-05-31T20:03:00Z\",\n \"EndTime\": \"2022-05-31T23:50:00Z\",\n \"AttendeeCount\": 65,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204961,\n \"CreatorPlayerId\": 39424007,\n \"ImageName\": \"2ncp6u964bn3d4ggifrvng8mh.jpg\",\n \"RoomId\": 64821918,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Teahouse hangout\",\n \"Description\": \"The Green Lotus welcomes you! Please subscribe and enjoy your stay\",\n \"StartTime\": \"2022-05-31T20:15:00Z\",\n \"EndTime\": \"2022-06-01T00:15:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204972,\n \"CreatorPlayerId\": 6613710,\n \"ImageName\": null,\n \"RoomId\": 32476452,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"PE training\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T20:15:00Z\",\n \"EndTime\": \"2022-06-01T00:15:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204976,\n \"CreatorPlayerId\": 10380662,\n \"ImageName\": \"csdtttci8jknf5l039c15nhp0.jpg\",\n \"RoomId\": 67070881,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"GetMarriedSimulation event\",\n \"Description\": \"GetMarriedSimulation event of ur base to bottom of ur base to bottom of ur base to bottom GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation GetMarriedSimulation Ge\",\n \"StartTime\": \"2022-05-31T20:20:00Z\",\n \"EndTime\": \"2022-05-31T23:50:00Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204036,\n \"CreatorPlayerId\": 1866322,\n \"ImageName\": null,\n \"RoomId\": 52745072,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"FalloutRP\",\n \"Description\": \"All rules will be enforced! Join our discord. https://discord.gg/VJD2srnC6V\",\n \"StartTime\": \"2022-05-31T20:30:00Z\",\n \"EndTime\": \"2022-05-31T23:45:00Z\",\n \"AttendeeCount\": 6,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1204153,\n \"CreatorPlayerId\": 3852480,\n \"ImageName\": null,\n \"RoomId\": 65258337,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"CostumeMapsAreFun\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T20:35:00Z\",\n \"EndTime\": \"2022-06-01T00:35:00Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205031,\n \"CreatorPlayerId\": 9946930,\n \"ImageName\": null,\n \"RoomId\": 31175429,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Infernal Military\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T20:40:00Z\",\n \"EndTime\": \"2022-06-01T00:10:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204999,\n \"CreatorPlayerId\": 21976930,\n \"ImageName\": null,\n \"RoomId\": 67075505,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"ComeMeetPeople\",\n \"Description\": \"Come Meet Friends\",\n \"StartTime\": \"2022-05-31T20:45:59.217Z\",\n \"EndTime\": \"2022-06-01T00:40:59.217Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205067,\n \"CreatorPlayerId\": 12672699,\n \"ImageName\": null,\n \"RoomId\": 34013939,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"McDonalds\",\n \"Description\": \"Have fun with friends!\",\n \"StartTime\": \"2022-05-31T20:55:00Z\",\n \"EndTime\": \"2022-06-01T00:55:00Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1199065,\n \"CreatorPlayerId\": 30703431,\n \"ImageName\": null,\n \"RoomId\": 54658028,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Rooftop Hangout\",\n \"Description\": \"Come and just hangout!\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-06-01T01:00:00Z\",\n \"AttendeeCount\": 35,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204514,\n \"CreatorPlayerId\": 2674230,\n \"ImageName\": null,\n \"RoomId\": 6341236,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TIN Recruitment #309 (EST)\",\n \"Description\": \"Glory to the Empire!\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-06-01T01:00:00Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1204735,\n \"CreatorPlayerId\": 11892846,\n \"ImageName\": null,\n \"RoomId\": 16888950,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"GEV1 Recruiting Event #343\",\n \"Description\": \"Come and serve under lord V1 in the Empire!\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-06-01T01:00:00Z\",\n \"AttendeeCount\": 21,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1204771,\n \"CreatorPlayerId\": 10441985,\n \"ImageName\": null,\n \"RoomId\": 23570830,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"DUNGEON Escape ROOM\",\n \"Description\": \"Try and escape the DUNGEONS with upto 4 players! You have 15 minutes to complete this room - good luck!!\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-06-01T01:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1204932,\n \"CreatorPlayerId\": 10518666,\n \"ImageName\": \"4j3ryug3dtgg7405af9ygumnk.jpg\",\n \"RoomId\": 66460911,\n \"SubRoomId\": 68255654,\n \"ClubId\": null,\n \"Name\": \"NASCAR BaySpringsTruckDirtrace\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-06-01T00:30:00Z\",\n \"AttendeeCount\": 9,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205038,\n \"CreatorPlayerId\": 4115125,\n \"ImageName\": null,\n \"RoomId\": 24351372,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Join for Fun\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-06-01T01:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205039,\n \"CreatorPlayerId\": 4115125,\n \"ImageName\": null,\n \"RoomId\": 54495732,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Hangout\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-06-01T01:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205043,\n \"CreatorPlayerId\": 4115125,\n \"ImageName\": null,\n \"RoomId\": 39182422,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"1K SUBS CELEBRATION\",\n \"Description\": \"Superstar Daycare\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-06-01T01:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205045,\n \"CreatorPlayerId\": 4115125,\n \"ImageName\": null,\n \"RoomId\": 24351372,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"1K SUBS CELEBRATION!\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-06-01T01:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205047,\n \"CreatorPlayerId\": 4115125,\n \"ImageName\": null,\n \"RoomId\": 24351372,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"PvP EVENT\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-06-01T01:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205073,\n \"CreatorPlayerId\": 11121471,\n \"ImageName\": \"7cmm6f6ivydkdjxwxk6936z9n.jpg\",\n \"RoomId\": 31481333,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"BlackFoxTavern\",\n \"Description\": \"relax, have a drink, and inv your friends!\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-06-01T00:30:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205078,\n \"CreatorPlayerId\": 3852480,\n \"ImageName\": null,\n \"RoomId\": 66941306,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Titanic Hangout\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-06-01T01:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205089,\n \"CreatorPlayerId\": 10025604,\n \"ImageName\": \"ep2jwgn7it1evni4nk54u3grj.jpg\",\n \"RoomId\": 17811230,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"the USA training event 001\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:05:00Z\",\n \"EndTime\": \"2022-06-01T00:15:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205095,\n \"CreatorPlayerId\": 9905668,\n \"ImageName\": null,\n \"RoomId\": 14346297,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"free token\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:05:00Z\",\n \"EndTime\": \"2022-05-31T23:50:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205100,\n \"CreatorPlayerId\": 3114111,\n \"ImageName\": null,\n \"RoomId\": 57417871,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"18+ Chill Room\",\n \"Description\": \"Please invite your friends like and subscribe to my room\",\n \"StartTime\": \"2022-05-31T21:05:00Z\",\n \"EndTime\": \"2022-06-01T01:05:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205051,\n \"CreatorPlayerId\": 3923743,\n \"ImageName\": null,\n \"RoomId\": 18089481,\n \"SubRoomId\": 18445528,\n \"ClubId\": null,\n \"Name\": \"find a friend\",\n \"Description\": \"studio\",\n \"StartTime\": \"2022-05-31T21:10:00Z\",\n \"EndTime\": \"2022-06-01T00:40:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205052,\n \"CreatorPlayerId\": 40216556,\n \"ImageName\": \"brdph37cb8bf82sryqkpsxu26.jpg\",\n \"RoomId\": 67078965,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"need builders for a pvp map plz\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:10:00Z\",\n \"EndTime\": \"2022-06-01T00:50:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205102,\n \"CreatorPlayerId\": 3741875,\n \"ImageName\": \"05bdugkndf1q69c85raalfx1y.jpg\",\n \"RoomId\": 65271090,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"last to fall\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:10:00Z\",\n \"EndTime\": \"2022-06-01T00:20:00Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205106,\n \"CreatorPlayerId\": 1966025,\n \"ImageName\": null,\n \"RoomId\": 32734471,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"last to fall wins mod\",\n \"Description\": \"idkfd vjiofhd\",\n \"StartTime\": \"2022-05-31T21:10:00Z\",\n \"EndTime\": \"2022-05-31T23:40:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205113,\n \"CreatorPlayerId\": 11119281,\n \"ImageName\": null,\n \"RoomId\": 51002300,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Join TJA\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:10:00Z\",\n \"EndTime\": \"2022-05-31T23:40:00Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1203493,\n \"CreatorPlayerId\": 878838,\n \"ImageName\": null,\n \"RoomId\": 66647964,\n \"SubRoomId\": 67820948,\n \"ClubId\": null,\n \"Name\": \"RUN FROM THE CUBE!\",\n \"Description\": \"Run from a tumbling cube!\",\n \"StartTime\": \"2022-05-31T21:20:00Z\",\n \"EndTime\": \"2022-06-01T00:20:00Z\",\n \"AttendeeCount\": 34,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204427,\n \"CreatorPlayerId\": 54734596,\n \"ImageName\": \"9uroiavd5zjedngbupy4iol9s.jpg\",\n \"RoomId\": 66976265,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Free gift and hangout\",\n \"Description\": \"Get you a free gift an chill with the homies\",\n \"StartTime\": \"2022-05-31T21:20:00Z\",\n \"EndTime\": \"2022-06-01T00:00:00Z\",\n \"AttendeeCount\": 7,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205072,\n \"CreatorPlayerId\": 26397436,\n \"ImageName\": \"20shcse0kp7lvkkcp81azlz8y.jpg\",\n \"RoomId\": 67080171,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"movie talk lazer tag\",\n \"Description\": \"Just a talk for it\",\n \"StartTime\": \"2022-05-31T21:20:00Z\",\n \"EndTime\": \"2022-06-01T00:20:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205131,\n \"CreatorPlayerId\": 17467540,\n \"ImageName\": \"5r7zeu43pychkgnkfhwleao06.jpg\",\n \"RoomId\": 66885265,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"OMEGLE INTERVIEW\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:20:00Z\",\n \"EndTime\": \"2022-06-01T01:20:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205140,\n \"CreatorPlayerId\": 7957440,\n \"ImageName\": \"4pg03dlpxll9gx6apsmwwa2dk.jpg\",\n \"RoomId\": 64739769,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"paint and cheel\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:25:00Z\",\n \"EndTime\": \"2022-05-31T23:55:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205150,\n \"CreatorPlayerId\": 7284825,\n \"ImageName\": null,\n \"RoomId\": 59096475,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TF.Site.19 Recuitment\",\n \"Description\": \"Join today!\",\n \"StartTime\": \"2022-05-31T21:25:00Z\",\n \"EndTime\": \"2022-06-01T00:35:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205098,\n \"CreatorPlayerId\": 21578809,\n \"ImageName\": \"9gk0xxd3yjeta20prlla1iaqe.jpg\",\n \"RoomId\": 66692741,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"LastToFall1k\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:25:43.131Z\",\n \"EndTime\": \"2022-06-01T00:10:43.131Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1203881,\n \"CreatorPlayerId\": 1406438,\n \"ImageName\": \"0m86akd331fhpevwmc4pdkl1c.jpg\",\n \"RoomId\": 63541436,\n \"SubRoomId\": null,\n \"ClubId\": 57826018,\n \"Name\": \"The Sith Alliance\",\n \"Description\": \"Join Us\",\n \"StartTime\": \"2022-05-31T21:30:00Z\",\n \"EndTime\": \"2022-06-01T01:30:00Z\",\n \"AttendeeCount\": 5,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205156,\n \"CreatorPlayerId\": 23413911,\n \"ImageName\": \"7t7u7iqxl0wst4udpgonaa0xe.jpg\",\n \"RoomId\": 64493233,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TRB TRAINING\",\n \"Description\": \"There is pt\",\n \"StartTime\": \"2022-05-31T21:30:00Z\",\n \"EndTime\": \"2022-06-01T00:20:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205163,\n \"CreatorPlayerId\": 25038753,\n \"ImageName\": null,\n \"RoomId\": 62931476,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TGGE Recruitment\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:30:00Z\",\n \"EndTime\": \"2022-06-01T00:45:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205126,\n \"CreatorPlayerId\": 25842820,\n \"ImageName\": \"9hb3irumuck0msvu2sn30tgvv.jpg\",\n \"RoomId\": 55707532,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Valenti Mob Hiring! #1\",\n \"Description\": \"\\\"Be mindful whos grass you step on, it will be the fire to your tree\\\"\",\n \"StartTime\": \"2022-05-31T21:30:19.454Z\",\n \"EndTime\": \"2022-05-31T23:50:19.454Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1201763,\n \"CreatorPlayerId\": 28819572,\n \"ImageName\": null,\n \"RoomId\": 61973150,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"PvP Map\",\n \"Description\": \"Have Fun\",\n \"StartTime\": \"2022-05-31T21:35:00Z\",\n \"EndTime\": \"2022-06-01T00:05:00Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1201553,\n \"CreatorPlayerId\": 72214740,\n \"ImageName\": null,\n \"RoomId\": 66860767,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"CostumeRoleplayXL\",\n \"Description\": \"a XL Costume game\",\n \"StartTime\": \"2022-05-31T21:40:00Z\",\n \"EndTime\": \"2022-06-01T01:10:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205173,\n \"CreatorPlayerId\": 24595216,\n \"ImageName\": \"1uv2p3ydg3mwo4eribgh4qezu.jpg\",\n \"RoomId\": 60553604,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Jacksons Family bar\",\n \"Description\": \"chill\",\n \"StartTime\": \"2022-05-31T21:40:00Z\",\n \"EndTime\": \"2022-06-01T00:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205148,\n \"CreatorPlayerId\": 29869908,\n \"ImageName\": null,\n \"RoomId\": 64833171,\n \"SubRoomId\": 65964428,\n \"ClubId\": null,\n \"Name\": \"NEW BACKROOMS\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:45:00Z\",\n \"EndTime\": \"2022-05-31T23:45:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205054,\n \"CreatorPlayerId\": 31127092,\n \"ImageName\": \"817vm56mb9c1cqbk9dqpy1iit.jpg\",\n \"RoomId\": 66473647,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Race\",\n \"Description\": \"Race your friends and have fun\",\n \"StartTime\": \"2022-05-31T21:50:00Z\",\n \"EndTime\": \"2022-06-01T00:25:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205189,\n \"CreatorPlayerId\": 20361563,\n \"ImageName\": \"29jngku0xak0xp6m6cda7n5xa.jpg\",\n \"RoomId\": 66927439,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Lofi Yoshi's Cafe\",\n \"Description\": \"come on down to sharkys arcade and yoshi's cafe\",\n \"StartTime\": \"2022-05-31T21:50:00Z\",\n \"EndTime\": \"2022-06-01T01:05:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205206,\n \"CreatorPlayerId\": 52202052,\n \"ImageName\": null,\n \"RoomId\": 65072165,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TGCA 158#\",\n \"Description\": \"Join TGCA\",\n \"StartTime\": \"2022-05-31T21:55:00Z\",\n \"EndTime\": \"2022-06-01T00:15:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205209,\n \"CreatorPlayerId\": 30715755,\n \"ImageName\": null,\n \"RoomId\": 66844198,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Shadow force Military #212\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:55:00Z\",\n \"EndTime\": \"2022-06-01T01:25:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205210,\n \"CreatorPlayerId\": 67378148,\n \"ImageName\": \"br2igbnmgagstlgl4htjehulc.jpg\",\n \"RoomId\": 63932533,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Last to fall for 5k\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T21:55:00Z\",\n \"EndTime\": \"2022-06-01T01:25:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205212,\n \"CreatorPlayerId\": 37200269,\n \"ImageName\": \"c29hn2potwvcyru8qo6fk12jc.jpg\",\n \"RoomId\": 57422840,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Free gifts for everyone!\",\n \"Description\": \"Come grab a free gift! Restocked!\",\n \"StartTime\": \"2022-05-31T21:55:00Z\",\n \"EndTime\": \"2022-06-01T01:55:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204305,\n \"CreatorPlayerId\": 8572010,\n \"ImageName\": null,\n \"RoomId\": 16384296,\n \"SubRoomId\": 64693047,\n \"ClubId\": null,\n \"Name\": \"Hello neighbor part 1\",\n \"Description\": \"SoulFox\",\n \"StartTime\": \"2022-05-31T22:00:00Z\",\n \"EndTime\": \"2022-06-01T00:30:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205142,\n \"CreatorPlayerId\": 65898531,\n \"ImageName\": \"eyijsp071y2vrxufbpb589f81.jpg\",\n \"RoomId\": 67081424,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Roll_the_dice_if_u_sub\",\n \"Description\": \"When u subscribe to me u get too roll the dice whatever it lands on i have to do it!!\",\n \"StartTime\": \"2022-05-31T22:00:00Z\",\n \"EndTime\": \"2022-06-01T00:00:00Z\",\n \"AttendeeCount\": 10,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205215,\n \"CreatorPlayerId\": 13388382,\n \"ImageName\": \"676jr7cutx3a7yd6wi0tpokh9.jpg\",\n \"RoomId\": 67035722,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"I Need Help on Millitary!\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T22:00:00Z\",\n \"EndTime\": \"2022-06-01T00:30:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205222,\n \"CreatorPlayerId\": 15183382,\n \"ImageName\": null,\n \"RoomId\": 36007548,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Driveng 13+\",\n \"Description\": \"invite your friends to get The best player in RecRoom!!!!\",\n \"StartTime\": \"2022-05-31T22:00:00Z\",\n \"EndTime\": \"2022-06-01T01:15:00Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1205225,\n \"CreatorPlayerId\": 12617068,\n \"ImageName\": null,\n \"RoomId\": 170137,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"IsleOfTheLostSkulls\",\n \"Description\": \"plz carry...\",\n \"StartTime\": \"2022-05-31T22:00:00Z\",\n \"EndTime\": \"2022-06-01T00:40:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1138161,\n \"CreatorPlayerId\": 31276711,\n \"ImageName\": \"5dc0tvff7rd7f5d2z6ugj19m9.jpg\",\n \"RoomId\": 52870421,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Artist Party & Draw\",\n \"Description\": \"hang out and talk with other artists ~ chill & draw - **CALL for the cat theme group show is Closed** - Thank you everyone who participated on our open call. We will be having our private opening party with all our artists and special guests this week so make sure to be part of the Gallery Lumin Club and sub to get the invite <3 - - The Cat Group Show will be live for public viewing Friday. Be sure to visit and explore our 15+ subrooms to see our featured artists & get inspired <3\",\n \"StartTime\": \"2022-05-31T22:00:18Z\",\n \"EndTime\": \"2022-06-01T01:00:18Z\",\n \"AttendeeCount\": 102,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Event Information From ID",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1/:eventId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1",
+ ":eventId"
+ ],
+ "variable": [
+ {
+ "key": "eventId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes an event ID as a path parameter, and returns an object that contains detailed information about an event."
+ },
+ "response": [
+ {
+ "name": "Event Information From ID",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1/:eventId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1",
+ ":eventId"
+ ],
+ "variable": [
+ {
+ "key": "eventId",
+ "value": "177098"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:39:27 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "441"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"PlayerEventId\": 177098,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": \"e63dcbffe8d14a7696bea7117dc3dd28.jpg\",\n \"RoomId\": 10916706,\n \"SubRoomId\": 11195660,\n \"ClubId\": null,\n \"Name\": \"Building a Better Room Using Trigonometry\",\n \"Description\": \"\",\n \"StartTime\": \"2020-11-29T22:00:00Z\",\n \"EndTime\": \"2020-11-29T22:45:00Z\",\n \"AttendeeCount\": 44,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n}"
+ }
+ ]
+ },
+ {
+ "name": "Event Responses",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1/:eventId/responses",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1",
+ ":eventId",
+ "responses"
+ ],
+ "variable": [
+ {
+ "key": "eventId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes an event ID as a path parameter, and returns an array of objects that detail response information."
+ },
+ "response": [
+ {
+ "name": "Event Responses",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1/:eventId/responses",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1",
+ ":eventId",
+ "responses"
+ ],
+ "variable": [
+ {
+ "key": "eventId",
+ "value": "177098"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:40:11 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "1705"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"PlayerEventResponseId\": 13190251,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 1827567,\n \"CreatedAt\": \"2020-11-26T18:05:35.363249Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13244253,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 3904760,\n \"CreatedAt\": \"2020-11-27T22:37:52.3616075Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13254213,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 8012393,\n \"CreatedAt\": \"2020-11-28T00:55:43.0876509Z\",\n \"Type\": 1\n },\n {\n \"PlayerEventResponseId\": 13254488,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 1494781,\n \"CreatedAt\": \"2020-11-28T01:25:56.7950834Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13259869,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 229034,\n \"CreatedAt\": \"2020-11-28T07:51:23.8163225Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13262357,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 387199,\n \"CreatedAt\": \"2020-11-28T08:05:24.461447Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13333585,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 14569,\n \"CreatedAt\": \"2020-11-28T22:17:02.3328793Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13378334,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 5755031,\n \"CreatedAt\": \"2020-11-29T14:37:22.1394674Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13378909,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 2038531,\n \"CreatedAt\": \"2020-11-29T15:10:51.0663927Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13380304,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 7987198,\n \"CreatedAt\": \"2020-11-29T15:17:11.7850907Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13380605,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 116906,\n \"CreatedAt\": \"2020-11-29T15:32:28.5663951Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13381317,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 3428464,\n \"CreatedAt\": \"2020-11-29T16:04:59.8708966Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13382647,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 915781,\n \"CreatedAt\": \"2020-11-29T16:40:59.5739203Z\",\n \"Type\": 1\n },\n {\n \"PlayerEventResponseId\": 13383724,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 4061568,\n \"CreatedAt\": \"2020-11-29T16:50:54.2778223Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13384050,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 1935779,\n \"CreatedAt\": \"2020-11-29T17:09:24.33221Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13385412,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 4124201,\n \"CreatedAt\": \"2020-11-29T17:25:39.8739867Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13385546,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 7293335,\n \"CreatedAt\": \"2020-11-29T17:28:49.1631463Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13386934,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 3716926,\n \"CreatedAt\": \"2020-11-29T17:36:56.6486671Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13387135,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 1253172,\n \"CreatedAt\": \"2020-11-29T17:45:29.1191224Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13387726,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 7607289,\n \"CreatedAt\": \"2020-11-29T17:56:50.6780199Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13387747,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 2815362,\n \"CreatedAt\": \"2020-11-29T17:57:17.9183781Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13388640,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 5699476,\n \"CreatedAt\": \"2020-11-29T18:19:49.9701109Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13401737,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 5712514,\n \"CreatedAt\": \"2020-11-29T18:42:41.8393843Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13403606,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 355425,\n \"CreatedAt\": \"2020-11-29T18:58:31.2344745Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13404076,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 8446973,\n \"CreatedAt\": \"2020-11-29T19:05:00.9417615Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13407806,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 2650285,\n \"CreatedAt\": \"2020-11-29T19:20:56.4978083Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13407926,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 3867163,\n \"CreatedAt\": \"2020-11-29T19:25:59.6628024Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13407944,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 7229226,\n \"CreatedAt\": \"2020-11-29T19:26:38.5707645Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13409826,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 2258572,\n \"CreatedAt\": \"2020-11-29T19:50:45.2649727Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13410141,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 1622849,\n \"CreatedAt\": \"2020-11-29T19:58:20.7007882Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13410550,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 1837081,\n \"CreatedAt\": \"2020-11-29T20:15:16.7541865Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13410951,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 3421722,\n \"CreatedAt\": \"2020-11-29T20:21:49.1339138Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13411373,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 3993245,\n \"CreatedAt\": \"2020-11-29T20:24:15.9466647Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13411484,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 1675396,\n \"CreatedAt\": \"2020-11-29T20:29:40.9073207Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13411516,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 785178,\n \"CreatedAt\": \"2020-11-29T20:31:55.2727446Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13416308,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 2196765,\n \"CreatedAt\": \"2020-11-29T21:02:30.6215618Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13416892,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 7501733,\n \"CreatedAt\": \"2020-11-29T21:13:57.8726136Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13416972,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 1099526,\n \"CreatedAt\": \"2020-11-29T21:16:25.3699177Z\",\n \"Type\": 1\n },\n {\n \"PlayerEventResponseId\": 13417626,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 7940645,\n \"CreatedAt\": \"2020-11-29T21:48:27.8250486Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13417675,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 755810,\n \"CreatedAt\": \"2020-11-29T21:52:06.350599Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13417690,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 3938367,\n \"CreatedAt\": \"2020-11-29T21:52:32.6047404Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13417702,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 4271739,\n \"CreatedAt\": \"2020-11-29T21:52:58.7613089Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13417800,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 1248171,\n \"CreatedAt\": \"2020-11-29T21:57:44.6904436Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13417862,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 1792457,\n \"CreatedAt\": \"2020-11-29T22:00:17.2516549Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13418084,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 502592,\n \"CreatedAt\": \"2020-11-29T22:10:50.2050687Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13418815,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 1825117,\n \"CreatedAt\": \"2020-11-29T22:20:30.3172267Z\",\n \"Type\": 0\n },\n {\n \"PlayerEventResponseId\": 13418864,\n \"PlayerEventId\": 177098,\n \"PlayerId\": 5732159,\n \"CreatedAt\": \"2020-11-29T22:28:06.0764932Z\",\n \"Type\": 0\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Events Created by a Player",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1/creator/:playerId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1",
+ "creator",
+ ":playerId"
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes an account ID as a path parameter, and returns an array of all the event objects that have the account ID as it's `CreatorPlayerId` property."
+ },
+ "response": [
+ {
+ "name": "Events Created by a Player",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1/creator/:playerId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1",
+ "creator",
+ ":playerId"
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": "1827567"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:40:40 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "4037"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"PlayerEventId\": 1175341,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG Semester 8 Lesson 6\",\n \"Description\": \"In today's listen, we'll be going over the final project requirements, and be covering strategies for effectively organizing the project. \",\n \"StartTime\": \"2022-05-16T23:00:00Z\",\n \"EndTime\": \"2022-05-17T00:15:00Z\",\n \"AttendeeCount\": 4,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1152162,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG Semester 8 Lesson 5\",\n \"Description\": \"In this lesson we'll begin wrapping up the semester by reviewing everything that's been covered so far. The latter half of this lesson will be focused on looking at the application of everthing we've covered so far. \",\n \"StartTime\": \"2022-05-09T23:00:00Z\",\n \"EndTime\": \"2022-05-10T01:00:00Z\",\n \"AttendeeCount\": 8,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1128548,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG Semester 8 Lesson 4\",\n \"Description\": \"This lesson will start off by reviewing kinematics and simple integration. Basic concepts that are required to understand vectors will be the main focus of this lesson, as well as the associated chips.\",\n \"StartTime\": \"2022-05-02T23:00:00Z\",\n \"EndTime\": \"2022-05-03T01:30:00Z\",\n \"AttendeeCount\": 10,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1121952,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG Semester 8 Lesson 1 & 2 REVIEW\",\n \"Description\": \"In this event, students who struggled in the previous lessons will have an opportunity to obtain a firmer understanding of the content. A short presentation that hits the highlights of the previous lessons will be given, and then we'll look deeper into what specifically each student struggles with.\",\n \"StartTime\": \"2022-04-24T23:00:00Z\",\n \"EndTime\": \"2022-04-25T01:00:00Z\",\n \"AttendeeCount\": 9,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1121935,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG Semester 8 Lesson 3\",\n \"Description\": \"In this lesson we'll be continuing with slopes and derivatives, and learn what a derivative means in context. We'll also look at simple Integration, and learn about kinematic principles. This lesson will be capped off with a special demonstration of the application of everything we've learned so far.\",\n \"StartTime\": \"2022-04-25T23:15:00Z\",\n \"EndTime\": \"2022-04-26T01:45:00Z\",\n \"AttendeeCount\": 11,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1101367,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG Semester 8 Lesson 2\",\n \"Description\": \"In today's lesson we'll be learning about linear equations and functions. We'll also be taking a deep dive into CV2, and you'll see CV2 in a whole new light.\",\n \"StartTime\": \"2022-04-18T23:00:00Z\",\n \"EndTime\": \"2022-04-19T01:30:00Z\",\n \"AttendeeCount\": 17,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1091798,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG Semester 8 Lesson 1\",\n \"Description\": \"Welcome to your very first lesson! In today's class you'll learn basic algebra concepts and primitive data types.\",\n \"StartTime\": \"2022-04-11T23:00:00Z\",\n \"EndTime\": \"2022-04-12T01:30:00Z\",\n \"AttendeeCount\": 21,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1063679,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG Open House\",\n \"Description\": \"To help encourage students to join the class, TMG is hosting an Open House. Come learn about all TMG has to offer, and feel free to ask questions.\",\n \"StartTime\": \"2022-03-28T21:00:00Z\",\n \"EndTime\": \"2022-03-28T22:30:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 677981,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 30868076,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Rec Room Analyzed!\",\n \"Description\": \"Rec Room has seen tremendous growth over the past year when it comes to UGC. During this panel, you’ll get to see day by day growth of Rec Room’s most popular rooms. As well as an analysis that will show what the future growth of these rooms might look like.\",\n \"StartTime\": \"2021-09-26T16:00:00Z\",\n \"EndTime\": \"2021-09-26T17:00:00Z\",\n \"AttendeeCount\": 146,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": true,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 447516,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG S6 L8\",\n \"Description\": \"\",\n \"StartTime\": \"2021-06-11T01:00:00Z\",\n \"EndTime\": \"2021-06-11T03:00:00Z\",\n \"AttendeeCount\": 4,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 445628,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG S6 L7\",\n \"Description\": \"\",\n \"StartTime\": \"2021-06-09T01:00:00Z\",\n \"EndTime\": \"2021-06-09T03:00:00Z\",\n \"AttendeeCount\": 5,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 424478,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG Sem 6 L6\",\n \"Description\": \"\",\n \"StartTime\": \"2021-06-04T01:00:00Z\",\n \"EndTime\": \"2021-06-04T03:00:00Z\",\n \"AttendeeCount\": 6,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 424476,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG Sem 6 L5\",\n \"Description\": \"\",\n \"StartTime\": \"2021-06-02T01:00:00Z\",\n \"EndTime\": \"2021-06-02T03:00:00Z\",\n \"AttendeeCount\": 6,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 424470,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG Sem 6 L4\",\n \"Description\": \"\",\n \"StartTime\": \"2021-05-28T01:00:00Z\",\n \"EndTime\": \"2021-05-28T03:00:00Z\",\n \"AttendeeCount\": 7,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 424468,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG Sem 6 L3\",\n \"Description\": \"\",\n \"StartTime\": \"2021-05-26T01:00:00Z\",\n \"EndTime\": \"2021-05-26T03:00:00Z\",\n \"AttendeeCount\": 6,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 413726,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG Semsester 6 Lesson 1\",\n \"Description\": \"\",\n \"StartTime\": \"2021-05-19T01:00:00Z\",\n \"EndTime\": \"2021-05-19T03:00:00Z\",\n \"AttendeeCount\": 17,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 413721,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG Semester 6 Lesson 2\",\n \"Description\": \"\",\n \"StartTime\": \"2021-05-21T01:00:00Z\",\n \"EndTime\": \"2021-05-21T03:00:00Z\",\n \"AttendeeCount\": 14,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 404995,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"Co Teacher\",\n \"Description\": \"\",\n \"StartTime\": \"2021-05-12T01:00:00Z\",\n \"EndTime\": \"2021-05-12T02:00:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 396877,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 9410928,\n \"SubRoomId\": 9653192,\n \"ClubId\": null,\n \"Name\": \"TMG GRADUATION SEM 5\",\n \"Description\": \"\",\n \"StartTime\": \"2021-05-07T01:00:00Z\",\n \"EndTime\": \"2021-05-07T02:00:00Z\",\n \"AttendeeCount\": 5,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 396441,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"Co Teacher 2\",\n \"Description\": \"\",\n \"StartTime\": \"2021-05-06T01:00:00Z\",\n \"EndTime\": \"2021-05-06T02:00:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 395007,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"Co Teacher\",\n \"Description\": \"\",\n \"StartTime\": \"2021-05-05T01:00:00Z\",\n \"EndTime\": \"2021-05-05T02:00:00Z\",\n \"AttendeeCount\": 5,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 301455,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 8745035,\n \"SubRoomId\": 8965394,\n \"ClubId\": null,\n \"Name\": \"Fjd\",\n \"Description\": \"\",\n \"StartTime\": \"2021-03-02T01:45:00Z\",\n \"EndTime\": \"2021-03-02T02:45:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 301217,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6765417,\n \"SubRoomId\": 6922887,\n \"ClubId\": null,\n \"Name\": \"Bebs\",\n \"Description\": \"\",\n \"StartTime\": \"2021-03-01T23:00:00Z\",\n \"EndTime\": \"2021-03-02T00:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 273147,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 17832009,\n \"SubRoomId\": 18184562,\n \"ClubId\": null,\n \"Name\": \"Circuit Secrets: Fall Damage (CV2)\",\n \"Description\": \"\",\n \"StartTime\": \"2021-02-17T02:00:00Z\",\n \"EndTime\": \"2021-02-17T03:30:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 271063,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG S5 L5&L6 Make-Up\",\n \"Description\": \"\",\n \"StartTime\": \"2021-02-15T02:00:00Z\",\n \"EndTime\": \"2021-02-15T03:30:00Z\",\n \"AttendeeCount\": 5,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 257923,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG S5 L8\",\n \"Description\": \"\",\n \"StartTime\": \"2021-02-18T02:00:00Z\",\n \"EndTime\": \"2021-02-18T03:30:00Z\",\n \"AttendeeCount\": 8,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 257922,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG S5 L7\",\n \"Description\": \"\",\n \"StartTime\": \"2021-02-16T02:00:00Z\",\n \"EndTime\": \"2021-02-16T03:30:00Z\",\n \"AttendeeCount\": 8,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 257920,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG S5 L6\",\n \"Description\": \"\",\n \"StartTime\": \"2021-02-11T02:00:00Z\",\n \"EndTime\": \"2021-02-11T03:30:00Z\",\n \"AttendeeCount\": 8,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 257916,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG S5 L5\",\n \"Description\": \"\",\n \"StartTime\": \"2021-02-09T02:00:00Z\",\n \"EndTime\": \"2021-02-09T03:30:00Z\",\n \"AttendeeCount\": 8,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 254161,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG S5 L1 & L2 Make-Up\",\n \"Description\": \"\",\n \"StartTime\": \"2021-02-01T02:00:00Z\",\n \"EndTime\": \"2021-02-01T04:00:00Z\",\n \"AttendeeCount\": 5,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 247230,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG S5 L4\",\n \"Description\": \"\",\n \"StartTime\": \"2021-02-04T02:00:00Z\",\n \"EndTime\": \"2021-02-04T03:30:00Z\",\n \"AttendeeCount\": 16,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 247229,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG S5 L3\",\n \"Description\": \"\",\n \"StartTime\": \"2021-02-02T02:00:00Z\",\n \"EndTime\": \"2021-02-02T03:30:00Z\",\n \"AttendeeCount\": 16,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 247227,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG S5 L2\",\n \"Description\": \"\",\n \"StartTime\": \"2021-01-28T02:00:00Z\",\n \"EndTime\": \"2021-01-28T03:30:00Z\",\n \"AttendeeCount\": 15,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 247225,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG S5 L1\",\n \"Description\": \"\",\n \"StartTime\": \"2021-01-26T02:00:00Z\",\n \"EndTime\": \"2021-01-26T03:30:00Z\",\n \"AttendeeCount\": 18,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 210937,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 9410928,\n \"SubRoomId\": 9653192,\n \"ClubId\": null,\n \"Name\": \"TMG Graduation Semester 4\",\n \"Description\": \"\",\n \"StartTime\": \"2021-01-15T02:00:00Z\",\n \"EndTime\": \"2021-01-15T03:00:00Z\",\n \"AttendeeCount\": 14,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 193859,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 170126,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"ttt\",\n \"Description\": null,\n \"StartTime\": \"2020-12-21T17:00:00Z\",\n \"EndTime\": \"2020-12-21T18:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 0,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 189071,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 8428160,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"ColinXYZ\",\n \"Description\": null,\n \"StartTime\": \"2020-12-22T05:00:37Z\",\n \"EndTime\": \"2020-12-22T06:00:37Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 0,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 189014,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"ColinXYZ\",\n \"Description\": null,\n \"StartTime\": \"2020-12-15T03:00:00Z\",\n \"EndTime\": \"2020-12-15T04:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 0,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 188101,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"ColinXYZ\",\n \"Description\": null,\n \"StartTime\": \"2020-12-13T23:00:00Z\",\n \"EndTime\": \"2020-12-14T00:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 0,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 184466,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG Lesson 7 Semester 4\",\n \"Description\": null,\n \"StartTime\": \"2020-12-16T02:00:00Z\",\n \"EndTime\": \"2020-12-16T03:30:00Z\",\n \"AttendeeCount\": 17,\n \"State\": 0,\n \"Accessibility\": 0,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 184455,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG Lesson 6 Semester 4\",\n \"Description\": null,\n \"StartTime\": \"2020-12-10T02:00:00Z\",\n \"EndTime\": \"2020-12-10T03:30:00Z\",\n \"AttendeeCount\": 18,\n \"State\": 0,\n \"Accessibility\": 0,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 177098,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": \"e63dcbffe8d14a7696bea7117dc3dd28.jpg\",\n \"RoomId\": 10916706,\n \"SubRoomId\": 11195660,\n \"ClubId\": null,\n \"Name\": \"Building a Better Room Using Trigonometry\",\n \"Description\": \"\",\n \"StartTime\": \"2020-11-29T22:00:00Z\",\n \"EndTime\": \"2020-11-29T22:45:00Z\",\n \"AttendeeCount\": 44,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 176824,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG Lesson 5 Semester 4\",\n \"Description\": \"\",\n \"StartTime\": \"2020-12-08T02:00:00Z\",\n \"EndTime\": \"2020-12-08T03:30:00Z\",\n \"AttendeeCount\": 24,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 176823,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG Lesson 1 & 2 Make-Up\",\n \"Description\": \"\",\n \"StartTime\": \"2020-11-30T02:00:00Z\",\n \"EndTime\": \"2020-11-30T03:30:00Z\",\n \"AttendeeCount\": 10,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 174281,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG Lesson 4 Semester 4\",\n \"Description\": \"\",\n \"StartTime\": \"2020-12-03T02:00:00Z\",\n \"EndTime\": \"2020-12-03T03:30:00Z\",\n \"AttendeeCount\": 27,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 174279,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG Lesson 3 Semester 4\",\n \"Description\": \"\",\n \"StartTime\": \"2020-12-01T02:00:00Z\",\n \"EndTime\": \"2020-12-01T03:30:00Z\",\n \"AttendeeCount\": 26,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 174278,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG Lesson 2 Semester 4\",\n \"Description\": \"\",\n \"StartTime\": \"2020-11-26T02:00:00Z\",\n \"EndTime\": \"2020-11-26T03:30:00Z\",\n \"AttendeeCount\": 25,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 174277,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG Lesson 1 Semester 4\",\n \"Description\": null,\n \"StartTime\": \"2020-11-24T02:00:00Z\",\n \"EndTime\": \"2020-11-24T03:30:00Z\",\n \"AttendeeCount\": 24,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 168956,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": \"9d49fcca78be49608a61e9593ea52113.jpg\",\n \"RoomId\": 9410928,\n \"SubRoomId\": 9653192,\n \"ClubId\": null,\n \"Name\": \"TMG GRADUATION\",\n \"Description\": null,\n \"StartTime\": \"2020-11-13T02:00:00Z\",\n \"EndTime\": \"2020-11-13T03:00:00Z\",\n \"AttendeeCount\": 5,\n \"State\": 0,\n \"Accessibility\": 0,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 155300,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG:S3 Lesson 9\",\n \"Description\": \"\",\n \"StartTime\": \"2020-10-25T01:30:00Z\",\n \"EndTime\": \"2020-10-25T03:00:00Z\",\n \"AttendeeCount\": 9,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 155299,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG:S3 Lesson 8\",\n \"Description\": \"\",\n \"StartTime\": \"2020-10-22T01:30:00Z\",\n \"EndTime\": \"2020-10-22T03:00:00Z\",\n \"AttendeeCount\": 8,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 155298,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG:S3 Lesson 7\",\n \"Description\": \"\",\n \"StartTime\": \"2020-10-20T01:30:00Z\",\n \"EndTime\": \"2020-10-20T03:00:00Z\",\n \"AttendeeCount\": 8,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 155297,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG:S3 Lesson 6\",\n \"Description\": \"\",\n \"StartTime\": \"2020-10-18T01:30:00Z\",\n \"EndTime\": \"2020-10-18T03:00:00Z\",\n \"AttendeeCount\": 11,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 155296,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG:S3 Lesson 5\",\n \"Description\": \"\",\n \"StartTime\": \"2020-10-15T01:30:00Z\",\n \"EndTime\": \"2020-10-15T03:00:00Z\",\n \"AttendeeCount\": 10,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 151915,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": \"4fbd06ac619b43eca730f01340f7372b.jpg\",\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG:S3 Class 2 Lesson 2\",\n \"Description\": \"\",\n \"StartTime\": \"2020-10-09T01:30:00Z\",\n \"EndTime\": \"2020-10-09T03:00:00Z\",\n \"AttendeeCount\": 7,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 151914,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG:S3 Class 1 Lesson 2\",\n \"Description\": \"\",\n \"StartTime\": \"2020-10-08T01:30:00Z\",\n \"EndTime\": \"2020-10-08T03:00:00Z\",\n \"AttendeeCount\": 10,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 151913,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG:S3 Class 2 Lesson 1\",\n \"Description\": \"\",\n \"StartTime\": \"2020-10-07T01:30:00Z\",\n \"EndTime\": \"2020-10-07T03:00:00Z\",\n \"AttendeeCount\": 7,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 151911,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG:S3 Class 1 Lesson 1\",\n \"Description\": null,\n \"StartTime\": \"2020-10-06T01:30:00Z\",\n \"EndTime\": \"2020-10-06T03:00:00Z\",\n \"AttendeeCount\": 10,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 147562,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 9410928,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG Semester 2 Graduation\",\n \"Description\": \"\",\n \"StartTime\": \"2020-09-30T01:00:00Z\",\n \"EndTime\": \"2020-09-30T02:00:00Z\",\n \"AttendeeCount\": 11,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 144820,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG CLASS 2 LESSON 9\",\n \"Description\": null,\n \"StartTime\": \"2020-09-21T01:00:00Z\",\n \"EndTime\": \"2020-09-21T02:30:00Z\",\n \"AttendeeCount\": 4,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 144819,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG CLASS 1 LESSON 9\",\n \"Description\": null,\n \"StartTime\": \"2020-09-20T01:00:00Z\",\n \"EndTime\": \"2020-09-20T02:30:00Z\",\n \"AttendeeCount\": 4,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 144817,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG CLASS 2 LESSON 8\",\n \"Description\": \"\",\n \"StartTime\": \"2020-09-18T01:00:00Z\",\n \"EndTime\": \"2020-09-18T02:30:00Z\",\n \"AttendeeCount\": 5,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 144816,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG CLASS 1 LESSON 8\",\n \"Description\": \"\",\n \"StartTime\": \"2020-09-17T01:00:00Z\",\n \"EndTime\": \"2020-09-17T02:30:00Z\",\n \"AttendeeCount\": 4,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 144814,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TMG CLASS 2 LESSON 7\",\n \"Description\": \"\",\n \"StartTime\": \"2020-09-16T01:00:00Z\",\n \"EndTime\": \"2020-09-16T02:30:00Z\",\n \"AttendeeCount\": 5,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Event Search",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1/search?query={Search_Query}",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1",
+ "search"
+ ],
+ "query": [
+ {
+ "key": "query",
+ "value": "{Search_Query}"
+ }
+ ]
+ },
+ "description": "This takes a search query as a query parameter, and returns an array of all the event objects that are most relevant to the search query."
+ },
+ "response": [
+ {
+ "name": "Event Search",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1/search?query=EscapeTheDungeon",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1",
+ "search"
+ ],
+ "query": [
+ {
+ "key": "query",
+ "value": "EscapeTheDungeon"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:41:36 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "122"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[]"
+ }
+ ]
+ },
+ {
+ "name": "Events Happening in a Room",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1/room/:roomId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1",
+ "room",
+ ":roomId"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes a room ID as a path parameter, and returns an array of all the event objects that have the room ID as it's `RoomId` property."
+ },
+ "response": [
+ {
+ "name": "Events Happening in a Room",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1/room/:roomId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1",
+ "room",
+ ":roomId"
+ ],
+ "variable": [
+ {
+ "key": "roomId",
+ "value": "170134"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:42:10 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "6354"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"PlayerEventId\": 1205015,\n \"CreatorPlayerId\": 31066082,\n \"ImageName\": \"8153wq8mqcxx4nsu4dpz3urqv.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Win for any gift!!!\",\n \"Description\": \"You have a chance to win anything you want!!!!!\",\n \"StartTime\": \"2022-05-31T20:50:54.114028Z\",\n \"EndTime\": \"2022-05-31T21:20:54.114028Z\",\n \"AttendeeCount\": 4,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204684,\n \"CreatorPlayerId\": 9487768,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Golden Trophy S rank\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T18:05:00Z\",\n \"EndTime\": \"2022-05-31T19:05:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204455,\n \"CreatorPlayerId\": 68487576,\n \"ImageName\": \"639sazq0c785wkqhu2qla0s7o.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Golden trophy speedrun\",\n \"Description\": \"Only join if sweat\",\n \"StartTime\": \"2022-05-31T16:30:49.999206Z\",\n \"EndTime\": \"2022-05-31T17:00:49.999206Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204395,\n \"CreatorPlayerId\": 61396789,\n \"ImageName\": \"9eftmxnh4p9is15v2om26572y.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Pls help me beat golden trophy\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-31T15:55:32.257695Z\",\n \"EndTime\": \"2022-05-31T17:20:32.257695Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1204072,\n \"CreatorPlayerId\": 69532610,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": 31199696,\n \"Name\": \"^GoldenTrophy\",\n \"Description\": \"\",\n \"StartTime\": \"2022-06-24T18:30:00Z\",\n \"EndTime\": \"2022-06-24T20:05:00Z\",\n \"AttendeeCount\": 10,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1203955,\n \"CreatorPlayerId\": 25347386,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Carry\",\n \"Description\": \"ok\",\n \"StartTime\": \"2022-05-31T08:30:00Z\",\n \"EndTime\": \"2022-05-31T09:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1203818,\n \"CreatorPlayerId\": 71587603,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Cluer Of GoldenTrophy\",\n \"Description\": \"Cluer of GoldenTrophy is the same exact rule so have fun and if you win then friend me. Username @Coaccch. Display Name @#Coach. I found a winner for the last game from The Reality Of GoldenTrophy. That winner is... ToxicQueen. Her display name. I will make you a room where there is a button of Free Gifts. So, if you guys want that free gifts. Make sure to win. Another winner from The Reality Of GoldenTrophy is BobbyTheCreater. I will friend you and accept it for free gifts. Make sure to have fun and win.\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-05-31T21:30:00Z\",\n \"AttendeeCount\": 21,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1202923,\n \"CreatorPlayerId\": 71587603,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": 60084664,\n \"Name\": \"The Quest For The GoldenTrophy\",\n \"Description\": \"Thr Quest For The GoldenTrophy is the same rule over an$ over again bit adding 1 more thing. You have to kill 30 zombies or killers in Act 1-2 and 3. It is going to be a little tricky so its ok if you die in the middle or you need reviving.\",\n \"StartTime\": \"2022-06-01T21:00:00Z\",\n \"EndTime\": \"2022-06-01T22:55:00Z\",\n \"AttendeeCount\": 19,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1202912,\n \"CreatorPlayerId\": 71587603,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"The Life Of GoldenTrophy\",\n \"Description\": \"It is the same rule over and over again. So, have fun in RecRoom playing this awesome event for GoldenTrophy. The Quest.\",\n \"StartTime\": \"2022-05-31T21:00:00Z\",\n \"EndTime\": \"2022-05-31T22:55:00Z\",\n \"AttendeeCount\": 29,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1202398,\n \"CreatorPlayerId\": 38738821,\n \"ImageName\": \"9w3ag6ov4t25nu9dt4qyq8uju.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"all quest\",\n \"Description\": \"join\",\n \"StartTime\": \"2022-05-30T17:15:00Z\",\n \"EndTime\": \"2022-05-30T17:45:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1202373,\n \"CreatorPlayerId\": 4008733,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"grind golden\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-30T17:10:00Z\",\n \"EndTime\": \"2022-05-30T18:40:00Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1202225,\n \"CreatorPlayerId\": 1845566,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"free carries!\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-30T16:10:00Z\",\n \"EndTime\": \"2022-05-30T17:45:00Z\",\n \"AttendeeCount\": 5,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1202015,\n \"CreatorPlayerId\": 64876231,\n \"ImageName\": \"9wmb0qdwk02jgwttev4869mhu.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"help me. s rank golding\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-30T15:05:18.0049956Z\",\n \"EndTime\": \"2022-05-30T15:35:18.0049956Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1201925,\n \"CreatorPlayerId\": 19308344,\n \"ImageName\": \"8dbeqkw2d6lhbslsahfs04hg0.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Golden trophy tryhards only.\",\n \"Description\": \"Grind golden trophy\",\n \"StartTime\": \"2022-06-30T14:00:00Z\",\n \"EndTime\": \"2022-06-30T17:30:00Z\",\n \"AttendeeCount\": 7,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1201848,\n \"CreatorPlayerId\": 59916074,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Gold Trophy Farm\",\n \"Description\": \"Looking for S ranks\",\n \"StartTime\": \"2022-05-30T13:15:00Z\",\n \"EndTime\": \"2022-05-30T15:45:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1201666,\n \"CreatorPlayerId\": 71587603,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"The Mighty GoldenTrophy\",\n \"Description\": \"The Mighty GoldenTrophy is the same rule over and over again but with I more rule. That Rule is you will have to kill 20 zombies or killers in Act1 and 2. Play and you know, have a Rec Event Fun.\",\n \"StartTime\": \"2022-05-30T21:00:00Z\",\n \"EndTime\": \"2022-05-30T22:55:00Z\",\n \"AttendeeCount\": 29,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1201662,\n \"CreatorPlayerId\": 71587603,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"The Reality Of GoldenTrophy\",\n \"Description\": \"The Reality Of GoldenTrophy is the same rule ove4 and over again\",\n \"StartTime\": \"2022-05-30T21:00:00Z\",\n \"EndTime\": \"2022-05-30T21:55:00Z\",\n \"AttendeeCount\": 21,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1201661,\n \"CreatorPlayerId\": 958267,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"GT S Rank carry\",\n \"Description\": \"join :)\",\n \"StartTime\": \"2022-05-30T10:30:00Z\",\n \"EndTime\": \"2022-05-30T12:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1201649,\n \"CreatorPlayerId\": 25347386,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"carry S rank\",\n \"Description\": \"xd\",\n \"StartTime\": \"2022-05-30T10:20:00Z\",\n \"EndTime\": \"2022-05-30T10:50:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1201576,\n \"CreatorPlayerId\": 8697274,\n \"ImageName\": \"23vdjm9wv3akd3pvw5m40050o.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"GoldenTrophypro 2\",\n \"Description\": \"Hello\",\n \"StartTime\": \"2022-05-30T08:55:51.974175Z\",\n \"EndTime\": \"2022-05-30T12:45:51.974175Z\",\n \"AttendeeCount\": 5,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1201416,\n \"CreatorPlayerId\": 71587603,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"The Hyper Of GoldenTrophy\",\n \"Description\": \"The Hyper Of GoldenTrophy is a cool event. So, I heard people are mad of them winning awards but didnt get prize. Well, this is because the Co-Owner, Moderator and Me the Owner were discussing an event to start off. So, it usually takes a little while to do the prize. But, the prizing. We will friend the person who won our event and text him that the present is ready to be sent. Anyways, It is the same rule over and over again but instead of doing 10 kills in act 1, we will grow and do 11 kills in Act 1.\",\n \"StartTime\": \"2022-05-30T06:00:00Z\",\n \"EndTime\": \"2022-05-30T09:15:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1200568,\n \"CreatorPlayerId\": 17540843,\n \"ImageName\": \"6w8vg1ezpmtnul34e3al0f4w6.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"A rank\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-29T21:55:18.396228Z\",\n \"EndTime\": \"2022-05-29T22:25:18.396228Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1199875,\n \"CreatorPlayerId\": 35918624,\n \"ImageName\": \"9bea21mn0u1m7p2qfk6aaa4ti.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"I need s rank\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-29T16:35:00Z\",\n \"EndTime\": \"2022-05-29T17:05:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1199840,\n \"CreatorPlayerId\": 18633052,\n \"ImageName\": \"20ul84virgnd06nckwttcjw8b.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"help me with golden trophy\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-29T16:25:00Z\",\n \"EndTime\": \"2022-05-29T17:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1199701,\n \"CreatorPlayerId\": 67450020,\n \"ImageName\": \"ezstv4g6gjk0gwpc7irydjpw8.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"carry me plz\",\n \"Description\": \"carry plz\",\n \"StartTime\": \"2022-05-29T15:25:00Z\",\n \"EndTime\": \"2022-05-29T17:55:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1199433,\n \"CreatorPlayerId\": 10058414,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Going for s+ lvl 30+\",\n \"Description\": \"Need good players\",\n \"StartTime\": \"2022-05-29T12:15:00Z\",\n \"EndTime\": \"2022-05-29T14:45:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1199362,\n \"CreatorPlayerId\": 51602900,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"GRIND GOLDEN TROPHY PROS ONLY\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-29T11:20:48.134362Z\",\n \"EndTime\": \"2022-05-29T11:50:48.134362Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1199306,\n \"CreatorPlayerId\": 71587603,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"The Rise of GoldenTrophy\",\n \"Description\": \"The Rise Of GoldenTrophy is the coolest event. Its the same rule over and over again but. This is a challenge one but possible. You are going to have to kill 10 zombies or killers in Act1 without dying or getting revived.\",\n \"StartTime\": \"2022-05-29T21:00:00Z\",\n \"EndTime\": \"2022-05-29T21:55:00Z\",\n \"AttendeeCount\": 25,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1199297,\n \"CreatorPlayerId\": 67374415,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"The quest tournament \",\n \"Description\": \"Time for quests\",\n \"StartTime\": \"2022-05-29T11:00:00Z\",\n \"EndTime\": \"2022-05-29T12:00:00Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n },\n {\n \"PlayerEventId\": 1199293,\n \"CreatorPlayerId\": 8697274,\n \"ImageName\": \"9ru70tgfu0cfx5pcdresmer7b.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"GoldenTrophy pro\",\n \"Description\": \"Hello\",\n \"StartTime\": \"2022-05-29T10:55:00Z\",\n \"EndTime\": \"2022-05-29T13:50:00Z\",\n \"AttendeeCount\": 5,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1199208,\n \"CreatorPlayerId\": 59709665,\n \"ImageName\": \"46j1xfm8wd8aknrxuwxxoz2aj.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": 60217461,\n \"Name\": \"GoldenTrophy\",\n \"Description\": \"Lets Play!\",\n \"StartTime\": \"2021-05-29T10:45:00Z\",\n \"EndTime\": \"2021-05-29T13:50:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1198930,\n \"CreatorPlayerId\": 60105084,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"gold\",\n \"Description\": \"ill be helping to grid\",\n \"StartTime\": \"2022-05-29T17:20:00Z\",\n \"EndTime\": \"2022-05-29T19:50:00Z\",\n \"AttendeeCount\": 42,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1198755,\n \"CreatorPlayerId\": 48018578,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Carry in GT\",\n \"Description\": \"I carry u :)\",\n \"StartTime\": \"2022-05-29T03:20:00Z\",\n \"EndTime\": \"2022-05-29T06:50:00Z\",\n \"AttendeeCount\": 5,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1198457,\n \"CreatorPlayerId\": 35698818,\n \"ImageName\": \"e0x04l5j336a4dyc7yvztgf3g.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"S rank gt\",\n \"Description\": \"Idk\",\n \"StartTime\": \"2022-05-28T23:35:00Z\",\n \"EndTime\": \"2022-05-29T00:05:00Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1198368,\n \"CreatorPlayerId\": 36146495,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": 38694824,\n \"Name\": \"Golden trophy carry\",\n \"Description\": \"attentipn! @spaceyboi5433 will ne carrying a few of u in gt u MIGHT be able to join !!!\",\n \"StartTime\": \"2022-06-01T22:30:00Z\",\n \"EndTime\": \"2022-06-02T02:00:00Z\",\n \"AttendeeCount\": 53,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1198264,\n \"CreatorPlayerId\": 45990977,\n \"ImageName\": \"4a27v92qsooxdkiweshvb4rby.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Golden Trophy Runs!\",\n \"Description\": \"Im trying to get to 100 GT wins!\",\n \"StartTime\": \"2022-05-29T12:00:00Z\",\n \"EndTime\": \"2022-05-29T13:45:00Z\",\n \"AttendeeCount\": 9,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1198177,\n \"CreatorPlayerId\": 22136986,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Gt carry\",\n \"Description\": \"Gt carry\",\n \"StartTime\": \"2022-05-31T19:40:00Z\",\n \"EndTime\": \"2022-05-31T20:40:00Z\",\n \"AttendeeCount\": 21,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1197998,\n \"CreatorPlayerId\": 25062248,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"carry people in golden tro\",\n \"Description\": \"i help you\",\n \"StartTime\": \"2022-05-28T20:45:00Z\",\n \"EndTime\": \"2022-05-28T21:40:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1197513,\n \"CreatorPlayerId\": 29398630,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Getting S\",\n \"Description\": \"G\",\n \"StartTime\": \"2022-05-28T16:45:15.803579Z\",\n \"EndTime\": \"2022-05-28T17:15:15.803579Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1197047,\n \"CreatorPlayerId\": 43300345,\n \"ImageName\": \"9d3uyidiqbdcfvbcgpuuko99u.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"try to beat gt with me robbly\",\n \"Description\": \"just golden trophy\",\n \"StartTime\": \"2022-05-28T12:40:00Z\",\n \"EndTime\": \"2022-05-28T13:40:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1196931,\n \"CreatorPlayerId\": 15030672,\n \"ImageName\": \"d8ext4z7gs5riij7449bjzt4j.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"German trophy\",\n \"Description\": \"Wenn du Deutsch bist komm gerne rein\",\n \"StartTime\": \"2022-05-28T10:45:00Z\",\n \"EndTime\": \"2022-05-28T11:15:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1196825,\n \"CreatorPlayerId\": 17915130,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Need A rank in golden\",\n \"Description\": \"Need 125-150k for a\",\n \"StartTime\": \"2022-05-28T08:50:00Z\",\n \"EndTime\": \"2022-05-28T09:20:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1196800,\n \"CreatorPlayerId\": 46089271,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Death\",\n \"Description\": \"Goblin\",\n \"StartTime\": \"2022-05-30T23:25:00Z\",\n \"EndTime\": \"2022-05-31T00:55:00Z\",\n \"AttendeeCount\": 34,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1196787,\n \"CreatorPlayerId\": 26608500,\n \"ImageName\": \"6izo6x352o4hxmkji5qhdcl7r.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Completeing golden trophy help\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-29T07:45:00Z\",\n \"EndTime\": \"2022-05-29T08:15:00Z\",\n \"AttendeeCount\": 17,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1196392,\n \"CreatorPlayerId\": 49299474,\n \"ImageName\": \"11u8yysg8gj9dpual16pvnmv5.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"ill carry you for heat or celtics tshirt\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-28T02:05:00Z\",\n \"EndTime\": \"2022-05-28T03:35:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1196310,\n \"CreatorPlayerId\": 19873433,\n \"ImageName\": \"59gqzx82vmw4d5nghl1dc257x.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"idk\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-28T01:35:53.078115Z\",\n \"EndTime\": \"2022-05-28T02:05:53.078115Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1196168,\n \"CreatorPlayerId\": 71587603,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": 60084664,\n \"Name\": \"MysteryOfGoldenTrophy.Part2\",\n \"Description\": \"This is a new Golden Trophy event. I heard lots of people were sad because they didnt win last Golden Trophy event so, I decided to make a Part 234 or 5. It is the same rules on the other. It is just another Part. But I more rule adding. Rule3: In Act1, dont die in first try. If you didnt its okay.\",\n \"StartTime\": \"2022-05-28T00:20:00Z\",\n \"EndTime\": \"2022-05-28T00:50:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1195808,\n \"CreatorPlayerId\": 46403747,\n \"ImageName\": \"3frwf951u4eiuk6709od79koj.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"GoldenTrophy Quest\",\n \"Description\": \"Need Wins\",\n \"StartTime\": \"2022-05-27T21:10:00Z\",\n \"EndTime\": \"2022-05-28T00:15:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1195775,\n \"CreatorPlayerId\": 2772189,\n \"ImageName\": \"defjgjhawxb0ma17thrk8jzks.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"golden trophy funnies\",\n \"Description\": \"have fun in golden trophy\",\n \"StartTime\": \"2022-05-27T21:15:17.77351Z\",\n \"EndTime\": \"2022-05-27T21:45:17.77351Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1195593,\n \"CreatorPlayerId\": 10447776,\n \"ImageName\": \"bkkxsgawx803zbtihz5o12u2s.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Golden Trophy\",\n \"Description\": \"YAAA\",\n \"StartTime\": \"2022-05-27T19:40:27.095912Z\",\n \"EndTime\": \"2022-05-27T20:10:27.095912Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1194898,\n \"CreatorPlayerId\": 71587603,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"TheMysterOfGoldenTrophy\",\n \"Description\": \"This is an event when you have to play GoldenTrophy and get an award. So, you guys have to get 5000 gold when you make it to Act 5. If you didnt, then your gonna have to start over and over until you do.\",\n \"StartTime\": \"2022-05-27T23:00:00Z\",\n \"EndTime\": \"2022-05-27T23:55:00Z\",\n \"AttendeeCount\": 37,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1194827,\n \"CreatorPlayerId\": 25347386,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"carry for A to S rank\",\n \"Description\": \"At least A rank\",\n \"StartTime\": \"2022-05-27T10:30:00Z\",\n \"EndTime\": \"2022-05-27T11:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1194823,\n \"CreatorPlayerId\": 71747552,\n \"ImageName\": \"8x07edkgph74xzzdbzbw5yszc.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Say goodbye Eggman\",\n \"Description\": \"Lol\",\n \"StartTime\": \"2022-05-27T10:40:42.139803Z\",\n \"EndTime\": \"2022-05-27T11:10:42.139803Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1194753,\n \"CreatorPlayerId\": 70168550,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"i need hlep beat goldentrophy\",\n \"Description\": \"\",\n \"StartTime\": \"2022-08-22T07:35:00Z\",\n \"EndTime\": \"2022-08-22T08:05:00Z\",\n \"AttendeeCount\": 44,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1194281,\n \"CreatorPlayerId\": 46403747,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"NUTSHELL\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-27T00:55:00Z\",\n \"EndTime\": \"2022-05-27T04:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1193526,\n \"CreatorPlayerId\": 53835852,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Help grind golden trophy\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-26T19:55:00Z\",\n \"EndTime\": \"2022-05-26T20:25:00Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1193125,\n \"CreatorPlayerId\": 52189074,\n \"ImageName\": \"dehqltqip24s2od1h2x0pnjrh.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"GoldentrophyArmor\",\n \"Description\": \"We need gods here\",\n \"StartTime\": \"2022-05-26T15:35:27.771483Z\",\n \"EndTime\": \"2022-05-26T17:55:27.771483Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1192977,\n \"CreatorPlayerId\": 46403747,\n \"ImageName\": \"3ztsyuhf9nhjn4utkqpqajrph.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"GoldenTrophy Tryhard\",\n \"Description\": \"We need 10 wins in 1 day !!!\",\n \"StartTime\": \"2022-05-26T13:15:00Z\",\n \"EndTime\": \"2022-05-26T16:30:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1192891,\n \"CreatorPlayerId\": 40689603,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"Level 40+ No Junior Accs :))\",\n \"Description\": \"Wowowowo\",\n \"StartTime\": \"2022-05-26T11:35:00Z\",\n \"EndTime\": \"2022-05-26T13:05:00Z\",\n \"AttendeeCount\": 2,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1192828,\n \"CreatorPlayerId\": 25347386,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"carry\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-26T09:45:00Z\",\n \"EndTime\": \"2022-05-26T10:15:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1192369,\n \"CreatorPlayerId\": 34044282,\n \"ImageName\": \"brv9wbguqvramm3wdyuq9nkhu.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"I need help to win golden trophy\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-26T00:55:38.241793Z\",\n \"EndTime\": \"2022-05-26T01:25:38.241793Z\",\n \"AttendeeCount\": 3,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1192328,\n \"CreatorPlayerId\": 69482878,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"COME HELP ME\",\n \"Description\": \"please\",\n \"StartTime\": \"2022-05-27T18:30:00Z\",\n \"EndTime\": \"2022-05-27T19:00:00Z\",\n \"AttendeeCount\": 35,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1192158,\n \"CreatorPlayerId\": 59562209,\n \"ImageName\": null,\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"beating goldentrophy\",\n \"Description\": \"\",\n \"StartTime\": \"2022-05-25T23:05:22.150982Z\",\n \"EndTime\": \"2022-05-25T23:35:22.150982Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n },\n {\n \"PlayerEventId\": 1191690,\n \"CreatorPlayerId\": 66863635,\n \"ImageName\": \"97huj59k52pmhngr2jg28svgf.jpg\",\n \"RoomId\": 170134,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"goldentrophy\",\n \"Description\": \"\",\n \"StartTime\": \"2022-06-27T16:50:00Z\",\n \"EndTime\": \"2022-06-27T17:50:00Z\",\n \"AttendeeCount\": 70,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Bulk Event Information",
+ "request": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "type": "text",
+ "key": "Ids[]",
+ "value": ""
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1/bulk",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1",
+ "bulk"
+ ]
+ },
+ "description": "This returns an array of event objects whos IDs match the IDs that were passed in to the form body. The array is in reverse order of the way the IDs appear in the body."
+ },
+ "response": [
+ {
+ "name": "Bulk Event Information",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "type": "text",
+ "key": "Ids[]",
+ "value": "176824"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1/bulk",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1",
+ "bulk"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:43:45 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "397"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"PlayerEventId\": 176824,\n \"CreatorPlayerId\": 1827567,\n \"ImageName\": null,\n \"RoomId\": 6731585,\n \"SubRoomId\": 6887748,\n \"ClubId\": null,\n \"Name\": \"TMG Lesson 5 Semester 4\",\n \"Description\": \"\",\n \"StartTime\": \"2020-12-08T02:00:00Z\",\n \"EndTime\": \"2020-12-08T03:30:00Z\",\n \"AttendeeCount\": 24,\n \"State\": 0,\n \"Accessibility\": 2,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": true,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 0\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Create Event",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "RoomId",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "Name",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "Description",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "StartTime",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "EndTime",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "Accessibility",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v2",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v2"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Create Event",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "RoomId",
+ "value": "23570830",
+ "type": "text"
+ },
+ {
+ "key": "Name",
+ "value": "DUNGEONS Escape ROOM",
+ "type": "text"
+ },
+ {
+ "key": "Description",
+ "value": "Try and escape the DUNGEONS with upto 4 players! You have 15 minutes to complete this room - good luck!!",
+ "type": "text"
+ },
+ {
+ "key": "StartTime",
+ "value": "Fri, 03 Jun 2022 16:00:00 GMT",
+ "type": "text"
+ },
+ {
+ "key": "EndTime",
+ "value": "Fri, 03 Jun 2022 20:00:00 GMT",
+ "type": "text"
+ },
+ {
+ "key": "Accessibility",
+ "value": "1",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v2",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v2"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Fri, 03 Jun 2022 13:34:29 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "495"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Result\": 0,\n \"TagModifyResult\": null,\n \"PlayerEvent\": {\n \"PlayerEventId\": 1220545,\n \"CreatorPlayerId\": 10441985,\n \"ImageName\": null,\n \"RoomId\": 23570830,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \"DUNGEONS Escape ROOM\",\n \"Description\": \"Try and escape the DUNGEONS with upto 4 players! You have 15 minutes to complete this room - good luck!!\",\n \"StartTime\": \"2022-06-03T16:00:00Z\",\n \"EndTime\": \"2022-06-03T20:00:00Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n }\n}"
+ }
+ ]
+ },
+ {
+ "name": "Update Event",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "RoomId",
+ "value": " 23570830",
+ "type": "text"
+ },
+ {
+ "key": "Name",
+ "value": " DUNGEONS Escape ROOM",
+ "type": "text"
+ },
+ {
+ "key": "Description",
+ "value": " Try and escape the DUNGEONS with upto 4 players! You have 15 minutes to complete this room - good luck!!",
+ "type": "text"
+ },
+ {
+ "key": "StartTime",
+ "value": " Sat, 04 Jun 2022 17:59:59 GMT",
+ "type": "text"
+ },
+ {
+ "key": "EndTime",
+ "value": " Sat, 04 Jun 2022 21:59:59 GMT",
+ "type": "text"
+ },
+ {
+ "key": "Accessibility",
+ "value": " 1",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v2/:eventId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v2",
+ ":eventId"
+ ],
+ "variable": [
+ {
+ "key": "eventId",
+ "value": "1220825"
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Update Event",
+ "originalRequest": {
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "RoomId",
+ "value": " 23570830",
+ "type": "text"
+ },
+ {
+ "key": "Name",
+ "value": " DUNGEONS Escape ROOM",
+ "type": "text"
+ },
+ {
+ "key": "Description",
+ "value": " Try and escape the DUNGEONS with upto 4 players! You have 15 minutes to complete this room - good luck!!",
+ "type": "text"
+ },
+ {
+ "key": "StartTime",
+ "value": " Sat, 04 Jun 2022 17:59:59 GMT",
+ "type": "text"
+ },
+ {
+ "key": "EndTime",
+ "value": " Sat, 04 Jun 2022 21:59:59 GMT",
+ "type": "text"
+ },
+ {
+ "key": "Accessibility",
+ "value": " 1",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v2/:eventId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v2",
+ ":eventId"
+ ],
+ "variable": [
+ {
+ "key": "eventId",
+ "value": "1220825"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Fri, 03 Jun 2022 16:42:56 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "496"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Result\": 0,\n \"TagModifyResult\": null,\n \"PlayerEvent\": {\n \"PlayerEventId\": 1220825,\n \"CreatorPlayerId\": 10441985,\n \"ImageName\": null,\n \"RoomId\": 23570830,\n \"SubRoomId\": null,\n \"ClubId\": null,\n \"Name\": \" DUNGEONS Escape ROOM\",\n \"Description\": \" Try and escape the DUNGEONS with upto 4 players! You have 15 minutes to complete this room - good luck!!\",\n \"StartTime\": \"2022-06-04T17:59:59Z\",\n \"EndTime\": \"2022-06-04T21:59:59Z\",\n \"AttendeeCount\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"IsMultiInstance\": false,\n \"SupportMultiInstanceRoomChat\": false,\n \"DefaultBroadcastPermissions\": 0,\n \"CanRequestBroadcastPermissions\": 2147483647\n }\n}"
+ }
+ ]
+ },
+ {
+ "name": "Invite Players to Event",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "PlayerEventId",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "InvitedPlayerIds[]",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "InvitedPlayerIds[]",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/playerevents/v1/bulkInvite",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "playerevents",
+ "v1",
+ "bulkInvite"
+ ]
+ }
+ },
+ "response": []
+ }
+ ],
+ "description": "This section contains all the endpoints that can be used to retrieve event information. More information on events and event information is given below.\n\n## Event Properties\n\n| Property | Type | Description |\n| --- | --- | --- |\n| Player Event ID | Int | Each event has a unique ID associated with it. event IDs are sequential which means that every time a new room is created, it's ID will be +1 of the previous event created. |\n| Creator Player ID | Int | This is the internal account ID of the player who made the event. For more information regarding account information look at the [Accounts](https://documenter.getpostman.com/view/13848200/TVt184DN#72845adf-0224-43a6-abda-7bff6fde3d03) section. |\n| Image Name | String | This is the file name of the event thumbnail, and it can be used to get a link to the image itself from this endpoint, `https://img.rec.net/:imageName`. If no event thumbnail is set, then this property will be null. |\n| Room ID | Int | This is the internal room ID of the room that the event will be in. For more information regarding room information look at the [Rooms](https://documenter.getpostman.com/view/13848200/TVt184DN#531b844c-5b15-4185-9bf7-d191a3cd3247) section. |\n| Subroom ID | Int | This is the subroom ID of the subroom the event will be in. If a room doesn't have subrooms, then this property will be null. |\n| Club ID | Int | This is the internal club ID that the event was created for. If an event is not associated with a club, then this value will be null. |\n| Event Name | String | This is the name of the event that was set by the player. |\n| Event Description | String | This is the description of the event. If no description was set, then this property will be null. |\n| Start Time | String | This is the time the event will start. |\n| End Time | String | This is the time the event will end. |\n| Attendee Count | Int | This is the number of people attending the event. |\n| Accessibility | Int | This property defines who is able to access the event. If this is equal to 1, then it's accessibility is set to public, and everyone can access it. If this is equal to 0, then it's accessibility is set to private, and only the event creator and invited players will be able to access it. If this is is equal to 2, then it's accessibility is set to unlisted, and only people with a link can access it. |"
+ },
+ {
+ "name": "Accounts",
+ "item": [
+ {
+ "name": "Player Information From ID",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://accounts.rec.net/account/:playerId",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ ":playerId"
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes an account ID as a path parameter, and returns an object that contains detailed information about a player."
+ },
+ "response": [
+ {
+ "name": "Player Information From ID",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://accounts.rec.net/account/:playerId",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ ":playerId"
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": "10441985"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:47:47 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "TiPMix=18.472327757032925; path=/; HttpOnly; Domain=accounts.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "x-ms-routing-name=self; path=/; HttpOnly; Domain=accounts.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:116041ce-dd8a-41ea-8384-4adadf87ad13"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"accountId\": 10441985,\n \"username\": \"jordanparki7\",\n \"displayName\": \"jordanparki7\",\n \"profileImage\": \"8d6be5b6c5684b47989a165c069ebb95.jpg\",\n \"isJunior\": false,\n \"platforms\": 3,\n \"personalPronouns\": 0,\n \"identityFlags\": 0,\n \"createdAt\": \"2020-12-25T19:07:36.572242Z\"\n}"
+ }
+ ]
+ },
+ {
+ "name": "Player Information From Username",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://accounts.rec.net/account?username={Player_Username}",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account"
+ ],
+ "query": [
+ {
+ "key": "username",
+ "value": "{Player_Username}"
+ }
+ ]
+ },
+ "description": "This takes a username as a query parameter, and returns an object that contains detailed information about a player."
+ },
+ "response": [
+ {
+ "name": "Player Information From Username",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://accounts.rec.net/account?username=jordanparki7",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account"
+ ],
+ "query": [
+ {
+ "key": "username",
+ "value": "jordanparki7"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:48:22 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:116041ce-dd8a-41ea-8384-4adadf87ad13"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"accountId\": 10441985,\n \"username\": \"jordanparki7\",\n \"displayName\": \"jordanparki7\",\n \"profileImage\": \"8d6be5b6c5684b47989a165c069ebb95.jpg\",\n \"isJunior\": false,\n \"platforms\": 3,\n \"personalPronouns\": 0,\n \"identityFlags\": 0,\n \"createdAt\": \"2020-12-25T19:07:36.572242Z\"\n}"
+ }
+ ]
+ },
+ {
+ "name": "Player Bio",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://accounts.rec.net/account/:playerId/bio",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ ":playerId",
+ "bio"
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": ""
+ }
+ ]
+ },
+ "description": "This takes an account ID as a path parameter, and returns an object that has `AccountID` and `Bio` properties. The `Bio` property is the bio that is associated with the account ID."
+ },
+ "response": [
+ {
+ "name": "Player Bio",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://accounts.rec.net/account/:playerId/bio",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ ":playerId",
+ "bio"
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": "10441985"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:48:51 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:116041ce-dd8a-41ea-8384-4adadf87ad13"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"accountId\": 10441985,\n \"bio\": \"Never gonna run around and desert you\"\n}"
+ }
+ ]
+ },
+ {
+ "name": "Player Search",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://accounts.rec.net/account/search?name={Search_Query}",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ "search"
+ ],
+ "query": [
+ {
+ "key": "name",
+ "value": "{Search_Query}"
+ }
+ ]
+ },
+ "description": "This takes a search query as a query parameter, and returns an array of all the account objects that are most relevant to the search query."
+ },
+ "response": [
+ {
+ "name": "Player Search",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://accounts.rec.net/account/search?name={Search_Query}",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ "search"
+ ],
+ "query": [
+ {
+ "key": "name",
+ "value": "{Search_Query}"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:49:24 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:116041ce-dd8a-41ea-8384-4adadf87ad13"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"accountId\": 10441985,\n \"username\": \"jordanparki7\",\n \"displayName\": \"jordanparki7\",\n \"profileImage\": \"8d6be5b6c5684b47989a165c069ebb95.jpg\",\n \"isJunior\": false,\n \"platforms\": 3,\n \"personalPronouns\": 0,\n \"identityFlags\": 0,\n \"createdAt\": \"2020-12-25T19:07:36.572242Z\"\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Bulk Player Information",
+ "request": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "type": "text",
+ "key": "id[]",
+ "value": ""
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://accounts.rec.net/account/bulk",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ "bulk"
+ ]
+ },
+ "description": "This returns an array of account objects whos IDs match the IDs that were passed in to the form body. The array is in reverse order of the way the IDs appear in the body."
+ },
+ "response": [
+ {
+ "name": "Bulk Player Information",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "type": "text",
+ "key": "id[]",
+ "value": "10441985"
+ },
+ {
+ "type": "text",
+ "key": "id[]",
+ "value": "271562"
+ },
+ {
+ "type": "text",
+ "key": "id[]",
+ "value": "53208"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://accounts.rec.net/account/bulk",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ "bulk"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:52:01 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:116041ce-dd8a-41ea-8384-4adadf87ad13"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"accountId\": 53208,\n \"username\": \"s_trunks\",\n \"displayName\": \"Trunks\",\n \"profileImage\": \"b561d4faa0a348beab63cdb7c962001d.jpg\",\n \"isJunior\": false,\n \"platforms\": 3,\n \"personalPronouns\": 0,\n \"identityFlags\": 0,\n \"createdAt\": \"2016-12-13T20:35:59.893Z\"\n },\n {\n \"accountId\": 271562,\n \"username\": \"Meriesa\",\n \"displayName\": \"Meriesa\",\n \"profileImage\": \"e9cmkx8qpgc0ci1mzkxp971i0.jpg\",\n \"bannerImage\": \"ab2bf8ecaef0414fbd76f1d056add2d1.jpg\",\n \"isJunior\": false,\n \"platforms\": 99,\n \"personalPronouns\": 5,\n \"identityFlags\": 0,\n \"createdAt\": \"2017-12-03T03:41:54.31Z\"\n },\n {\n \"accountId\": 10441985,\n \"username\": \"jordanparki7\",\n \"displayName\": \"jordanparki7\",\n \"profileImage\": \"8d6be5b6c5684b47989a165c069ebb95.jpg\",\n \"isJunior\": false,\n \"platforms\": 3,\n \"personalPronouns\": 0,\n \"identityFlags\": 0,\n \"createdAt\": \"2020-12-25T19:07:36.572242Z\"\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Change Nickname",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "formdata",
+ "formdata": [
+ {
+ "key": "displayName",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://accounts.rec.net/account/me/displayName",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ "me",
+ "displayName"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Change Nickname",
+ "originalRequest": {
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "formdata",
+ "formdata": [
+ {
+ "key": "displayName",
+ "value": "jordanparki7",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://accounts.rec.net/account/me/displayName",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ "me",
+ "displayName"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 10:09:52 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:116041ce-dd8a-41ea-8384-4adadf87ad13"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"success\": true\n}"
+ }
+ ]
+ },
+ {
+ "name": "Change Profile Pic",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "imageName",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://accounts.rec.net/account/me/profileimage",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ "me",
+ "profileimage"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Change Profile Pic",
+ "originalRequest": {
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "imageName",
+ "value": "3jbb0er97qfwg3k4f29ojjd33.jpg",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://accounts.rec.net/account/me/profileimage",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ "me",
+ "profileimage"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 10:44:54 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:116041ce-dd8a-41ea-8384-4adadf87ad13"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"success\": true\n}"
+ }
+ ]
+ },
+ {
+ "name": "Change Banner",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "imageName",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://accounts.rec.net/account/me/bannerimage",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ "me",
+ "bannerimage"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Change Banner",
+ "originalRequest": {
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "imageName",
+ "value": "3jbb0er97qfwg3k4f29ojjd33.jpg",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://accounts.rec.net/account/me/bannerimage",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ "me",
+ "bannerimage"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 10:44:54 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:116041ce-dd8a-41ea-8384-4adadf87ad13"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"success\": true\n}"
+ }
+ ]
+ },
+ {
+ "name": "Delete Account",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "DELETE",
+ "header": [],
+ "url": {
+ "raw": "https://accounts.rec.net/account/me",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ "me"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Delete Account",
+ "originalRequest": {
+ "method": "DELETE",
+ "header": [],
+ "url": {
+ "raw": "https://accounts.rec.net/account/me",
+ "protocol": "https",
+ "host": [
+ "accounts",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "account",
+ "me"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Sat, 03 Sep 2022 20:23:20 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:116041ce-dd8a-41ea-8384-4adadf87ad13"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"success\": true\n}"
+ }
+ ]
+ }
+ ],
+ "description": "This section contains all the endpoints that can be used to retrieve room information. Player/Account information isn't a part of `api.rec.net`, but is instead accessed through `accounts.rec.net`. More information on accounts and account information is given below.\n\n## Account Properties\n\n| Property | Type | Description |\n| --- | --- | --- |\n| Account ID | Int | Each account has a unique ID associated with it. Account IDs are sequential which means that every time a new account is created, it's ID will be +1 of the previously created account. |\n| Username | String | This is the unique name of the player. This is the name that is used in the URL of the account's RecNet page ( i.e `https://rec.net/user/:username` ). |\n| Display Name | String | This is what appears in bold above the username on an account's page on RecNet. The display name is not unique unlike the username. |\n| Profile Image | String | This is the file name of an accounts profile picture, and it can be used to get a link to the image itself from this endpoint, `https://img.rec.net/:imageName`. |\n| Banner Image | String | This is the file name of an account's banner image, and it can be used to get a link to the image itself from this endpoint, `https://img.rec.net/:imageName`. |\n| Junior Status | Boolean | This is true if the account is a junior account, false if the account is a non-junior account |\n| Platforms | Int | This is a number that is representative of the platforms that an account is associated with. |\n| Created At | String | This is the time of the account creation. |",
+ "auth": {
+ "type": "noauth"
+ },
+ "event": [
+ {
+ "listen": "prerequest",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ },
+ {
+ "listen": "test",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "name": "Relationships",
+ "item": [
+ {
+ "name": "Get All Relationships",
+ "protocolProfileBehavior": {
+ "disableBodyPruning": true
+ },
+ "request": {
+ "method": "GET",
+ "header": [],
+ "body": {
+ "mode": "formdata",
+ "formdata": []
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/relationships/v6/current/friends",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "relationships",
+ "v6",
+ "current",
+ "friends"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Get All Relationships",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "body": {
+ "mode": "formdata",
+ "formdata": []
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/relationships/v6/current/friends",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "relationships",
+ "v6",
+ "current",
+ "friends"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 01:10:25 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "1259"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"Id\": 252332466,\n \"PlayerID\": 13030696,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 263432507,\n \"PlayerID\": 15152171,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 264237217,\n \"PlayerID\": 8827670,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 271014906,\n \"PlayerID\": 2878467,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 294755735,\n \"PlayerID\": 11399269,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 294787005,\n \"PlayerID\": 6081289,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 294802031,\n \"PlayerID\": 8403249,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 294802429,\n \"PlayerID\": 17069772,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 294803731,\n \"PlayerID\": 16932577,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 294806852,\n \"PlayerID\": 12039323,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 294807741,\n \"PlayerID\": 3202051,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 296402639,\n \"PlayerID\": 13247021,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 296402679,\n \"PlayerID\": 14044349,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 296581851,\n \"PlayerID\": 8890148,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 311261632,\n \"PlayerID\": 18047180,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 356074185,\n \"PlayerID\": 20405876,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 357666471,\n \"PlayerID\": 9998701,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 358692828,\n \"PlayerID\": 18449807,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 359541426,\n \"PlayerID\": 20739788,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 359546095,\n \"PlayerID\": 18141590,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 359586346,\n \"PlayerID\": 18727663,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 360367654,\n \"PlayerID\": 877627,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 360368216,\n \"PlayerID\": 18803324,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 360369998,\n \"PlayerID\": 10181050,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 360390489,\n \"PlayerID\": 13459116,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 365388705,\n \"PlayerID\": 994021,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 366457195,\n \"PlayerID\": 20930141,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 366549560,\n \"PlayerID\": 8400955,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 368015454,\n \"PlayerID\": 11847793,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 370928728,\n \"PlayerID\": 12826590,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 398317302,\n \"PlayerID\": 22649424,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 429085448,\n \"PlayerID\": 25549506,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 440065225,\n \"PlayerID\": 26396268,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 442716305,\n \"PlayerID\": 5916589,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 442844382,\n \"PlayerID\": 126700,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 443716577,\n \"PlayerID\": 20577063,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 444736529,\n \"PlayerID\": 8314501,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 466602298,\n \"PlayerID\": 11805617,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 467461282,\n \"PlayerID\": 19268770,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 467467585,\n \"PlayerID\": 25324795,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 467474644,\n \"PlayerID\": 26929544,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 467474700,\n \"PlayerID\": 22138044,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 467474746,\n \"PlayerID\": 28734510,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 469272653,\n \"PlayerID\": 21234807,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 471468121,\n \"PlayerID\": 11256792,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 471546769,\n \"PlayerID\": 13217318,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 475419231,\n \"PlayerID\": 29565301,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 3,\n \"Ignored\": 0\n },\n {\n \"Id\": 475419369,\n \"PlayerID\": 29563053,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 3,\n \"Ignored\": 0\n },\n {\n \"Id\": 574911628,\n \"PlayerID\": 38581096,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 574919704,\n \"PlayerID\": 6454650,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 574975002,\n \"PlayerID\": 30133516,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 577394525,\n \"PlayerID\": 17357349,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 577511845,\n \"PlayerID\": 34612507,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 585130418,\n \"PlayerID\": 7917984,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 683268242,\n \"PlayerID\": 21321929,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 687696681,\n \"PlayerID\": 7660716,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 688844951,\n \"PlayerID\": 40345741,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 688858593,\n \"PlayerID\": 39059553,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 688858732,\n \"PlayerID\": 5272227,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 692630660,\n \"PlayerID\": 49946559,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 693210754,\n \"PlayerID\": 17596690,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 696897381,\n \"PlayerID\": 9392381,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 718062067,\n \"PlayerID\": 17460845,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n },\n {\n \"Id\": 758749584,\n \"PlayerID\": 1052593,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Relationship with Player",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/relationships/v1/relationshipwith/:playerId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "relationships",
+ "v1",
+ "relationshipwith",
+ ":playerId"
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Relationship with Player",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/relationships/v1/relationshipwith/:playerId",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "relationships",
+ "v1",
+ "relationshipwith",
+ ":playerId"
+ ],
+ "variable": [
+ {
+ "key": "playerId",
+ "value": "10441985"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Sat, 04 Jun 2022 10:47:40 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "203"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Id\": 910510319,\n \"PlayerID\": 10441985,\n \"RelationshipType\": 3,\n \"Favorited\": 1,\n \"Muted\": 0,\n \"Ignored\": 0\n}"
+ }
+ ]
+ },
+ {
+ "name": "Add Friend",
+ "request": {
+ "method": "POST",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/relationships/v3/:id",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "relationships",
+ "v3",
+ ":id"
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": ""
+ }
+ ]
+ },
+ "description": "Sends player with `ID` a friend request."
+ },
+ "response": [
+ {
+ "name": "Add Friend",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/relationships/v3/:id",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "relationships",
+ "v3",
+ ":id"
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": "1"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 00:21:21 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "189"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Id\": 904311919,\n \"PlayerID\": 1,\n \"RelationshipType\": 1,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n}"
+ }
+ ]
+ },
+ {
+ "name": "Remove Friend",
+ "request": {
+ "method": "DELETE",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/relationships/v3/:id",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "relationships",
+ "v3",
+ ":id"
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": "100"
+ }
+ ]
+ },
+ "description": "Removes player with `ID` as a friend / retracts friend request."
+ },
+ "response": [
+ {
+ "name": "Remove Friend",
+ "originalRequest": {
+ "method": "DELETE",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/relationships/v3/:id",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "relationships",
+ "v3",
+ ":id"
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": "100"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 00:24:02 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "192"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Id\": 904314383,\n \"PlayerID\": 100,\n \"RelationshipType\": 0,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n}"
+ }
+ ]
+ },
+ {
+ "name": "Favourite Friend",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/relationships/v1/favorite?id=",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "relationships",
+ "v1",
+ "favorite"
+ ],
+ "query": [
+ {
+ "key": "id",
+ "value": ""
+ }
+ ]
+ },
+ "description": "Sends player with `ID` a friend request."
+ },
+ "response": [
+ {
+ "name": "Favourite Friend",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/relationships/v1/favorite?id=15135233",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "relationships",
+ "v1",
+ "favorite"
+ ],
+ "query": [
+ {
+ "key": "id",
+ "value": "15135233"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 00:33:20 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "201"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Id\": 260877423,\n \"PlayerID\": 15135233,\n \"RelationshipType\": 3,\n \"Favorited\": 1,\n \"Muted\": 0,\n \"Ignored\": 0\n}"
+ }
+ ]
+ },
+ {
+ "name": "Unfavourite Friend",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/relationships/v1/unfavorite?id=",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "relationships",
+ "v1",
+ "unfavorite"
+ ],
+ "query": [
+ {
+ "key": "id",
+ "value": ""
+ }
+ ]
+ },
+ "description": "Sends player with `ID` a friend request."
+ },
+ "response": [
+ {
+ "name": "Unfavourite Friend",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/relationships/v1/unfavorite?id=15135233",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "relationships",
+ "v1",
+ "unfavorite"
+ ],
+ "query": [
+ {
+ "key": "id",
+ "value": "15135233"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 00:35:17 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "198"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Id\": 260877423,\n \"PlayerID\": 15135233,\n \"RelationshipType\": 3,\n \"Favorited\": 0,\n \"Muted\": 0,\n \"Ignored\": 0\n}"
+ }
+ ]
+ },
+ {
+ "name": "Cheer Player",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "CheerCategory",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "PlayerIdTo",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/PlayerCheer/v1/create",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "PlayerCheer",
+ "v1",
+ "create"
+ ]
+ },
+ "description": "Data to be sent is classified into categories as shown below:\n\n| **Value** | **Category** |\n| --- | --- |\n| 0 | General |\n| 10 | Helpful |\n| 20 | Sportmanship |\n| 30 | Great Host |\n| 40 | Creative |"
+ },
+ "response": [
+ {
+ "name": "Cheer Player",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "CheerCategory",
+ "value": "10",
+ "type": "text"
+ },
+ {
+ "key": "PlayerIdTo",
+ "value": "8770402",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/PlayerCheer/v1/create",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "PlayerCheer",
+ "v1",
+ "create"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Mon, 29 Aug 2022 16:13:52 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "148"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Success\": true,\n \"Message\": \"\"\n}"
+ }
+ ]
+ }
+ ],
+ "description": "Relationship API calls require authorization - you must use your BToken (check out [https://github.com/Jegarde/RecNet-Login)](https://github.com/Jegarde/RecNet-Login)R)\n\n## Relationship Reponses\n\n| **Property** | **Type** | **Description** |\n| --- | --- | --- |\n| Id | Int | Your ID. The ID of the player who is making the API request. |\n| PlayerID | Int | The target for the API request, who is being sent the request. |\n| RelationshipType | Int | 0 = None, 1 = Outgoing FR, 2 = Incoming FR, 3 = Friends |\n| Favorited | Boolean | If the player is favourited by the bearer. |\n| Muted | Boolean | If the player is muted by the bearer. |\n| Ignored | Boolean | If the player is ignored by the bearer. |",
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "event": [
+ {
+ "listen": "prerequest",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ },
+ {
+ "listen": "test",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "name": "Subscriptions",
+ "item": [
+ {
+ "name": "Subscriber Count",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/details/:id",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ "details",
+ ":id"
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Subscriber Count",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/details/:id",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ "details",
+ ":id"
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": "10441985"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:42e1aaa9-cdfd-4242-a7a2-5127ecc37da4"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ },
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:32:40 GMT"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"clubId\": 5396821,\n \"accountId\": 10441985,\n \"subscriberCount\": 58\n}"
+ }
+ ]
+ },
+ {
+ "name": "Send Announcement",
+ "request": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "formdata",
+ "formdata": [
+ {
+ "key": "title",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "body",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "meta",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "imageName",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://clubs.rec.net/announcements/club/:id",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "announcements",
+ "club",
+ ":id"
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": ""
+ }
+ ]
+ },
+ "description": "| **Value** | **Description** |\n| --- | --- |\n| id | Requester's personal \"club id\" - found from [https://clubs.rec.net/subscription/details/](https://clubs.rec.net/subscription/details/10441985)ID
|\n| title | Intended announcement title |\n| body | Intended announcement description |\n| meta | {\"Type\":1,\"JsonData\":\"{\\\\\"RoomId\\\\\":**_____**}\"} |\n| imageName | image name (eg. \"c3dfd748c00d4fa5bd7bf530d5cc066c.jpg\") |\n\n## Meta Properties\n\n| **Property** | **Values** |\n| --- | --- |\n| Type | 0 = \"Default Announcement\", 1 = Room Accouncement, 3 = Event |\n| Json Data | \"Room ID\", \"PlayerEventId\" |"
+ },
+ "response": [
+ {
+ "name": "Send Announcement",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "formdata",
+ "formdata": [
+ {
+ "key": "title",
+ "value": "This is a test",
+ "type": "text"
+ },
+ {
+ "key": "body",
+ "value": "Just a test",
+ "type": "text"
+ },
+ {
+ "key": "meta",
+ "value": "{\"Type\":1,\"JsonData\":\"{\\\"RoomId\\\":49145605}\"}",
+ "type": "text"
+ },
+ {
+ "key": "imageName",
+ "value": "452f74ba4d6e4ce291c161625dc141b4.jpg",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://clubs.rec.net/announcements/club/:id",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "announcements",
+ "club",
+ ":id"
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": "5396821"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:42e1aaa9-cdfd-4242-a7a2-5127ecc37da4"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ },
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:41:45 GMT"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"value\": 3526411,\n \"success\": true,\n \"errorId\": null,\n \"error\": null\n}"
+ }
+ ]
+ },
+ {
+ "name": "Subscription IDs",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/my/subscriptions",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ "my",
+ "subscriptions"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Subscription IDs",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/my/subscriptions",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ "my",
+ "subscriptions"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:42e1aaa9-cdfd-4242-a7a2-5127ecc37da4"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ },
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:51:42 GMT"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n 6326312,\n 1777950,\n 28157102,\n 11256792,\n 1563266,\n 1238930,\n 350028,\n 631285,\n 20524394,\n 758042\n]"
+ }
+ ]
+ },
+ {
+ "name": "Subscriber IDs",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/my/subscribers",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ "my",
+ "subscribers"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Subscriber IDs",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/my/subscribers",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ "my",
+ "subscribers"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:42e1aaa9-cdfd-4242-a7a2-5127ecc37da4"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ },
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:53:01 GMT"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n 67874883,\n 23500208,\n 36466609,\n 1091522,\n 28775862,\n 58100273,\n 55813731,\n 9392381,\n 17488710,\n 52983971,\n 49948663,\n 29161969,\n 2159387,\n 8108026,\n 42693292,\n 34855827,\n 30797637,\n 23067720,\n 29905785,\n 26552345,\n 29563053,\n 29198118,\n 28248795,\n 29182565,\n 14540945,\n 26501494,\n 11924171,\n 13217318,\n 20577063,\n 23923336,\n 24061707,\n 9229363,\n 20267359,\n 12631702,\n 14807748,\n 21006781,\n 17881400,\n 10952023,\n 19176671,\n 9018130,\n 13459116,\n 13543700,\n 18141590,\n 20771258,\n 20509813,\n 20591227,\n 20405876,\n 20572874,\n 18846286,\n 16932577,\n 16659865,\n 12059951,\n 15054739,\n 4330415,\n 10006490,\n 2738581,\n 6076176,\n 10452682\n]"
+ }
+ ]
+ },
+ {
+ "name": "Subscribe",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "POST",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/:id",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ ":id"
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Subscribe",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/:id",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ ":id"
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": "10441985"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:42e1aaa9-cdfd-4242-a7a2-5127ecc37da4"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ },
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 10:48:02 GMT"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"value\": 5396821,\n \"success\": true,\n \"errorId\": null,\n \"error\": null\n}"
+ }
+ ]
+ },
+ {
+ "name": "Unsubscribe",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "DELETE",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/:id",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ ":id"
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Unsubscribe",
+ "originalRequest": {
+ "method": "DELETE",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/:id",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ ":id"
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": "10441985"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:42e1aaa9-cdfd-4242-a7a2-5127ecc37da4"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ },
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 10:47:43 GMT"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"success\": true,\n \"errorId\": null,\n \"error\": null\n}"
+ }
+ ]
+ }
+ ],
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "event": [
+ {
+ "listen": "prerequest",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ },
+ {
+ "listen": "test",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "name": "Inventions",
+ "item": [
+ {
+ "name": "Current Featured Inventions",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/inventions/v1/featured",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "inventions",
+ "v1",
+ "featured"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Current Featured Inventions",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/inventions/v1/featured",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "inventions",
+ "v1",
+ "featured"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:58:57 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "7228"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"InventionId\": 8920824,\n \"ReplicationId\": \"1660dbe2-3620-4808-9bec-07919ddf6684\",\n \"CreatorPlayerId\": 334909,\n \"Name\": \"Playable Racing Game\",\n \"Description\": \"An retro inspired TV gaming set, where you dodge incoming projectiles by swerving through lanes!\",\n \"ImageName\": \"eemhowdnsntzn419cgkcku0ha.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 8920824,\n \"ReplicationId\": \"30a0ce22-a73a-48fe-b01e-0f7ed2dee7cc\",\n \"VersionNumber\": 1,\n \"BlobName\": \"3972knpg5abrp9f52rpejeaa0.inv\",\n \"BlobHash\": \"Z3IyJ7EJEO5PghRlEPoUMM1QMtRMTd5cUIvF9gns0SU=\",\n \"InstantiationCost\": 2585,\n \"LightsCost\": 0,\n \"ChipsCost\": 47,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:52:10.537Z\",\n \"CreatedAt\": \"2022-04-07T10:17:06.395Z\",\n \"FirstPublishedAt\": \"2022-04-07T11:15:38.961Z\",\n \"CreationRoomId\": 28659523,\n \"NumPlayersHaveUsedInRoom\": 218,\n \"NumDownloads\": 510,\n \"CheerCount\": 425,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 500,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9542827,\n \"ReplicationId\": \"533ff689-9bd3-43dc-9337-7f0ce79a07ca\",\n \"CreatorPlayerId\": 1876849,\n \"Name\": \"Money Gun\",\n \"Description\": \"$$$ make it rain $$$\",\n \"ImageName\": \"debdvwwdpkyen3dim7l2fqidd.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9542827,\n \"ReplicationId\": \"ceb1b077-0bf4-406f-a682-e11dbc82b557\",\n \"VersionNumber\": 1,\n \"BlobName\": \"ae8u942foq4zxvm1n68bicumm.inv\",\n \"BlobHash\": \"AndT13q74Fo3JNbxSim7CbojtmDOeUc07Ru580cR2FA=\",\n \"InstantiationCost\": 2831,\n \"LightsCost\": 0,\n \"ChipsCost\": 79,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:47:29.949Z\",\n \"CreatedAt\": \"2022-05-22T13:43:57.551Z\",\n \"FirstPublishedAt\": \"2022-05-22T14:23:17.892Z\",\n \"CreationRoomId\": 4045212,\n \"NumPlayersHaveUsedInRoom\": 407,\n \"NumDownloads\": 1401,\n \"CheerCount\": 398,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 250,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9600076,\n \"ReplicationId\": \"48f30e8c-99f1-47ef-818b-986b7bc1631f\",\n \"CreatorPlayerId\": 1819275,\n \"Name\": \"Rgb Gamer Dorm Floor\",\n \"Description\": \"This is a Rgb floor that you can spawn in your dorm.\",\n \"ImageName\": \"1ye13w4d9uyirnbod0wwlill8.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9600076,\n \"ReplicationId\": \"a3026261-d240-4ebc-b234-091c24cfeb45\",\n \"VersionNumber\": 1,\n \"BlobName\": \"arehthujq78ahw4lcbyfcwa9r.inv\",\n \"BlobHash\": \"un8KKH1WMs27HeJshnt2zHbbYUZGMEEBVL8MYLwqw6I=\",\n \"InstantiationCost\": 348,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T22:23:00.986Z\",\n \"CreatedAt\": \"2022-05-26T15:23:53.444Z\",\n \"FirstPublishedAt\": \"2022-05-26T15:40:33.72Z\",\n \"CreationRoomId\": 1512567,\n \"NumPlayersHaveUsedInRoom\": 27,\n \"NumDownloads\": 75,\n \"CheerCount\": 33,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 250,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9545998,\n \"ReplicationId\": \"a2bdde8f-373f-4864-b162-be01a426e8ab\",\n \"CreatorPlayerId\": 7981462,\n \"Name\": \"Sci-Fi Battle Axe\",\n \"Description\": \"Double bladed plasma axe\",\n \"ImageName\": \"86kh5k8mwyab4ftocngk5gwll.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9545998,\n \"ReplicationId\": \"78e5ce87-4a7e-4d35-b345-ddbbbc1220c2\",\n \"VersionNumber\": 1,\n \"BlobName\": \"cee9l5ju5oydi09k444bsn25d.inv\",\n \"BlobHash\": \"8TquPLxvmJXSdvo2ENVc7I5/jMMbNlwdEEjf7FZ799w=\",\n \"InstantiationCost\": 1200,\n \"LightsCost\": 1,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:47:39.835Z\",\n \"CreatedAt\": \"2022-05-22T17:08:18.462Z\",\n \"FirstPublishedAt\": \"2022-05-22T17:11:25.144Z\",\n \"CreationRoomId\": 9920725,\n \"NumPlayersHaveUsedInRoom\": 141,\n \"NumDownloads\": 501,\n \"CheerCount\": 212,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 250,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9500190,\n \"ReplicationId\": \"9f6cafa2-f3d1-4b6c-beda-810734fe951d\",\n \"CreatorPlayerId\": 9294927,\n \"Name\": \"Animated Rainbow Dragon Pet\",\n \"Description\": \"A beautiful rainbow idle animated dragon, waiting for its master to claim it! Will you be the dragon whisperer?\",\n \"ImageName\": \"6mxya1i3zyap4arnc06z6ffbk.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9500190,\n \"ReplicationId\": \"13a68714-c804-4094-8661-d33783dcc836\",\n \"VersionNumber\": 1,\n \"BlobName\": \"711cd3f2x7el4tj43v8nlnvu0.inv\",\n \"BlobHash\": \"CYcrsJP/BweEq6vDtL/EIIQIJ8Fj9lMUD3WZMBzM7XY=\",\n \"InstantiationCost\": 1382,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:37:00.602Z\",\n \"CreatedAt\": \"2022-05-19T21:07:22.61Z\",\n \"FirstPublishedAt\": \"2022-05-19T21:13:29.953Z\",\n \"CreationRoomId\": 62139227,\n \"NumPlayersHaveUsedInRoom\": 43,\n \"NumDownloads\": 139,\n \"CheerCount\": 196,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 250,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9591231,\n \"ReplicationId\": \"ba9309db-eaa7-42cf-a5aa-584e29fae8d5\",\n \"CreatorPlayerId\": 15615013,\n \"Name\": \"Working Neon Sniper\",\n \"Description\": \"Become an ultimate sniper! use the scifi neon laser to get great shots and look cool doing so!\",\n \"ImageName\": \"aka002slqrsm0rk5mifpww1lt.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9591231,\n \"ReplicationId\": \"af3d4d75-3861-40e8-9897-dbd1aa8100e5\",\n \"VersionNumber\": 1,\n \"BlobName\": \"aindrmf6wxpwe5a7vfsl9b61b.inv\",\n \"BlobHash\": \"/ENwN7J7pjZli09W7boPX0PFzCARc1mvnmCSup9Kzm8=\",\n \"InstantiationCost\": 3156,\n \"LightsCost\": 2,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:41:31.63Z\",\n \"CreatedAt\": \"2022-05-25T22:02:04.551Z\",\n \"FirstPublishedAt\": \"2022-05-25T22:03:44.7Z\",\n \"CreationRoomId\": 18531125,\n \"NumPlayersHaveUsedInRoom\": 72,\n \"NumDownloads\": 295,\n \"CheerCount\": 132,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 500,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9609087,\n \"ReplicationId\": \"00059454-dd68-4195-800f-c2a2f1a17e59\",\n \"CreatorPlayerId\": 1114627,\n \"Name\": \"Space Explorer Suit\",\n \"Description\": \"A detailed suit\",\n \"ImageName\": \"8av8w6htnl77433w5ex0hpq1k.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9609087,\n \"ReplicationId\": \"f5747819-de60-47a9-be3d-2ef387272e4b\",\n \"VersionNumber\": 1,\n \"BlobName\": \"27a3ti605z6vi08nj4exuo7wh.inv\",\n \"BlobHash\": \"+iYfpf3qT5RAllsA9XQUpPVkStruJhhPkzA5cw0GhvI=\",\n \"InstantiationCost\": 2288,\n \"LightsCost\": 0,\n \"ChipsCost\": 22,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:28:02.984Z\",\n \"CreatedAt\": \"2022-05-27T01:49:10.02Z\",\n \"FirstPublishedAt\": \"2022-05-27T01:50:17.702Z\",\n \"CreationRoomId\": 4188356,\n \"NumPlayersHaveUsedInRoom\": 58,\n \"NumDownloads\": 218,\n \"CheerCount\": 105,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 500,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9550461,\n \"ReplicationId\": \"b2166b89-be83-44cf-88ad-b96102bad986\",\n \"CreatorPlayerId\": 1457431,\n \"Name\": \"PRIDE bears <3\",\n \"Description\": \"Pride Bears ! Any more flags please request through Direct messages!\",\n \"ImageName\": \"dkpz1jcl2l1gznkztoki94xhm.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9550461,\n \"ReplicationId\": \"d60f43e9-1431-46ef-8944-652cb9f25497\",\n \"VersionNumber\": 1,\n \"BlobName\": \"6rxkp0mm6hga9dm2ev7xoqxs6.inv\",\n \"BlobHash\": \"P9FRebcmgjyXHy8J1SaXMs4L9wCR+LMgN4BZAEUfUt0=\",\n \"InstantiationCost\": 3179,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:23:45.902Z\",\n \"CreatedAt\": \"2022-05-22T20:46:38.805Z\",\n \"FirstPublishedAt\": \"2022-05-22T20:50:08.541Z\",\n \"CreationRoomId\": 40870152,\n \"NumPlayersHaveUsedInRoom\": 38,\n \"NumDownloads\": 108,\n \"CheerCount\": 144,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 250,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9512308,\n \"ReplicationId\": \"69cc54ae-fda0-42fc-bfea-48d1fed9c7fe\",\n \"CreatorPlayerId\": 18261244,\n \"Name\": \"the sword bundle\",\n \"Description\": \"just some swords\",\n \"ImageName\": \"agxulmx4xrzcvqyb007a13cqv.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9512308,\n \"ReplicationId\": \"e7693de4-2a0f-49f0-bd3b-3108a3e94674\",\n \"VersionNumber\": 1,\n \"BlobName\": \"0kw0uwkoe9kivk4ynfc6pl1hz.inv\",\n \"BlobHash\": \"ZgUPN/c4AQcepujdyNIPH5Jf8S+ZOYgCCnfGlNPyot4=\",\n \"InstantiationCost\": 3436,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:41:53.326Z\",\n \"CreatedAt\": \"2022-05-20T21:01:16.293Z\",\n \"FirstPublishedAt\": \"2022-05-20T21:03:06.749Z\",\n \"CreationRoomId\": 21439083,\n \"NumPlayersHaveUsedInRoom\": 25,\n \"NumDownloads\": 116,\n \"CheerCount\": 48,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 750,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9607440,\n \"ReplicationId\": \"471baca4-cd0c-4081-a6f2-bb3cb665a25b\",\n \"CreatorPlayerId\": 3818405,\n \"Name\": \"Red Neon Gaming Setup\",\n \"Description\": \"Gaming chair, pc, monitor, microphone, headphones, keyboard and mouse\",\n \"ImageName\": \"aipxz784ekjncmslgra88rjp9.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9607440,\n \"ReplicationId\": \"eb883f50-45c0-4386-871a-ddda11568ee0\",\n \"VersionNumber\": 1,\n \"BlobName\": \"d7b4j2rzoxmbppa4uj3kgg9py.inv\",\n \"BlobHash\": \"xAcR6nFFksRJZFez3yCSed+O3WBKT9wkPIZU9mRRfHM=\",\n \"InstantiationCost\": 1330,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:46:05.983Z\",\n \"CreatedAt\": \"2022-05-27T00:02:04.554Z\",\n \"FirstPublishedAt\": \"2022-05-27T00:06:04.938Z\",\n \"CreationRoomId\": 38025878,\n \"NumPlayersHaveUsedInRoom\": 46,\n \"NumDownloads\": 196,\n \"CheerCount\": 61,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 250,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9607107,\n \"ReplicationId\": \"56f7dd22-4c7a-4b12-9159-b8bd840821e4\",\n \"CreatorPlayerId\": 7973761,\n \"Name\": \"Flying Wheelchair\",\n \"Description\": \"Live your wildest dreams on this working futuristic Flying Wheelchair!\",\n \"ImageName\": \"cd70v0zud73oec6ppxxbfva2d.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9607107,\n \"ReplicationId\": \"f268b316-0a8f-41ab-9b96-e129ceb4ac48\",\n \"VersionNumber\": 1,\n \"BlobName\": \"4al5f2k35y7tga5mnnh56p661.inv\",\n \"BlobHash\": \"a5kdWVV1SIS56XcFoYWzmBUIOe1bgZhbMJjDleMeMxU=\",\n \"InstantiationCost\": 1292,\n \"LightsCost\": 0,\n \"ChipsCost\": 63,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:31:43.734Z\",\n \"CreatedAt\": \"2022-05-26T23:42:25.068Z\",\n \"FirstPublishedAt\": \"2022-05-27T00:04:32.101Z\",\n \"CreationRoomId\": 28877820,\n \"NumPlayersHaveUsedInRoom\": 94,\n \"NumDownloads\": 345,\n \"CheerCount\": 105,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 250,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9441363,\n \"ReplicationId\": \"4f03c454-e95d-4e70-baee-d9dae7420e31\",\n \"CreatorPlayerId\": 10580690,\n \"Name\": \"Working Zipline\",\n \"Description\": \"A dynamic cv2 zipline! Note: the rail has a maximum length! If you need it longer, use a tube.\",\n \"ImageName\": \"8nadg3u09r0fx4xw81ajwxn5f.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9441363,\n \"ReplicationId\": \"0248e3a1-b22b-4e9d-87f9-8fe359e86ca7\",\n \"VersionNumber\": 1,\n \"BlobName\": \"58wdr4b3jzhqk3sbncrkz69to.inv\",\n \"BlobHash\": \"wBF2w0tddU3ejGs1rrjMtk+jbkuhEkM2q6jbUJzLmZI=\",\n \"InstantiationCost\": 634,\n \"LightsCost\": 0,\n \"ChipsCost\": 158,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:49:54.717Z\",\n \"CreatedAt\": \"2022-05-14T23:28:48.655Z\",\n \"FirstPublishedAt\": \"2022-05-14T23:50:19.986Z\",\n \"CreationRoomId\": 33647688,\n \"NumPlayersHaveUsedInRoom\": 33,\n \"NumDownloads\": 125,\n \"CheerCount\": 46,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 500,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9515935,\n \"ReplicationId\": \"140ad099-5cff-47d1-9563-1a0b47ad6d8f\",\n \"CreatorPlayerId\": 24146240,\n \"Name\": \"Animated Rainbow Wings\",\n \"Description\": \"Wearable animated RainbowWings. Equip over your shoulder and see the realistic movement on your back\",\n \"ImageName\": \"cgczro579qh3x0cjnhyy16lf2.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9515935,\n \"ReplicationId\": \"ff43e22d-365b-432a-bd9f-405b46ea7b12\",\n \"VersionNumber\": 1,\n \"BlobName\": \"2jfrjriqp3gg3nhc72yck2qgy.inv\",\n \"BlobHash\": \"XBW65tUBgj0NjlMQUs96hVsyJIhv1kiEJ6TNNd1JOt0=\",\n \"InstantiationCost\": 2661,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:05:01.381Z\",\n \"CreatedAt\": \"2022-05-21T00:53:58.911Z\",\n \"FirstPublishedAt\": \"2022-05-21T00:56:22.565Z\",\n \"CreationRoomId\": 61151363,\n \"NumPlayersHaveUsedInRoom\": 19,\n \"NumDownloads\": 115,\n \"CheerCount\": 73,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 250,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9498378,\n \"ReplicationId\": \"6e6def66-2b44-4434-b57f-6fc1e1d3aced\",\n \"CreatorPlayerId\": 16287501,\n \"Name\": \"Steampunk Robot\",\n \"Description\": \"\\\"...what? i know its made outta scraps but, cmon. its kewl\\\"\",\n \"ImageName\": \"c7jo4g0gjur65fwk1o45a5zps.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9498378,\n \"ReplicationId\": \"01f4ddbb-f563-4ae9-92cf-27db1341dc20\",\n \"VersionNumber\": 1,\n \"BlobName\": \"6tfa8gn294hblogk1dscuo713.inv\",\n \"BlobHash\": \"mdsCSUXx0jNzPfNYCo4ywGByBbim08Ue5Q5SUPR5Jv0=\",\n \"InstantiationCost\": 4839,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:27:27.821Z\",\n \"CreatedAt\": \"2022-05-19T18:32:42.359Z\",\n \"FirstPublishedAt\": \"2022-05-19T18:34:41.771Z\",\n \"CreationRoomId\": 19271926,\n \"NumPlayersHaveUsedInRoom\": 10,\n \"NumDownloads\": 32,\n \"CheerCount\": 22,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 250,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9467168,\n \"ReplicationId\": \"d7c284e3-73ea-4a1e-bfc7-a1644785195f\",\n \"CreatorPlayerId\": 47361521,\n \"Name\": \"Steampunk EscapePod Game\",\n \"Description\": \"An Escape pod Game with 3 different outcomes.(All annihilations are not held accountable against us)\",\n \"ImageName\": \"2xwcxh43ew75jb45wun1gncgp.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9467168,\n \"ReplicationId\": \"d85ea730-2a18-44cc-b600-301507c358b5\",\n \"VersionNumber\": 1,\n \"BlobName\": \"75zui75nah29bc26n4eaqnq61.inv\",\n \"BlobHash\": \"v4vE6eyF3GE+R0i5h9Y012ZN32VDRsG17KuUZuDRd2Y=\",\n \"InstantiationCost\": 4195,\n \"LightsCost\": 2,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:30:21.879Z\",\n \"CreatedAt\": \"2022-05-16T19:07:17.629Z\",\n \"FirstPublishedAt\": \"2022-05-16T19:18:18.93Z\",\n \"CreationRoomId\": 49262639,\n \"NumPlayersHaveUsedInRoom\": 3,\n \"NumDownloads\": 28,\n \"CheerCount\": 36,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 750,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9588014,\n \"ReplicationId\": \"e0001a25-54ac-4083-861b-2d11db8676e9\",\n \"CreatorPlayerId\": 3512446,\n \"Name\": \"Magic Rainbow DanceFloor\",\n \"Description\": \"Dance floor that leaves a rainbow trail as you walk on it! Scale to any size\",\n \"ImageName\": \"0c8tmpbfnxtbalsq0o07mc2ii.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9588014,\n \"ReplicationId\": \"e2e7aae3-b4dd-4dd6-b512-ad7924d8792e\",\n \"VersionNumber\": 1,\n \"BlobName\": \"af0f9j8xkk775l69kenyzqk6o.inv\",\n \"BlobHash\": \"MNWZB8F2ootiDM2QRFXalYPzYowYmzudnCdBFQLFyTk=\",\n \"InstantiationCost\": 11859,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T22:03:06.945Z\",\n \"CreatedAt\": \"2022-05-25T18:30:07.331Z\",\n \"FirstPublishedAt\": \"2022-05-25T19:28:22.504Z\",\n \"CreationRoomId\": 36865355,\n \"NumPlayersHaveUsedInRoom\": 5,\n \"NumDownloads\": 30,\n \"CheerCount\": 36,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 750,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9427987,\n \"ReplicationId\": \"92acec50-a364-4dc6-98ba-e676591d24eb\",\n \"CreatorPlayerId\": 16639957,\n \"Name\": \"Random facts gun\",\n \"Description\": \"Shoot facts at anbody\",\n \"ImageName\": \"41tadqjzl52vbepkxv4t8rp3p.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9427987,\n \"ReplicationId\": \"86cc1dc6-6344-4249-97b9-74da4660a5b5\",\n \"VersionNumber\": 1,\n \"BlobName\": \"2dg84t1hrneln7zyu0icn18b2.inv\",\n \"BlobHash\": \"b0rEIncZspjPYEs4kPm6iKm7lcrVSyCmrNcPInc201Y=\",\n \"InstantiationCost\": 517,\n \"LightsCost\": 0,\n \"ChipsCost\": 45,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:37:13.234Z\",\n \"CreatedAt\": \"2022-05-14T04:21:46.133Z\",\n \"FirstPublishedAt\": \"2022-05-14T04:28:52.809Z\",\n \"CreationRoomId\": 19670397,\n \"NumPlayersHaveUsedInRoom\": 17,\n \"NumDownloads\": 95,\n \"CheerCount\": 66,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 500,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 9592241,\n \"ReplicationId\": \"da6fc858-bc8d-4fe3-870f-d1fc8b50a735\",\n \"CreatorPlayerId\": 11952502,\n \"Name\": \"Confused Animal Stuffies\",\n \"Description\": \"Some cute, fuzzy, hard thinkers. Theses plushies are thinkin' hard!\",\n \"ImageName\": \"5018vacq9mbvyyj8dhzcacp84.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 9592241,\n \"ReplicationId\": \"3bf71838-9c85-4c52-938a-7f85c5158c17\",\n \"VersionNumber\": 1,\n \"BlobName\": \"es4hd6elw9c6xcw4eo13b4rqd.inv\",\n \"BlobHash\": \"ly8YUblbzI9kskDJ9Mp2LVAQsS5MK4Lf9zDYYxUbZzg=\",\n \"InstantiationCost\": 537,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T22:02:53Z\",\n \"CreatedAt\": \"2022-05-25T23:05:19.925Z\",\n \"FirstPublishedAt\": \"2022-05-25T23:10:48.763Z\",\n \"CreationRoomId\": 66177421,\n \"NumPlayersHaveUsedInRoom\": 12,\n \"NumDownloads\": 40,\n \"CheerCount\": 38,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 250,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 7665218,\n \"ReplicationId\": \"e784800f-922d-4abe-a142-d76fc09a5cdd\",\n \"CreatorPlayerId\": 1208682,\n \"Name\": \"3d what?\",\n \"Description\": \"Abstract illusion at its best!\",\n \"ImageName\": \"7b0e36cef02241cf86f7cf5ab021d460.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 7665218,\n \"ReplicationId\": \"8b50ea70-39e3-458f-8bca-e6d17e27e787\",\n \"VersionNumber\": 1,\n \"BlobName\": \"f5337cafa36445dcb07ce98f8a721749.inv\",\n \"BlobHash\": \"QowC0VKMJRKROqhqwOXA1MFXEAxjiSqNx2PAunbOqBc=\",\n \"InstantiationCost\": 435,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": true,\n \"ModifiedAt\": \"2022-05-31T23:37:19.919Z\",\n \"CreatedAt\": \"2022-01-10T22:14:48.918Z\",\n \"FirstPublishedAt\": \"2022-01-10T22:16:24.634Z\",\n \"CreationRoomId\": 8669789,\n \"NumPlayersHaveUsedInRoom\": 13,\n \"NumDownloads\": 41,\n \"CheerCount\": 222,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 650,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Search Inventions",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/inventions/v2/search?value=",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "inventions",
+ "v2",
+ "search"
+ ],
+ "query": [
+ {
+ "key": "value",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Search Inventions",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/inventions/v2/search?value=Modern%20Sofabed",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "inventions",
+ "v2",
+ "search"
+ ],
+ "query": [
+ {
+ "key": "value",
+ "value": "Modern%20Sofabed"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 00:00:32 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "775"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"InventionId\": 3452252,\n \"ReplicationId\": \"5ebaa337-afb2-4327-ac59-f46095ff47ff\",\n \"CreatorPlayerId\": 10441985,\n \"Name\": \"Modern Sofabed\",\n \"Description\": \"Stylistic modern bed with comfy seating around. Comes with storage space that could be bookshelves!\",\n \"ImageName\": \"f369d37212d543d9830989b36e8bb5ba.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 3452252,\n \"ReplicationId\": \"bd8637a5-942c-42dd-a84c-dd4d0b449720\",\n \"VersionNumber\": 1,\n \"BlobName\": \"c05630d010124eabb6fcebaed67f5ade.inv\",\n \"BlobHash\": null,\n \"InstantiationCost\": 211,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": false,\n \"ModifiedAt\": \"2022-02-11T21:43:46.456Z\",\n \"CreatedAt\": \"2021-02-21T12:46:24.338Z\",\n \"FirstPublishedAt\": \"2021-02-21T12:50:19.035Z\",\n \"CreationRoomId\": 18302616,\n \"NumPlayersHaveUsedInRoom\": 24,\n \"NumDownloads\": 32,\n \"CheerCount\": 2,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 200,\n \"AllowTrial\": false,\n \"HideFromPlayer\": false\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Top Inventions",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/inventions/v1/toptoday",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "inventions",
+ "v1",
+ "toptoday"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Top Inventions",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/inventions/v1/toptoday?skip=0&take=50",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "inventions",
+ "v1",
+ "toptoday"
+ ],
+ "query": [
+ {
+ "key": "skip",
+ "value": "0"
+ },
+ {
+ "key": "take",
+ "value": "50"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 00:01:19 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "2185"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"InventionId\": 7678788,\n \"ReplicationId\": \"cbe7a0c7-f45b-44f7-aba7-99f8b59c7421\",\n \"CreatorPlayerId\": 18398205,\n \"Name\": \"Yellow Neon Dorm\",\n \"Description\": \"No description yet\",\n \"ImageName\": \"fe1f97a36206406d9d6d1de0cdee24e9.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 7678788,\n \"ReplicationId\": \"991d4b47-490b-4596-9843-5c990342b632\",\n \"VersionNumber\": 1,\n \"BlobName\": \"0af8d6e27259409181ec67be10815d76.inv\",\n \"BlobHash\": \"1HtoeaBmxyoHQ8qEXw2tDX42ABZanLFNFgBkXia9RJQ=\",\n \"InstantiationCost\": 2328,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": false,\n \"ModifiedAt\": \"2022-05-31T23:57:40.1296006Z\",\n \"CreatedAt\": \"2022-01-12T01:10:30.1945779Z\",\n \"FirstPublishedAt\": \"2022-01-12T01:12:11.7267591Z\",\n \"CreationRoomId\": 21597760,\n \"NumPlayersHaveUsedInRoom\": 16421,\n \"NumDownloads\": 48087,\n \"CheerCount\": 2692,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": null,\n \"AllowTrial\": true,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 8349239,\n \"ReplicationId\": \"f1d7ad13-72f2-413d-ab9f-5b8039ff6269\",\n \"CreatorPlayerId\": 5657655,\n \"Name\": \"Red N Black Strips Dorm\",\n \"Description\": \"My First Dorm Skin\",\n \"ImageName\": \"2a3438665b6b42cb80dfa723d31d9ef8.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 8349239,\n \"ReplicationId\": \"c76c4c83-c313-475f-a6a7-399e4246e24f\",\n \"VersionNumber\": 1,\n \"BlobName\": \"479d892a31014df2b815bb5d5d94a365.inv\",\n \"BlobHash\": \"Lqfkd0lY7sS3zXHrRhYFweUOzCOQISucXqZf6OB1sJ8=\",\n \"InstantiationCost\": 933,\n \"LightsCost\": 0,\n \"ChipsCost\": 14,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": false,\n \"ModifiedAt\": \"2022-05-31T23:57:36.6864014Z\",\n \"CreatedAt\": \"2022-02-22T10:30:20.5755278Z\",\n \"FirstPublishedAt\": \"2022-02-22T10:33:03.5836698Z\",\n \"CreationRoomId\": 7078885,\n \"NumPlayersHaveUsedInRoom\": 4684,\n \"NumDownloads\": 30895,\n \"CheerCount\": 757,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": null,\n \"AllowTrial\": true,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 8514135,\n \"ReplicationId\": \"5107b543-cc97-4384-9ab3-a115486405a4\",\n \"CreatorPlayerId\": 38416162,\n \"Name\": \"Dorm skin\",\n \"Description\": \"No description yet\",\n \"ImageName\": \"ca1i1l16nkys9e5labo6mcqia.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 8514135,\n \"ReplicationId\": \"fea626ae-a7ea-47be-b22f-3dfdb5215a33\",\n \"VersionNumber\": 1,\n \"BlobName\": \"81n6gkzjbld8mjv9v3r4uo8pk.inv\",\n \"BlobHash\": \"XW/XeknSqcsQvoDu3xXx/8ioebeP7mwop1jIxBAXXhM=\",\n \"InstantiationCost\": 14949,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": false,\n \"ModifiedAt\": \"2022-05-31T23:57:39.1671135Z\",\n \"CreatedAt\": \"2022-03-06T00:10:58.8422272Z\",\n \"FirstPublishedAt\": \"2022-03-06T00:12:52.0168402Z\",\n \"CreationRoomId\": 38950870,\n \"NumPlayersHaveUsedInRoom\": 20414,\n \"NumDownloads\": 123891,\n \"CheerCount\": 3871,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 60,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": null,\n \"AllowTrial\": true,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 7562697,\n \"ReplicationId\": \"92b35eb1-5118-4631-ae10-d6c044550d44\",\n \"CreatorPlayerId\": 13680106,\n \"Name\": \"„Cyberpunk“ dorm\",\n \"Description\": \"No description yet\",\n \"ImageName\": \"1dabb49b870b4839a7b46c20c89e54d8.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 7562697,\n \"ReplicationId\": \"b01dd196-c971-4566-9def-03f622612117\",\n \"VersionNumber\": 1,\n \"BlobName\": \"2db745d5430a453f97be5d99b47a6c93.inv\",\n \"BlobHash\": \"2X5hvJI6QPPUBC3Gqbz7MIQ7HrgEvZp2jDdDWZFoY7Q=\",\n \"InstantiationCost\": 9140,\n \"LightsCost\": 1,\n \"ChipsCost\": 80,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": false,\n \"ModifiedAt\": \"2022-05-31T23:57:33.6295204Z\",\n \"CreatedAt\": \"2022-01-03T13:54:40.7598434Z\",\n \"FirstPublishedAt\": \"2022-01-03T13:55:30.4808975Z\",\n \"CreationRoomId\": 16315810,\n \"NumPlayersHaveUsedInRoom\": 21364,\n \"NumDownloads\": 53331,\n \"CheerCount\": 3759,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 40,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": null,\n \"AllowTrial\": true,\n \"HideFromPlayer\": false\n },\n {\n \"InventionId\": 7322162,\n \"ReplicationId\": \"fa7ae67c-00c3-4afd-98ee-c78f7061a843\",\n \"CreatorPlayerId\": 10454496,\n \"Name\": \"Dorm Skin Pallet\",\n \"Description\": \"No description yet\",\n \"ImageName\": \"a8abe38247be439798c856ecac2c5087.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 7322162,\n \"ReplicationId\": \"d995e8f2-2a05-458c-b5ad-5e961779764e\",\n \"VersionNumber\": 1,\n \"BlobName\": \"e3a4037cc7c84c498b53180eba8abd77.inv\",\n \"BlobHash\": \"W4bhEfwgKGxrg7SQWodhy3REM2v/VuPrkV5e00FU4zg=\",\n \"InstantiationCost\": 705,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": false,\n \"ModifiedAt\": \"2022-05-31T23:57:42.4495366Z\",\n \"CreatedAt\": \"2021-12-17T22:30:46.0561352Z\",\n \"FirstPublishedAt\": \"2021-12-17T22:32:16.0203535Z\",\n \"CreationRoomId\": 12734256,\n \"NumPlayersHaveUsedInRoom\": 14684,\n \"NumDownloads\": 51621,\n \"CheerCount\": 2221,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 40,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 0,\n \"AllowTrial\": true,\n \"HideFromPlayer\": false\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Invention Tags from ID",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/inventions/v1/details?inventionId=",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "inventions",
+ "v1",
+ "details"
+ ],
+ "query": [
+ {
+ "key": "inventionId",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Invention Tags from ID",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/inventions/v1/details?inventionId=3452252",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "inventions",
+ "v1",
+ "details"
+ ],
+ "query": [
+ {
+ "key": "inventionId",
+ "value": "3452252"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 00:03:19 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "215"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Tags\": [\n {\n \"Tag\": \"medium\",\n \"Type\": 1\n },\n {\n \"Tag\": \"furniture\",\n \"Type\": 0\n },\n {\n \"Tag\": \"modern\",\n \"Type\": 0\n },\n {\n \"Tag\": \"bed\",\n \"Type\": 0\n },\n {\n \"Tag\": \"stylistic\",\n \"Type\": 0\n },\n {\n \"Tag\": \"decor\",\n \"Type\": 0\n },\n {\n \"Tag\": \"useonly\",\n \"Type\": 2\n },\n {\n \"Tag\": \"lowink\",\n \"Type\": 2\n }\n ]\n}"
+ }
+ ]
+ },
+ {
+ "name": "Invention Details from ID",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/inventions/v1?inventionId=",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "inventions",
+ "v1"
+ ],
+ "query": [
+ {
+ "key": "inventionId",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Invention Details from ID",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/inventions/v1?inventionId=3452252",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "inventions",
+ "v1"
+ ],
+ "query": [
+ {
+ "key": "inventionId",
+ "value": "3452252"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 00:04:11 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "784"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"InventionId\": 3452252,\n \"ReplicationId\": \"5ebaa337-afb2-4327-ac59-f46095ff47ff\",\n \"CreatorPlayerId\": 10441985,\n \"Name\": \"Modern Sofabed\",\n \"Description\": \"Stylistic modern bed with comfy seating around. Comes with storage space that could be bookshelves!\",\n \"ImageName\": \"f369d37212d543d9830989b36e8bb5ba.jpg\",\n \"CurrentVersionNumber\": 1,\n \"CurrentVersion\": {\n \"InventionId\": 3452252,\n \"ReplicationId\": \"bd8637a5-942c-42dd-a84c-dd4d0b449720\",\n \"VersionNumber\": 1,\n \"BlobName\": \"c05630d010124eabb6fcebaed67f5ade.inv\",\n \"BlobHash\": null,\n \"InstantiationCost\": 211,\n \"LightsCost\": 0,\n \"ChipsCost\": 0,\n \"CloudVariablesCost\": 0\n },\n \"Accessibility\": 1,\n \"IsPublished\": true,\n \"IsFeatured\": false,\n \"ModifiedAt\": \"2022-02-11T21:43:46.4561781Z\",\n \"CreatedAt\": \"2021-02-21T12:46:24.338891Z\",\n \"FirstPublishedAt\": \"2021-02-21T12:50:19.0355536Z\",\n \"CreationRoomId\": 18302616,\n \"NumPlayersHaveUsedInRoom\": 24,\n \"NumDownloads\": 32,\n \"CheerCount\": 2,\n \"CreatorPermission\": 100,\n \"GeneralPermission\": 20,\n \"IsAGInvention\": false,\n \"IsCertifiedInvention\": false,\n \"Price\": 200,\n \"AllowTrial\": true,\n \"HideFromPlayer\": false\n}"
+ }
+ ]
+ }
+ ],
+ "description": "This section contains all the endpoints that can be used to retrieve inventions information."
+ },
+ {
+ "name": "Messages",
+ "item": [
+ {
+ "name": "Get Messages Latest/Oldest",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://chat.rec.net/thread?mode=1&maxCount=1",
+ "protocol": "https",
+ "host": [
+ "chat",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "thread"
+ ],
+ "query": [
+ {
+ "key": "mode",
+ "value": "1"
+ },
+ {
+ "key": "maxCount",
+ "value": "1"
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Latest Messages",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://chat.rec.net/thread?maxCount=16&mode=0",
+ "protocol": "https",
+ "host": [
+ "chat",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "thread"
+ ],
+ "query": [
+ {
+ "key": "maxCount",
+ "value": "16"
+ },
+ {
+ "key": "mode",
+ "value": "0"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:8e5615b0-9e58-445a-b379-1224c3c1e072"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ },
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 08:47:57 GMT"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"latestMessage\": {\n \"chatMessageId\": 428217545,\n \"chatThreadId\": 116181128,\n \"senderPlayerId\": 10441985,\n \"timeSent\": \"2022-05-22T12:47:03.6536656\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"This is jordanparki7 from your Oculus friends. We're friends in Rec Room now!\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 116181128,\n \"playerIds\": [\n 9489959,\n 10441985\n ],\n \"lastReadMessageId\": 428217545,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 342855585,\n \"chatThreadId\": 94024755,\n \"senderPlayerId\": 10441985,\n \"timeSent\": \"2022-02-27T18:19:32.1482038\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"Yoo :] Can I get an inv for tryout pls :} tyy\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 94024755,\n \"playerIds\": [\n 10441985,\n 17460845\n ],\n \"lastReadMessageId\": 342855585,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 335087122,\n \"chatThreadId\": 90988593,\n \"senderPlayerId\": 9392381,\n \"timeSent\": \"2022-02-21T18:08:56.0362822\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"hi\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 90988593,\n \"playerIds\": [\n 9392381,\n 10441985\n ],\n \"lastReadMessageId\": 335087122,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 270388676,\n \"chatThreadId\": 72670211,\n \"senderPlayerId\": -5,\n \"timeSent\": \"2021-12-27T23:21:39.0927152\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"Player <@U29565301> started a chat\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 72670211,\n \"playerIds\": [\n 10441985,\n 29565301\n ],\n \"lastReadMessageId\": 270388676,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 232181690,\n \"chatThreadId\": 22945389,\n \"senderPlayerId\": 10441985,\n \"timeSent\": \"2021-11-06T11:26:42.0588899\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"sussy baka\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 22945389,\n \"playerIds\": [\n 10441985,\n 10452682,\n 12534039,\n 12535328,\n 12631702\n ],\n \"lastReadMessageId\": 232181690,\n \"chatThreadName\": \"Group Chat =]\",\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 225660357,\n \"chatThreadId\": 58347788,\n \"senderPlayerId\": -5,\n \"timeSent\": \"2021-10-24T13:48:40.0584579\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"Player <@U14922080> left\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 58347788,\n \"playerIds\": [\n 10441985\n ],\n \"lastReadMessageId\": 225660357,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 221836270,\n \"chatThreadId\": 22447398,\n \"senderPlayerId\": 10452682,\n \"timeSent\": \"2021-10-15T18:55:03.2543702\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"mellon\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 22447398,\n \"playerIds\": [\n 10441985,\n 10452682\n ],\n \"lastReadMessageId\": 221836270,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 221826898,\n \"chatThreadId\": 58353790,\n \"senderPlayerId\": 29563053,\n \"timeSent\": \"2021-10-15T18:22:58.0324967\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"Ly2 bae <<<333\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 58353790,\n \"playerIds\": [\n 10441985,\n 29563053\n ],\n \"lastReadMessageId\": 221826898,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 204250378,\n \"chatThreadId\": 55117592,\n \"senderPlayerId\": 10441985,\n \"timeSent\": \"2021-08-28T18:06:25.9937999\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"This is jordanparki7 from your Oculus friends. We're friends in Rec Room now!\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 55117592,\n \"playerIds\": [\n 126700,\n 10441985\n ],\n \"lastReadMessageId\": 204250378,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 202966836,\n \"chatThreadId\": 54839470,\n \"senderPlayerId\": 26396268,\n \"timeSent\": \"2021-08-25T17:10:50.0752445\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"This is snodmystaahh from your Oculus friends. We're friends in Rec Room now!\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 54839470,\n \"playerIds\": [\n 10441985,\n 26396268\n ],\n \"lastReadMessageId\": 202966836,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 197602406,\n \"chatThreadId\": 53614552,\n \"senderPlayerId\": 25549506,\n \"timeSent\": \"2021-08-14T01:01:43.3016068\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"This is snodmystaahh from your Oculus friends. We're friends in Rec Room now!\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 53614552,\n \"playerIds\": [\n 10441985,\n 25549506\n ],\n \"lastReadMessageId\": 197602406,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 197595695,\n \"chatThreadId\": 28629302,\n \"senderPlayerId\": 13030696,\n \"timeSent\": \"2021-08-14T00:46:55.9075183\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"This is snodmystaahh from your Oculus friends. We're friends in Rec Room now!\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 28629302,\n \"playerIds\": [\n 10441985,\n 13030696\n ],\n \"lastReadMessageId\": 197595695,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 182855914,\n \"chatThreadId\": 50091382,\n \"senderPlayerId\": 22649424,\n \"timeSent\": \"2021-07-14T21:31:56.3570932\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"This is snodmystaahh from your Oculus friends. We're friends in Rec Room now!\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 50091382,\n \"playerIds\": [\n 10441985,\n 22649424\n ],\n \"lastReadMessageId\": 182855914,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 170399337,\n \"chatThreadId\": 46783642,\n \"senderPlayerId\": 10441985,\n \"timeSent\": \"2021-06-18T19:47:42.6372662\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"This is jordanparki7 from your Steam friends. We're friends in Rec Room now!\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 46783642,\n \"playerIds\": [\n 10441985,\n 12826590\n ],\n \"lastReadMessageId\": 170399337,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 164811326,\n \"chatThreadId\": 45516131,\n \"senderPlayerId\": 18449807,\n \"timeSent\": \"2021-06-04T18:28:03.0762761\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"This is snodmystaahh from your Oculus friends. We're friends in Rec Room now!\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 45516131,\n \"playerIds\": [\n 10441985,\n 18449807\n ],\n \"lastReadMessageId\": 164811326,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n },\n {\n \"latestMessage\": {\n \"chatMessageId\": 142213650,\n \"chatThreadId\": 39684176,\n \"senderPlayerId\": 18047180,\n \"timeSent\": \"2021-04-05T13:34:31.2852166\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"This is Chuckle_Nut from your Oculus friends. We're friends in Rec Room now!\\\"}\",\n \"moderationState\": 0\n },\n \"chatThreadId\": 39684176,\n \"playerIds\": [\n 10441985,\n 18047180\n ],\n \"lastReadMessageId\": 142213650,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Messages From ID Latest/Oldest",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://chat.rec.net/thread/:id/message?MessageCount=16&Mode=0",
+ "protocol": "https",
+ "host": [
+ "chat",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "thread",
+ ":id",
+ "message"
+ ],
+ "query": [
+ {
+ "key": "MessageCount",
+ "value": "16"
+ },
+ {
+ "key": "Mode",
+ "value": "0"
+ }
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": "90988593"
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Latest Messages From ID",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://chat.rec.net/thread/:id/message?MessageCount=16&Mode=0",
+ "protocol": "https",
+ "host": [
+ "chat",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "thread",
+ ":id",
+ "message"
+ ],
+ "query": [
+ {
+ "key": "MessageCount",
+ "value": "16"
+ },
+ {
+ "key": "Mode",
+ "value": "0"
+ }
+ ],
+ "variable": [
+ {
+ "key": "id",
+ "value": "90988593"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:8e5615b0-9e58-445a-b379-1224c3c1e072"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ },
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:04:43 GMT"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"chatMessageId\": 335087122,\n \"chatThreadId\": 90988593,\n \"senderPlayerId\": 9392381,\n \"timeSent\": \"2022-02-21T18:08:56.0362822\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"hi\\\"}\",\n \"moderationState\": 0\n },\n {\n \"chatMessageId\": 332171863,\n \"chatThreadId\": 90988593,\n \"senderPlayerId\": 9392381,\n \"timeSent\": \"2022-02-19T22:13:56.7224503\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"on discord?\\\"}\",\n \"moderationState\": 0\n },\n {\n \"chatMessageId\": 332171460,\n \"chatThreadId\": 90988593,\n \"senderPlayerId\": 10441985,\n \"timeSent\": \"2022-02-19T22:13:38.9011137\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"we can just msg if u like\\\"}\",\n \"moderationState\": 0\n },\n {\n \"chatMessageId\": 332170228,\n \"chatThreadId\": 90988593,\n \"senderPlayerId\": 9392381,\n \"timeSent\": \"2022-02-19T22:12:57.353984\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"vr is hurting my head\\\"}\",\n \"moderationState\": 0\n },\n {\n \"chatMessageId\": 332161747,\n \"chatThreadId\": 90988593,\n \"senderPlayerId\": 9392381,\n \"timeSent\": \"2022-02-19T22:07:27.4301705\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"homophobic\\\\n\\\"}\",\n \"moderationState\": 0\n },\n {\n \"chatMessageId\": 332161029,\n \"chatThreadId\": 90988593,\n \"senderPlayerId\": 9392381,\n \"timeSent\": \"2022-02-19T22:06:56.1748065\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"why you mued in party\\\\n\\\\n\\\"}\",\n \"moderationState\": 0\n },\n {\n \"chatMessageId\": 332140716,\n \"chatThreadId\": 90988593,\n \"senderPlayerId\": 10441985,\n \"timeSent\": \"2022-02-19T21:54:42.4787815\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"This is jordanparki7 from your Oculus friends. We're friends in Rec Room now!\\\"}\",\n \"moderationState\": 0\n },\n {\n \"chatMessageId\": 332140715,\n \"chatThreadId\": 90988593,\n \"senderPlayerId\": -5,\n \"timeSent\": \"2022-02-19T21:54:42.4312088\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"Player <@U10441985> started a chat\\\"}\",\n \"moderationState\": 0\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Send Message",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "ids",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "messageContents",
+ "value": "{\"Data\":\"___________\",\"Type\":0,\"Version\":1,\"Blocks\":[{\"Placeholder\":\"_______________\",\"Type\":\"Text\"}]}",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://chat.rec.net/thread",
+ "protocol": "https",
+ "host": [
+ "chat",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "thread"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Send Message",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "ids",
+ "value": "10441985",
+ "type": "text"
+ },
+ {
+ "key": "messageContents",
+ "value": "{\"Data\":\"Yo\",\"Type\":0,\"Version\":1,\"Blocks\":[{\"Placeholder\":\"Yo\",\"Type\":\"Text\"}]}",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://chat.rec.net/thread",
+ "protocol": "https",
+ "host": [
+ "chat",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "thread"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:8e5615b0-9e58-445a-b379-1224c3c1e072"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ },
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 10:51:47 GMT"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"chatResult\": 0,\n \"chatThread\": {\n \"messages\": [\n {\n \"chatMessageId\": 438945410,\n \"chatThreadId\": 118661880,\n \"senderPlayerId\": 15135233,\n \"timeSent\": \"2022-06-01T10:49:12.7897725\",\n \"contents\": \"{\\\"Data\\\":\\\"Yo\\\",\\\"Type\\\":0,\\\"Version\\\":1,\\\"Blocks\\\":[{\\\"Placeholder\\\":\\\"Yo\\\",\\\"Type\\\":\\\"Text\\\"}]}\",\n \"moderationState\": 0\n },\n {\n \"chatMessageId\": 438945409,\n \"chatThreadId\": 118661880,\n \"senderPlayerId\": -5,\n \"timeSent\": \"2022-06-01T10:49:12.7665658\",\n \"contents\": \"{\\\"Type\\\":0,\\\"Version\\\":1,\\\"Data\\\":\\\"Player <@U15135233> started a chat\\\"}\",\n \"moderationState\": 0\n }\n ],\n \"chatThreadId\": 118661880,\n \"playerIds\": [\n 10441985,\n 15135233\n ],\n \"lastReadMessageId\": 438946141,\n \"chatThreadName\": null,\n \"snoozedUntil\": null,\n \"isFavorited\": false\n }\n}"
+ }
+ ]
+ }
+ ],
+ "description": "Many message requests requre a mode parameter.\n\n| **Mode** | **Description** |\n| --- | --- |\n| 0 | Finds the latest data (eg. latest messages from player) |\n| 1 | Finds the oldest data (eg. oldest chats) |",
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "event": [
+ {
+ "listen": "prerequest",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ },
+ {
+ "listen": "test",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "name": "Stats",
+ "item": [
+ {
+ "name": "Overview",
+ "item": [
+ {
+ "name": "Stats Overview",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/stats/overview",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "stats",
+ "overview"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Stats Overview",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/stats/overview",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "stats",
+ "overview"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:15:48 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "403"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"TotalVisits\":342266,\n \"NewVisits\":5623,\n \"TotalRoomCodeConsumptionCount\":0,\n \"NewRoomCodeConsumptionCount\":0,\n \"TotalRoomCodeNonOwnerCreationCount\":5,\n \"NewRoomCodeNonOwnerCreationCount\":0,\n \"TotalSubscribersFromRoom\":4620,\n \"NewSubscribersFromRoom\":484,\n \"TotalTokensEarned\":786698.0,\n \"TotalTokensPending\":35285.0,\n \"TotalRoomTokensEarned\":356998.0,\n \"TotalRoomTokensPending\":385.0,\n \"TotalInventionTokensEarned\":429700.0,\n \"TotalInventionTokensPending\":430.0,\n \"TopEarningRoomId\":23570830,\n \"TopEarningInvention\":\"Modern Sofabed\",\n \"SubscriptionContinuity\":{\n \"Continuity\":0,\n \"GracefulContinuityStart\":\"2021-02-18T21:26:25.466Z\",\n \"GracefulContinuityEnd\":null\n }\n}"
+ }
+ ]
+ },
+ {
+ "name": "Meets Creator Requirements",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/creatorCompensation/v1/requirements",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "creatorCompensation",
+ "v1",
+ "requirements"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Meets Creator Requirements",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/creatorCompensation/v1/requirements",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "creatorCompensation",
+ "v1",
+ "requirements"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:17:47 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "232"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"success\": false,\n \"errors\": [\n \"You do not meet the minimum balance requirement\"\n ],\n \"requiresParentApproval\": false,\n \"parentEmail\": null,\n \"parentApprovalState\": \"None\"\n}"
+ }
+ ]
+ },
+ {
+ "name": "Earned Token Balance",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/creatorCompensation/v1/earnedTokenBalance",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "creatorCompensation",
+ "v1",
+ "earnedTokenBalance"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Earned Token Balance",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/creatorCompensation/v1/earnedTokenBalance",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "creatorCompensation",
+ "v1",
+ "earnedTokenBalance"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:18:40 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "124"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "786698"
+ }
+ ]
+ },
+ {
+ "name": "Bonus Period",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/creatorCompensation/v1/bonusPeriod",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "creatorCompensation",
+ "v1",
+ "bonusPeriod"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Bonus Period",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/creatorCompensation/v1/bonusPeriod",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "creatorCompensation",
+ "v1",
+ "bonusPeriod"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:19:49 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "211"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"BonusPeriodActive\": true,\n \"StartDate\": \"2022-02-01T00:00:00\",\n \"EndDate\": \"2024-01-01T23:59:59\",\n \"BonusMaximum\": 15000\n}"
+ }
+ ]
+ },
+ {
+ "name": "Players Referred Count",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://link.rec.net/actionlink/newPlayerFriendCodeConsumptionCount",
+ "protocol": "https",
+ "host": [
+ "link",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "actionlink",
+ "newPlayerFriendCodeConsumptionCount"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Players Referred Count",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://link.rec.net/actionlink/newPlayerFriendCodeConsumptionCount",
+ "protocol": "https",
+ "host": [
+ "link",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "actionlink",
+ "newPlayerFriendCodeConsumptionCount"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "TiPMix=26.0144141158156; path=/; HttpOnly; Domain=link.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "x-ms-routing-name=self; path=/; HttpOnly; Domain=link.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:a3f20691-fd0e-47d2-bfb2-c9dcffb0b091"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ },
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:11:21 GMT"
+ }
+ ],
+ "cookie": [],
+ "body": "0"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "Creator",
+ "item": [
+ {
+ "name": "Creator Stats",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/stats/creatorstats",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "stats",
+ "creatorstats"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Creator Stats",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/stats/creatorstats",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "stats",
+ "creatorstats"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:21:17 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "551"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"RoomName\": \"NightclubIcey\",\n \"ImageName\": \"f61f9802586f4fab9ecf4d90abe7d829.jpg\",\n \"TotalVisits\": 421768,\n \"NewVisits\": 3374,\n \"TotalRoomCodeConsumptionCount\": 0,\n \"NewRoomCodeConsumptionCount\": 0,\n \"TotalRoomCodeNonOwnerCreationCount\": 0,\n \"NewRoomCodeNonOwnerCreationCount\": 0,\n \"TotalSubscribersFromRoom\": 452,\n \"NewSubscribersFromRoom\": 0\n },\n {\n \"RoomName\": \"Escape.Rooms\",\n \"ImageName\": \"d4e5d87f006c44ff8866149be19739ea.jpg\",\n \"TotalVisits\": 275811,\n \"NewVisits\": 5535,\n \"TotalRoomCodeConsumptionCount\": 0,\n \"NewRoomCodeConsumptionCount\": 0,\n \"TotalRoomCodeNonOwnerCreationCount\": 5,\n \"NewRoomCodeNonOwnerCreationCount\": 0,\n \"TotalSubscribersFromRoom\": 9596,\n \"NewSubscribersFromRoom\": 1\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Room Daily Stats",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/stats/creatorstatsDaily?roomId=&numberOfDays=",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "stats",
+ "creatorstatsDaily"
+ ],
+ "query": [
+ {
+ "key": "roomId",
+ "value": ""
+ },
+ {
+ "key": "numberOfDays",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Room Daily Stats",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/stats/creatorstatsDaily?roomId=23570830&numberOfDays=30",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "stats",
+ "creatorstatsDaily"
+ ],
+ "query": [
+ {
+ "key": "roomId",
+ "value": "23570830"
+ },
+ {
+ "key": "numberOfDays",
+ "value": "30"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:27:18 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "505"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"Date\": \"2022-05-02T00:00:00\",\n \"AvgTimePerUserDaily\": 3.4,\n \"NewVisitsDaily\": 5\n },\n {\n \"Date\": \"2022-05-03T00:00:00\",\n \"AvgTimePerUserDaily\": 11.4,\n \"NewVisitsDaily\": 10\n },\n {\n \"Date\": \"2022-05-04T00:00:00\",\n \"AvgTimePerUserDaily\": 11.125,\n \"NewVisitsDaily\": 12\n },\n {\n \"Date\": \"2022-05-05T00:00:00\",\n \"AvgTimePerUserDaily\": 3.25,\n \"NewVisitsDaily\": 4\n },\n {\n \"Date\": \"2022-05-06T00:00:00\",\n \"AvgTimePerUserDaily\": 6.333333333333333,\n \"NewVisitsDaily\": 7\n },\n {\n \"Date\": \"2022-05-07T00:00:00\",\n \"AvgTimePerUserDaily\": 17.833333333333332,\n \"NewVisitsDaily\": 6\n },\n {\n \"Date\": \"2022-05-08T00:00:00\",\n \"AvgTimePerUserDaily\": 7.3,\n \"NewVisitsDaily\": 10\n },\n {\n \"Date\": \"2022-05-09T00:00:00\",\n \"AvgTimePerUserDaily\": 8.7894736842105257,\n \"NewVisitsDaily\": 21\n },\n {\n \"Date\": \"2022-05-10T00:00:00\",\n \"AvgTimePerUserDaily\": 24.4,\n \"NewVisitsDaily\": 8\n },\n {\n \"Date\": \"2022-05-11T00:00:00\",\n \"AvgTimePerUserDaily\": 7.666666666666667,\n \"NewVisitsDaily\": 8\n },\n {\n \"Date\": \"2022-05-12T00:00:00\",\n \"AvgTimePerUserDaily\": 3.6666666666666665,\n \"NewVisitsDaily\": 3\n },\n {\n \"Date\": \"2022-05-13T00:00:00\",\n \"AvgTimePerUserDaily\": 11.4,\n \"NewVisitsDaily\": 11\n },\n {\n \"Date\": \"2022-05-14T00:00:00\",\n \"AvgTimePerUserDaily\": 10,\n \"NewVisitsDaily\": 2\n },\n {\n \"Date\": \"2022-05-15T00:00:00\",\n \"AvgTimePerUserDaily\": 2.5,\n \"NewVisitsDaily\": 4\n },\n {\n \"Date\": \"2022-05-16T00:00:00\",\n \"AvgTimePerUserDaily\": 7.4,\n \"NewVisitsDaily\": 11\n },\n {\n \"Date\": \"2022-05-17T00:00:00\",\n \"AvgTimePerUserDaily\": 4,\n \"NewVisitsDaily\": 1\n },\n {\n \"Date\": \"2022-05-18T00:00:00\",\n \"AvgTimePerUserDaily\": 2,\n \"NewVisitsDaily\": 1\n },\n {\n \"Date\": \"2022-05-19T00:00:00\",\n \"AvgTimePerUserDaily\": 8.75,\n \"NewVisitsDaily\": 4\n },\n {\n \"Date\": \"2022-05-20T00:00:00\",\n \"AvgTimePerUserDaily\": 9,\n \"NewVisitsDaily\": 14\n },\n {\n \"Date\": \"2022-05-21T00:00:00\",\n \"AvgTimePerUserDaily\": 10,\n \"NewVisitsDaily\": 8\n },\n {\n \"Date\": \"2022-05-22T00:00:00\",\n \"AvgTimePerUserDaily\": 10.777777777777779,\n \"NewVisitsDaily\": 11\n },\n {\n \"Date\": \"2022-05-23T00:00:00\",\n \"AvgTimePerUserDaily\": 4,\n \"NewVisitsDaily\": 4\n },\n {\n \"Date\": \"2022-05-24T00:00:00\",\n \"AvgTimePerUserDaily\": 9.4,\n \"NewVisitsDaily\": 6\n },\n {\n \"Date\": \"2022-05-25T00:00:00\",\n \"AvgTimePerUserDaily\": 15,\n \"NewVisitsDaily\": 11\n },\n {\n \"Date\": \"2022-05-26T00:00:00\",\n \"AvgTimePerUserDaily\": 12.6,\n \"NewVisitsDaily\": 5\n },\n {\n \"Date\": \"2022-05-27T00:00:00\",\n \"AvgTimePerUserDaily\": 5.7777777777777777,\n \"NewVisitsDaily\": 11\n },\n {\n \"Date\": \"2022-05-28T00:00:00\",\n \"AvgTimePerUserDaily\": 11.75,\n \"NewVisitsDaily\": 5\n },\n {\n \"Date\": \"2022-05-29T00:00:00\",\n \"AvgTimePerUserDaily\": 7.333333333333333,\n \"NewVisitsDaily\": 9\n },\n {\n \"Date\": \"2022-05-30T00:00:00\",\n \"AvgTimePerUserDaily\": 7.25,\n \"NewVisitsDaily\": 8\n },\n {\n \"Date\": \"2022-05-31T00:00:00\",\n \"AvgTimePerUserDaily\": 8,\n \"NewVisitsDaily\": 6\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Room Keys",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/stats/roomkeys",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "stats",
+ "roomkeys"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Room Keys",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/stats/roomkeys",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "stats",
+ "roomkeys"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:57:14 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "352"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "TiPMix=28.48205310554517; path=/; HttpOnly; Domain=api.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "x-ms-routing-name=self; path=/; HttpOnly; Domain=api.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"RoomId\": 23570830,\n \"KeyName\": \"Item\",\n \"NumPurchasesEarned\": 2328,\n \"NumTokensEarned\": 964216,\n \"NumPurchasesPending\": 12,\n \"NumTokensPending\": 365\n },\n {\n \"RoomId\": 23570830,\n \"KeyName\": \"OMEGA Donation\",\n \"NumPurchasesEarned\": 43532,\n \"NumTokensEarned\": 3145,\n \"NumPurchasesPending\": 4,\n \"NumTokensPending\": 45678\n },\n {\n \"RoomId\": 17682826,\n \"KeyName\": \"DJ Access\",\n \"NumPurchasesEarned\": 78234,\n \"NumTokensEarned\": 562340,\n \"NumPurchasesPending\": 0,\n \"NumTokensPending\": 0\n },\n {\n \"RoomId\": 23570830,\n \"KeyName\": \"Small Donation\",\n \"NumPurchasesEarned\": 73467,\n \"NumTokensEarned\": 105342,\n \"NumPurchasesPending\": 0,\n \"NumTokensPending\": 0\n },\n {\n \"RoomId\": 17682826,\n \"KeyName\": \"VIP Access\",\n \"NumPurchasesEarned\": 578427,\n \"NumTokensEarned\": 3551350,\n \"NumPurchasesPending\": 1,\n \"NumTokensPending\": 500\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Room Consumables",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/stats/roomConsumables",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "stats",
+ "roomConsumables"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Room Consumables",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/stats/roomConsumables",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "stats",
+ "roomConsumables"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:58:58 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "267"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"RoomId\": 23570830,\n \"ConsumableName\": \"Key\",\n \"ImageName\": \"83560f729b7b4eb796d759680d22531d.jpg\",\n \"NumPurchasesEarned\": 46,\n \"NumTokensEarned\": 1612353560,\n \"NumPurchasesPending\": 114250,\n \"NumTokensPending\": 351240\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Currency Packages",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/stats/currencyPurchaseOffers",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "stats",
+ "currencyPurchaseOffers"
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Inventions List",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/stats/inventions",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "stats",
+ "inventions"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Inventions List",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/stats/inventions",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "stats",
+ "inventions"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 10:00:37 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "392"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"InventionName\": \"Modern Sofabed\",\n \"ImageName\": \"f369d37212d543d9830989b36e8bb5ba.jpg\",\n \"NumPurchasesEarned\": 315231,\n \"NumTokensEarned\": 35233770,\n \"NumPurchasesPending\": 0,\n \"NumTokensPending\": 0\n },\n {\n \"InventionName\": \"Chinese New Year Lantern\",\n \"ImageName\": \"56e90cdb9d8044e7979f0b87daa999f3.jpg\",\n \"NumPurchasesEarned\": 9679574,\n \"NumTokensEarned\": 63263480,\n \"NumPurchasesPending\": 0,\n \"NumTokensPending\": 0\n },\n {\n \"InventionName\": \"Bookshelf (Modern)\",\n \"ImageName\": \"a2d44f1f024e42c0b385e566c6e20b81.jpg\",\n \"NumPurchasesEarned\": 1647586,\n \"NumTokensEarned\": 72132670,\n \"NumPurchasesPending\": 0,\n \"NumTokensPending\": 0\n }\n]"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "event": [
+ {
+ "listen": "prerequest",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ },
+ {
+ "listen": "test",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "name": "Playlists",
+ "item": [
+ {
+ "name": "Get Playlist Information From ID",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/playlists/:playlistId",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "playlists",
+ ":playlistId"
+ ],
+ "variable": [
+ {
+ "key": "playlistId",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Get Playlist Information From ID",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://rooms.rec.net/playlists/:playlistId",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "playlists",
+ ":playlistId"
+ ],
+ "variable": [
+ {
+ "key": "playlistId",
+ "value": "17859340"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:56:26 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"PlaylistId\": 17859340,\n \"Name\": \"FeaturedRooms\",\n \"Description\": \"A collection of excellent new community rooms, updated weekly!\",\n \"ImageName\": \"2gajqgplcuttt9zirj9if6p8z.jpg\",\n \"WarningMask\": 0,\n \"CustomWarning\": \"\",\n \"CreatorAccountId\": 1,\n \"State\": 0,\n \"Accessibility\": 1,\n \"SupportsLevelVoting\": true,\n \"IsRRO\": false,\n \"SupportsScreens\": true,\n \"SupportsWalkVR\": true,\n \"SupportsTeleportVR\": true,\n \"SupportsVRLow\": true,\n \"SupportsQuest2\": true,\n \"SupportsMobile\": true,\n \"SupportsJuniors\": true,\n \"MinLevel\": 0,\n \"CreatedAt\": \"2020-05-21T17:32:23.943308Z\",\n \"Stats\": {\n \"CheerCount\": 2394,\n \"FavoriteCount\": 7524,\n \"VisitorCount\": 1240584,\n \"VisitCount\": 2150244\n }\n}"
+ }
+ ]
+ }
+ ],
+ "description": "This section contains all the endpoints that can be used to retrieve playlist information. More information on playlist and playlists information is given below.\n\n## Playlist Properties\n\n| Property | Type | Description |\n| --- | --- | --- |\n| Playlist ID | Int | Each playlist has a unique ID associated with it. Playlist IDs are sequential which means that every time a new playlist is created, it's ID will be +1 of the previous playlist created. Playlist IDs start at 17859340 with the \"FeaturedRooms\" playlist, and the playlist's id corresponds to the order they are in game. |\n| Playlist Name | String | This is the unique name of the playlist. |\n| Playlist Description | String | This is the description of the playlist. |\n| Image Name | String | This is the file name of the room thumbnail, and it can be used to get a link to the image itself from this endpoint, `https://img.rec.net/:imageName`. |\n| Custom Warning | String | This is the warning on the playlist. If no warning was set, then this property will be null. |\n| Creator Account ID | Int | This is the internal account ID of the player who made the playlist. For more information regarding account information look at the [Accounts](https://colinxyz.postman.co/workspace/My-Workspace~4352b2cf-e1b4-4aeb-856c-0fee7f62c96b/documentation/13848200-ed8c30d7-95b7-4749-961a-7fab1ec0f78f?entity=folder-72845adf-0224-43a6-abda-7bff6fde3d03) section. |\n| Accessibility | Int | This property defines who is able to access the playlist. If this is equal to 1, then it's accessibility is set to public, and everyone can access it. If this is equal to 0, then it's accessibility is set to private, and only the room owner and co-owners will be able to access it. |\n| Created At | String | This is the time the playlist was created. |\n| Stats | Object | This is the playlist statistics. It has four properties which gives information on how people have interacted in that room. `VisitCount` and `VisitorCount` are different because `VisitCount` is the total number of times a room has been visited whereas `VisitorCount` is the number of unique players who visited a playlist. |\n\n## Include Parameter\n\nThe `include` parameter takes an integer as an input, and returns different information based on it's value. Each value and it's corresponding information is listed below.\n\n| Value | Description |\n| --- | --- |\n| 1 | This returns an object array of room information for rooms that are in the playlist. For more information on rooms please refer to the [Rooms](https://documenter.getpostman.com/view/13848200/TVt184DN#531b844c-5b15-4185-9bf7-d191a3cd3247) section. |\n| 2 | This returns an object array of room information for rooms that are in the playlist along with subroom information for each room. For more information on rooms please refer to the [Rooms](https://documenter.getpostman.com/view/13848200/TVt184DN#531b844c-5b15-4185-9bf7-d191a3cd3247) section. |\n| 4 | This returns an object array of information on the playlist's tags. Each tag has a type, and any thing with a type of 0 are tags that were set by a player. Currently none of the playlist have tags on them. |\n| 64 | This returns the score of a playlist. Currently all playlist except the featured playlist have a score of 0. |\n\nThese values can be added to get more information at once.",
+ "auth": {
+ "type": "noauth"
+ },
+ "event": [
+ {
+ "listen": "prerequest",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ },
+ {
+ "listen": "test",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "name": "Top Creators",
+ "item": [
+ {
+ "name": "Top Creators",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/top/creators",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ "top",
+ "creators"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Top Creators",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/top/creators",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ "top",
+ "creators"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "TiPMix=73.990701219994; path=/; HttpOnly; Domain=clubs.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "x-ms-routing-name=self; path=/; HttpOnly; Domain=clubs.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:42e1aaa9-cdfd-4242-a7a2-5127ecc37da4"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ },
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:57:24 GMT"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"clubId\": 868504,\n \"accountId\": 555477,\n \"subscriberCount\": 955454\n },\n {\n \"clubId\": 873184,\n \"accountId\": 738653,\n \"subscriberCount\": 642913\n },\n {\n \"clubId\": 513547,\n \"accountId\": 1217951,\n \"subscriberCount\": 511783\n },\n {\n \"clubId\": 10313408,\n \"accountId\": 16062468,\n \"subscriberCount\": 410481\n },\n {\n \"clubId\": 630812,\n \"accountId\": 613951,\n \"subscriberCount\": 381932\n },\n {\n \"clubId\": 3046706,\n \"accountId\": 7489405,\n \"subscriberCount\": 345150\n },\n {\n \"clubId\": 1173193,\n \"accountId\": 1955927,\n \"subscriberCount\": 284702\n },\n {\n \"clubId\": 66374,\n \"accountId\": 665854,\n \"subscriberCount\": 282218\n },\n {\n \"clubId\": 1310466,\n \"accountId\": 3673034,\n \"subscriberCount\": 271003\n },\n {\n \"clubId\": 13214895,\n \"accountId\": 19356378,\n \"subscriberCount\": 262205\n },\n {\n \"clubId\": 1195139,\n \"accountId\": 35182,\n \"subscriberCount\": 257722\n },\n {\n \"clubId\": 824946,\n \"accountId\": 924029,\n \"subscriberCount\": 251220\n },\n {\n \"clubId\": 706569,\n \"accountId\": 31469,\n \"subscriberCount\": 247841\n },\n {\n \"clubId\": 938700,\n \"accountId\": 1077628,\n \"subscriberCount\": 241891\n },\n {\n \"clubId\": 1025060,\n \"accountId\": 565902,\n \"subscriberCount\": 236492\n },\n {\n \"clubId\": 6206128,\n \"accountId\": 11389841,\n \"subscriberCount\": 228676\n },\n {\n \"clubId\": 177252,\n \"accountId\": 38090,\n \"subscriberCount\": 219488\n },\n {\n \"clubId\": 4461835,\n \"accountId\": 9273472,\n \"subscriberCount\": 219363\n },\n {\n \"clubId\": 931653,\n \"accountId\": 904934,\n \"subscriberCount\": 213608\n },\n {\n \"clubId\": 1082805,\n \"accountId\": 234580,\n \"subscriberCount\": 212325\n },\n {\n \"clubId\": 456764,\n \"accountId\": 228577,\n \"subscriberCount\": 198879\n },\n {\n \"clubId\": 675968,\n \"accountId\": 4805793,\n \"subscriberCount\": 198382\n },\n {\n \"clubId\": 25975947,\n \"accountId\": 33344968,\n \"subscriberCount\": 178237\n },\n {\n \"clubId\": 569547,\n \"accountId\": 4346455,\n \"subscriberCount\": 165984\n },\n {\n \"clubId\": 278022,\n \"accountId\": 124411,\n \"subscriberCount\": 165595\n },\n {\n \"clubId\": 799938,\n \"accountId\": 1488691,\n \"subscriberCount\": 152003\n },\n {\n \"clubId\": 5494201,\n \"accountId\": 10561581,\n \"subscriberCount\": 146115\n },\n {\n \"clubId\": 915701,\n \"accountId\": 868411,\n \"subscriberCount\": 144859\n },\n {\n \"clubId\": 1462920,\n \"accountId\": 5778638,\n \"subscriberCount\": 144685\n },\n {\n \"clubId\": 4406537,\n \"accountId\": 9207337,\n \"subscriberCount\": 137647\n },\n {\n \"clubId\": 145785,\n \"accountId\": 271562,\n \"subscriberCount\": 135703\n },\n {\n \"clubId\": 1246837,\n \"accountId\": 758961,\n \"subscriberCount\": 134582\n },\n {\n \"clubId\": 1265010,\n \"accountId\": 3194624,\n \"subscriberCount\": 131796\n },\n {\n \"clubId\": 463852,\n \"accountId\": 3975546,\n \"subscriberCount\": 128837\n },\n {\n \"clubId\": 4276685,\n \"accountId\": 1242214,\n \"subscriberCount\": 128458\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Number of Top Creators",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/top/creators/count",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ "top",
+ "creators",
+ "count"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Number of Top Creators",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://clubs.rec.net/subscription/top/creators/count",
+ "protocol": "https",
+ "host": [
+ "clubs",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "subscription",
+ "top",
+ "creators",
+ "count"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:42e1aaa9-cdfd-4242-a7a2-5127ecc37da4"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ },
+ {
+ "key": "Date",
+ "value": "Tue, 31 May 2022 23:57:44 GMT"
+ }
+ ],
+ "cookie": [],
+ "body": "35"
+ }
+ ]
+ }
+ ],
+ "auth": {
+ "type": "noauth"
+ },
+ "event": [
+ {
+ "listen": "prerequest",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ },
+ {
+ "listen": "test",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "name": "Misc",
+ "item": [
+ {
+ "name": "Device Stats / Last Online",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "id",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://match.rec.net/player",
+ "protocol": "https",
+ "host": [
+ "match",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "player"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Device Stats / Last Online",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "id",
+ "value": "10441985",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://match.rec.net/player",
+ "protocol": "https",
+ "host": [
+ "match",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "player"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 01:08:21 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3eeea100-9e78-439d-9097-1e276b485ad8"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"playerId\": 10441985,\n \"statusVisibility\": 0,\n \"deviceClass\": 5,\n \"vrMovementMode\": 1,\n \"roomInstance\": null,\n \"lastOnline\": \"2022-05-31T21:29:53.3488939Z\",\n \"isOnline\": false,\n \"appVersion\": \"20220524\"\n }\n]"
+ }
+ ]
+ },
+ {
+ "name": "Influencer Support",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/influencerpartnerprogram/influencer?accountId=",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "influencerpartnerprogram",
+ "influencer"
+ ],
+ "query": [
+ {
+ "key": "accountId",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Influencer Support",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/influencerpartnerprogram/influencer?accountId=70145671",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "influencerpartnerprogram",
+ "influencer"
+ ],
+ "query": [
+ {
+ "key": "accountId",
+ "value": "70145671"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 08:39:10 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "128"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "TiPMix=80.19292068346398; path=/; HttpOnly; Domain=api.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "x-ms-routing-name=self; path=/; HttpOnly; Domain=api.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "28848275"
+ }
+ ]
+ },
+ {
+ "name": "ID is Influencer",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/influencerpartnerprogram/isinfluencer?accountId=",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "influencerpartnerprogram",
+ "isinfluencer"
+ ],
+ "query": [
+ {
+ "key": "accountId",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "ID is Influencer",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/influencerpartnerprogram/isinfluencer?accountId=10441985",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "influencerpartnerprogram",
+ "isinfluencer"
+ ],
+ "query": [
+ {
+ "key": "accountId",
+ "value": "10441985"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 09:02:52 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "123"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "false"
+ }
+ ]
+ },
+ {
+ "name": "Change Room Showcases on Profile",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "roomId",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/showcase",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "showcase"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Change Room Showcases on Profile",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "roomId",
+ "value": "23570830",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://rooms.rec.net/showcase",
+ "protocol": "https",
+ "host": [
+ "rooms",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "showcase"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 10:18:27 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:2fa66c59-f777-4ade-8ef2-62d99a7ba66e"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Success\": true,\n \"ErrorId\": null,\n \"Error\": null\n}"
+ }
+ ]
+ },
+ {
+ "name": "Create Meetup",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "data",
+ "value": "{\"ExtraJson\":\"{\\\"RoomId\\\":______}\",\"Type\":2}",
+ "type": "text"
+ },
+ {
+ "key": "validHours",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "codeType",
+ "value": "",
+ "type": "text"
+ },
+ {
+ "key": "extraDataId",
+ "value": "",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://link.rec.net/actionlink",
+ "protocol": "https",
+ "host": [
+ "link",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "actionlink"
+ ]
+ },
+ "description": "| **Value** | **Type** | **Description** |\n| --- | --- | --- |\n| data | json | {\"ExtraJson\":\"{\\\\\"RoomId\\\\\":51437513}\",\"Type\":1} |\n| validHours | int | Number of hours that the meetup link is valid for |\n| codeType | int | ?? |\n| extraDataId | int | Extra data such as Room ID. |"
+ },
+ "response": [
+ {
+ "name": "Create Meetup",
+ "originalRequest": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "data",
+ "value": "{\"ExtraJson\":\"{\\\"RoomId\\\":51437513}\",\"Type\":2}",
+ "type": "text"
+ },
+ {
+ "key": "validHours",
+ "value": "2160",
+ "type": "text"
+ },
+ {
+ "key": "codeType",
+ "value": "2",
+ "type": "text"
+ },
+ {
+ "key": "extraDataId",
+ "value": "51437513",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://link.rec.net/actionlink",
+ "protocol": "https",
+ "host": [
+ "link",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "actionlink"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Transfer-Encoding",
+ "value": "chunked"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "TiPMix=98.3983317848287; path=/; HttpOnly; Domain=link.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Set-Cookie",
+ "value": "x-ms-routing-name=self; path=/; HttpOnly; Domain=link.rec.net; Max-Age=3600; Secure; SameSite=None"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:a3f20691-fd0e-47d2-bfb2-c9dcffb0b091"
+ },
+ {
+ "key": "Strict-Transport-Security",
+ "value": "max-age=2592000"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ },
+ {
+ "key": "Date",
+ "value": "Wed, 01 Jun 2022 10:37:19 GMT"
+ }
+ ],
+ "cookie": [],
+ "body": "\"https://rec.net?a=4pka7xfhp\""
+ }
+ ]
+ },
+ {
+ "name": "Get Notifications",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/messages/v3/get?skip=0&take=100&forWebsite=true",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "messages",
+ "v3",
+ "get"
+ ],
+ "query": [
+ {
+ "key": "skip",
+ "value": "0"
+ },
+ {
+ "key": "take",
+ "value": "100"
+ },
+ {
+ "key": "forWebsite",
+ "value": "true"
+ }
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Get Notifications",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/messages/v3/get?skip=0&take=100&forWebsite=true",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "messages",
+ "v3",
+ "get"
+ ],
+ "query": [
+ {
+ "key": "skip",
+ "value": "0"
+ },
+ {
+ "key": "take",
+ "value": "100"
+ },
+ {
+ "key": "forWebsite",
+ "value": "true"
+ }
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Sun, 05 Jun 2022 01:06:26 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "981"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "{\n \"Results\": [\n {\n \"Id\": 4668547914,\n \"FromPlayerId\": 59000104,\n \"SentTime\": \"2022-06-02T14:54:41.12Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 4653492790,\n \"FromPlayerId\": 70152537,\n \"SentTime\": \"2022-05-31T21:32:41.31Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 4561658120,\n \"FromPlayerId\": 70145671,\n \"SentTime\": \"2022-05-21T21:03:35.167Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 4560043749,\n \"FromPlayerId\": 3152212,\n \"SentTime\": \"2022-05-21T18:46:43.59Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 4557570349,\n \"FromPlayerId\": 65738854,\n \"SentTime\": \"2022-05-21T14:43:41.333Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 4357605272,\n \"FromPlayerId\": 726402,\n \"SentTime\": \"2022-04-27T17:09:16.407Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 4330931490,\n \"FromPlayerId\": 1091522,\n \"SentTime\": \"2022-04-24T14:03:47.107Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 4194804188,\n \"FromPlayerId\": 63420996,\n \"SentTime\": \"2022-04-10T19:02:47.937Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3992642877,\n \"FromPlayerId\": 8061378,\n \"SentTime\": \"2022-03-18T00:55:17.537Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3881485487,\n \"FromPlayerId\": 11188006,\n \"SentTime\": \"2022-03-05T14:41:44.213Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3835814637,\n \"FromPlayerId\": 3478337,\n \"SentTime\": \"2022-02-27T18:40:42.717Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3799558521,\n \"FromPlayerId\": 32553216,\n \"SentTime\": \"2022-02-24T15:49:43.047Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3747900942,\n \"FromPlayerId\": 42597062,\n \"SentTime\": \"2022-02-19T21:59:44.58Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3741992064,\n \"FromPlayerId\": 13828154,\n \"SentTime\": \"2022-02-19T14:19:33.55Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3741013542,\n \"FromPlayerId\": 18257960,\n \"SentTime\": \"2022-02-19T10:48:14.383Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3729785969,\n \"FromPlayerId\": 51378583,\n \"SentTime\": \"2022-02-18T12:33:15.087Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3713863334,\n \"FromPlayerId\": 38689604,\n \"SentTime\": \"2022-02-16T13:33:26.733Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3708825625,\n \"FromPlayerId\": 50349657,\n \"SentTime\": \"2022-02-15T21:23:31.81Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3708748722,\n \"FromPlayerId\": 26893026,\n \"SentTime\": \"2022-02-15T21:13:10.617Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3544643467,\n \"FromPlayerId\": 7080195,\n \"SentTime\": \"2022-01-28T22:11:18.87Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3315918033,\n \"FromPlayerId\": 40047371,\n \"SentTime\": \"2021-12-30T20:09:34.923Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n },\n {\n \"Id\": 3301871221,\n \"FromPlayerId\": 38740140,\n \"SentTime\": \"2021-12-29T01:55:57.5Z\",\n \"Type\": 4,\n \"Data\": \"\",\n \"RoomId\": null,\n \"PlayerEventId\": null\n }\n ],\n \"TotalResults\": 22\n}"
+ }
+ ]
+ },
+ {
+ "name": "Get Wishlist",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/itemWishlists/v1/wishlist/me",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "itemWishlists",
+ "v1",
+ "wishlist",
+ "me"
+ ]
+ }
+ },
+ "response": [
+ {
+ "name": "Get Wishlist",
+ "originalRequest": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/itemWishlists/v1/wishlist/me",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "itemWishlists",
+ "v1",
+ "wishlist",
+ "me"
+ ]
+ }
+ },
+ "status": "OK",
+ "code": 200,
+ "_postman_previewlanguage": "json",
+ "header": [
+ {
+ "key": "Date",
+ "value": "Wed, 15 Jun 2022 18:47:12 GMT"
+ },
+ {
+ "key": "Content-Type",
+ "value": "application/json; charset=utf-8"
+ },
+ {
+ "key": "Content-Length",
+ "value": "317"
+ },
+ {
+ "key": "Connection",
+ "value": "keep-alive"
+ },
+ {
+ "key": "Server",
+ "value": "Microsoft-IIS/10.0"
+ },
+ {
+ "key": "Cache-Control",
+ "value": "no-cache"
+ },
+ {
+ "key": "Content-Encoding",
+ "value": "gzip"
+ },
+ {
+ "key": "Expires",
+ "value": "-1"
+ },
+ {
+ "key": "Pragma",
+ "value": "no-cache"
+ },
+ {
+ "key": "Vary",
+ "value": "Accept-Encoding"
+ },
+ {
+ "key": "X-AspNet-Version",
+ "value": "4.0.30319"
+ },
+ {
+ "key": "Request-Context",
+ "value": "appId=cid-v1:3661966b-4174-44af-b435-62704f1c0225"
+ },
+ {
+ "key": "X-Powered-By",
+ "value": "ASP.NET"
+ }
+ ],
+ "cookie": [],
+ "body": "[\n {\n \"WishlistItemId\": \"c998dc5e-9c6e-4971-bbd2-83a8552eaa47\",\n \"AccountId\": 10441985,\n \"PurchasableItemId\": 1274,\n \"CreatedAt\": \"2021-08-15T15:37:08.2861268Z\"\n },\n {\n \"WishlistItemId\": \"c253dfb6-5d8d-4095-8c21-6e3d57d251b4\",\n \"AccountId\": 10441985,\n \"PurchasableItemId\": 2137,\n \"CreatedAt\": \"2021-08-15T15:36:56.5877143Z\"\n }\n]"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "More Research Needed",
+ "item": [
+ {
+ "name": "Ignore",
+ "request": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "id",
+ "value": "100",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://api.rec.net/api/relationships/v1/mute",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "relationships",
+ "v1",
+ "mute"
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Currencies",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/roomcurrencies/v1/currencies?roomId=",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "roomcurrencies",
+ "v1",
+ "currencies"
+ ],
+ "query": [
+ {
+ "key": "roomId",
+ "value": ""
+ }
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Get All Currency Balances",
+ "request": {
+ "auth": {
+ "type": "bearer",
+ "bearer": [
+ {
+ "key": "token",
+ "value": "{{Token}}",
+ "type": "string"
+ }
+ ]
+ },
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "http://api.rec.net/api/roomcurrencies/v1/getAllBalances?roomId=23570830",
+ "protocol": "http",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "roomcurrencies",
+ "v1",
+ "getAllBalances"
+ ],
+ "query": [
+ {
+ "key": "roomId",
+ "value": "23570830"
+ }
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "New Request",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://api.rec.net/api/avatar/v3/gifts/generate",
+ "protocol": "https",
+ "host": [
+ "api",
+ "rec",
+ "net"
+ ],
+ "path": [
+ "api",
+ "avatar",
+ "v3",
+ "gifts",
+ "generate"
+ ]
+ }
+ },
+ "response": []
+ }
+ ]
+ },
+ {
+ "name": "Community Tools",
+ "item": [],
+ "description": "#### **Other API Documentations:**\n\n[API Documentations (Fandom)](https://rec-room.fandom.com/wiki/Current_Api_Documentation) (+[Discord](https://discord.io/recnetapi))\n\n[ColinXYZ's Documentation](https://documenter.getpostman.com/view/13848200/TVt184DN#69bd1bfd-1052-422d-b16e-e18e0d7668dc)\n\n#### **Zigzatuzoo's Tools**\n\n[RR Animated PFP](https://github.com/zigzatuzoo/Rec-Room-Animated-Profile-Picture)\n\n[API Tool Box](https://github.com/zigzatuzoo/Rec-Room-API-Tool-Box)\n\n#### Auth Tools\n\n[RecNet Login (Jegarde)](https://github.com/Jegarde/RecNet-Login)\n\n#### **Other Tools**\n\n[RecNetBotV2 (Discord Bot)](https://github.com/Jegarde/RecNetBotV2)\n\n[RecNetEventSearcher](https://github.com/Jegarde/RecNetEventSearcher)"
+ }
+ ],
+ "event": [
+ {
+ "listen": "prerequest",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ },
+ {
+ "listen": "test",
+ "script": {
+ "type": "text/javascript",
+ "exec": [
+ ""
+ ]
+ }
+ }
+ ],
+ "variable": [
+ {
+ "value": "",
+ "disabled": true
+ }
+ ]
+}
\ No newline at end of file
diff --git a/research/RecNet API.postman_collection.json:Zone.Identifier b/research/RecNet API.postman_collection.json:Zone.Identifier
new file mode 100644
index 0000000..d6c1ec6
Binary files /dev/null and b/research/RecNet API.postman_collection.json:Zone.Identifier differ
diff --git a/research/openapi-specification.json b/research/openapi-specification.json
new file mode 100644
index 0000000..fc112f5
--- /dev/null
+++ b/research/openapi-specification.json
@@ -0,0 +1,1769 @@
+{
+ "openapi": "3.0.0",
+ "info": {
+ "title": "RecNet API",
+ "description": "This is an **unofficial documentation** of the RecNet API, compiled from [RecNetAPI Docs](https://rec-room.fandom.com/wiki/Current_Api_Documentation) and [RecNet API](https://documenter.getpostman.com/view/13848200/TVt184DN#69bd1bfd-1052-422d-b16e-e18e0d7668dc). These 2 places were missing a fair few requests, so I thought it would be best to use Postman to compile them all into one place.\n\nFeel free to use this documentation as you see fit, however, if you are copying the docs - make sure you give credit :)",
+ "version": "1.0.0"
+ },
+ "servers": [],
+ "paths": {
+ "/api/images/v4/:photoId": {
+ "get": {
+ "tags": [
+ "Image Information From ID"
+ ],
+ "summary": "Image Information From ID",
+ "description": "This takes an image ID as a path parameter, and returns an object that contains detailed information about an image.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "//api/images/v1/:photoId/comments": {
+ "get": {
+ "tags": [
+ "Image Comments"
+ ],
+ "summary": "Image Comments",
+ "description": "This takes an image ID as a path parameter, and returns an array of objects that detail comment information.\n\n## Comment Properties\n\n| Property | Type | Description |\n| --- | --- | --- |\n| Saved Image Comment ID | Int | Each comment has a unique ID associated with it. Comment IDs are sequential which means that every time a new comment is shared to RecNet, it's ID will be +1 of the previous comment shared to RecNet. |\n| Saved Image ID | Int | This is the internal image ID of the image that the comment is associated with. |\n| Player ID | Int | This is the internal account ID of the player who made the comment. For more information regarding account information look at the [Accounts](https://documenter.getpostman.com/view/13848200/TVt184DN#72845adf-0224-43a6-abda-7bff6fde3d03) section. |\n| Comment | String | This is the comment data that is associated with the image & account ID. |",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/images/v1/:imageId/cheers": {
+ "get": {
+ "tags": [
+ "Image Cheers"
+ ],
+ "summary": "Image Cheers",
+ "description": "This takes an image ID as a path parameter, and returns an array of all the internal account IDs of all the players that cheered the cheered the image.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/images/v3/feed/player/:playerId": {
+ "get": {
+ "tags": [
+ "Images of a Player"
+ ],
+ "summary": "Images of a Player",
+ "description": "This is takes an account ID as a path parameter, and returns an array of all the image objects that have the account ID in the `TaggedPlayerIds` property.",
+ "parameters": [
+ {
+ "name": "take",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/images/v4/player/:playerId": {
+ "get": {
+ "tags": [
+ "Images Taken By a Player"
+ ],
+ "summary": "Images Taken By a Player",
+ "description": "This takes an account ID as a path parameter, and returns an array of all the image objects that have the account ID as it's `PlayerId` property.",
+ "parameters": [
+ {
+ "name": "take",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/images/v1/playerevent/:eventId": {
+ "get": {
+ "tags": [
+ "Images Taken During an Event"
+ ],
+ "summary": "Images Taken During an Event",
+ "description": "This takes an event ID as a path parameter, and returns an array of all the image objects that have the event ID as it's `PlayerEventId` property.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/images/v4/room/:roomId": {
+ "get": {
+ "tags": [
+ "Images Taken in a Room"
+ ],
+ "summary": "Images Taken in a Room",
+ "description": "This takes a room ID as a path parameter, and returns an array of all the image objects that have the room ID as it's `RoomId` property.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/images/v3/feed/global": {
+ "get": {
+ "tags": [
+ "Trending Images"
+ ],
+ "summary": "Trending Images",
+ "description": "This returns an array of image objects that are on the front page of RecNet.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/images/v3/bulk": {
+ "post": {
+ "tags": [
+ "Bulk Image Information"
+ ],
+ "summary": "Bulk Image Information",
+ "description": "This returns an array of image objects whos IDs match the IDs that were passed in to the form body. The array is in reverse order of the way the IDs appear in the body.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "//api/images/v1/cheer": {
+ "post": {
+ "tags": [
+ "Cheer Image"
+ ],
+ "summary": "Cheer Image",
+ "description": "Cheers/Uncheers an image based on given values\n\n| **Value** | **Type** | **Description** |\n| --- | --- | --- |\n| SavedImageId | int | Image being cheered/uncheered | Image being cheered/uncheered |\n| Cheer | boolean | True/False | True/False |",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/images/v1/:imageid/report": {
+ "post": {
+ "tags": [
+ "Report Image"
+ ],
+ "summary": "Report Image",
+ "description": "Reports an image with `imageId` to be reviewed by the RecRoom Support Team.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/images/v1/:imageid/player/:playerid/untag": {
+ "put": {
+ "tags": [
+ "Untag from Image"
+ ],
+ "summary": "Untag from Image",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/:roomId": {
+ "get": {
+ "tags": [
+ "Room Information From ID"
+ ],
+ "summary": "Room Information From ID",
+ "description": "This takes a room ID as a path parameter, and returns an object that contains detailed information about a room. An optional query parameter called `inc`Include Parameter\n\nThe `include` parameter takes an integer as an input, and returns different information based on it's value. Each value and it's corresponding information is listed below.\n\n| Value | Description |\n| --- | --- |\n| 2 | This returns an object array of subroom information that is connected to the room |\n| 4 | This returns an object array of players who have special permissions. The role value is representative of what perms a player has. 255 is the owner, 30 is a co-owner, 20 is a moderator, and 10 is host. |\n| 8 | This returns an object array of information on the room's tags. Each tag has a type, and any thing with a type of 0 are tags that were set by a player. |\n| 32 | This returns the promo content that was set on RecNet. |\n| 64 | This returns an object that describes how a room is ranked in relation to the hot page. |\n| 256 | This returns an object that has information on a rooms custom loading screen. |\n\nThese values can be added to get more information at once.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms": {
+ "get": {
+ "tags": [
+ "Room Information From Room Name"
+ ],
+ "summary": "Room Information From Room Name",
+ "description": "This takes a room name as a query parameter, and returns an object that contains detailed information about a room.",
+ "parameters": [
+ {
+ "name": "name",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/createdby/:playerId": {
+ "get": {
+ "tags": [
+ "Rooms Created by a Player"
+ ],
+ "summary": "Rooms Created by a Player",
+ "description": "This takes an account ID as a path parameter, and returns an array of all the room objects that have the account ID as it's `CreatorAccountId` property.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/ownedby/:playerId": {
+ "get": {
+ "tags": [
+ "Rooms Owned by a Player"
+ ],
+ "summary": "Rooms Owned by a Player",
+ "description": "This takes an account ID as a path parameter, and returns an array of all the room objects that represent rooms owned by a player.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/search": {
+ "get": {
+ "tags": [
+ "Room Search"
+ ],
+ "summary": "Room Search",
+ "description": "This takes a search query as a query parameter, and returns an array of all the room objects that are most relevant to the search query.",
+ "parameters": [
+ {
+ "name": "query",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/showcase/:playerid": {
+ "get": {
+ "tags": [
+ "Room Showcase"
+ ],
+ "summary": "Room Showcase",
+ "description": "This returns an array of room Ids that a player has chosen to showcase.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/roomserver/rooms/hot": {
+ "get": {
+ "tags": [
+ "Hot Page Rooms"
+ ],
+ "summary": "Hot Page Rooms",
+ "description": "This returns an array all room objects from greatest to least hot score.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/featuredrooms/current": {
+ "get": {
+ "tags": [
+ "Featured Rooms"
+ ],
+ "summary": "Featured Rooms",
+ "description": "Returns basic information on the currently featured rooms.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/bulk": {
+ "get": {
+ "tags": [
+ "Bulk Room Information"
+ ],
+ "summary": "Bulk Room Information",
+ "description": "This returns an array of room objects whos IDs match the IDs that were passed in to the form body. The array is in reverse order of the way the IDs appear in the body.",
+ "parameters": [
+ {
+ "name": "id",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "include",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/:roomid/roles/myrole": {
+ "get": {
+ "tags": [
+ "Room Role"
+ ],
+ "summary": "Room Role",
+ "description": "Gets bearer's role in room with roomId.\n\n| **Value** | **Role** |\n| --- | --- |\n| 255 | Owner |\n| 30 | Co-owner |\n| 20 | Moderator |\n| 10 | Member |",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/:roomid/interactionby/me": {
+ "get": {
+ "tags": [
+ "Room Interactions"
+ ],
+ "summary": "Room Interactions",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/:roomId/subrooms/:subroomId/datahistory": {
+ "get": {
+ "tags": [
+ "Get Room Backups"
+ ],
+ "summary": "Get Room Backups",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/:roomid/interactionby/me/favorite": {
+ "put": {
+ "tags": [
+ "Favourite Room"
+ ],
+ "summary": "Favourite Room",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "Unfavourite Room"
+ ],
+ "summary": "Unfavourite Room",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/:roomid/interactionby/me/cheer": {
+ "put": {
+ "tags": [
+ "Cheer Room"
+ ],
+ "summary": "Cheer Room",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "Uncheer Room"
+ ],
+ "summary": "Uncheer Room",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/:roomId/modify": {
+ "put": {
+ "tags": [
+ "Update Room Settings"
+ ],
+ "summary": "Update Room Settings",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/:roomId/subrooms/:subroomId/restoredata": {
+ "post": {
+ "tags": [
+ "Restore Room Backup"
+ ],
+ "summary": "Restore Room Backup",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/:roomId/promo_external": {
+ "put": {
+ "tags": [
+ "Set Room Video Promotion"
+ ],
+ "summary": "Set Room Video Promotion",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "//rooms/:roomId": {
+ "delete": {
+ "tags": [
+ "Delete Room"
+ ],
+ "summary": "Delete Room",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/:roomId/logs/getForPlayer": {
+ "post": {
+ "tags": [
+ "Get Logs"
+ ],
+ "summary": "Get Logs",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/:roomid/image": {
+ "put": {
+ "tags": [
+ "Set Room Image"
+ ],
+ "summary": "Set Room Image",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/rooms/:roomId/roles/:accountId": {
+ "put": {
+ "tags": [
+ "Set Player Role"
+ ],
+ "summary": "Set Player Role",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/playerevents/v1": {
+ "get": {
+ "tags": [
+ "All Events"
+ ],
+ "summary": "All Events",
+ "description": "This returns an array of all event objects from newest to oldest.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/playerevents/v1/:eventId": {
+ "get": {
+ "tags": [
+ "Event Information From ID"
+ ],
+ "summary": "Event Information From ID",
+ "description": "This takes an event ID as a path parameter, and returns an object that contains detailed information about an event.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/playerevents/v1/:eventId/responses": {
+ "get": {
+ "tags": [
+ "Event Responses"
+ ],
+ "summary": "Event Responses",
+ "description": "This takes an event ID as a path parameter, and returns an array of objects that detail response information.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/playerevents/v1/creator/:playerId": {
+ "get": {
+ "tags": [
+ "Events Created by a Player"
+ ],
+ "summary": "Events Created by a Player",
+ "description": "This takes an account ID as a path parameter, and returns an array of all the event objects that have the account ID as it's `CreatorPlayerId` property.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/playerevents/v1/search": {
+ "get": {
+ "tags": [
+ "Event Search"
+ ],
+ "summary": "Event Search",
+ "description": "This takes a search query as a query parameter, and returns an array of all the event objects that are most relevant to the search query.",
+ "parameters": [
+ {
+ "name": "query",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/playerevents/v1/room/:roomId": {
+ "get": {
+ "tags": [
+ "Events Happening in a Room"
+ ],
+ "summary": "Events Happening in a Room",
+ "description": "This takes a room ID as a path parameter, and returns an array of all the event objects that have the room ID as it's `RoomId` property.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/playerevents/v1/bulk": {
+ "post": {
+ "tags": [
+ "Bulk Event Information"
+ ],
+ "summary": "Bulk Event Information",
+ "description": "This returns an array of event objects whos IDs match the IDs that were passed in to the form body. The array is in reverse order of the way the IDs appear in the body.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/playerevents/v2": {
+ "post": {
+ "tags": [
+ "Create Event"
+ ],
+ "summary": "Create Event",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/playerevents/v2/:eventId": {
+ "put": {
+ "tags": [
+ "Update Event"
+ ],
+ "summary": "Update Event",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/playerevents/v1/bulkInvite": {
+ "post": {
+ "tags": [
+ "Invite Players to Event"
+ ],
+ "summary": "Invite Players to Event",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/account/:playerId": {
+ "get": {
+ "tags": [
+ "Player Information From ID"
+ ],
+ "summary": "Player Information From ID",
+ "description": "This takes an account ID as a path parameter, and returns an object that contains detailed information about a player.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/account": {
+ "get": {
+ "tags": [
+ "Player Information From Username"
+ ],
+ "summary": "Player Information From Username",
+ "description": "This takes a username as a query parameter, and returns an object that contains detailed information about a player.",
+ "parameters": [
+ {
+ "name": "username",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/account/:playerId/bio": {
+ "get": {
+ "tags": [
+ "Player Bio"
+ ],
+ "summary": "Player Bio",
+ "description": "This takes an account ID as a path parameter, and returns an object that has `AccountID` and `Bio` properties. The `Bio` property is the bio that is associated with the account ID.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/account/search": {
+ "get": {
+ "tags": [
+ "Player Search"
+ ],
+ "summary": "Player Search",
+ "description": "This takes a search query as a query parameter, and returns an array of all the account objects that are most relevant to the search query.",
+ "parameters": [
+ {
+ "name": "name",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/account/bulk": {
+ "post": {
+ "tags": [
+ "Bulk Player Information"
+ ],
+ "summary": "Bulk Player Information",
+ "description": "This returns an array of account objects whos IDs match the IDs that were passed in to the form body. The array is in reverse order of the way the IDs appear in the body.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/account/me/displayName": {
+ "put": {
+ "tags": [
+ "Change Nickname"
+ ],
+ "summary": "Change Nickname",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/account/me/profileimage": {
+ "put": {
+ "tags": [
+ "Change Profile Pic"
+ ],
+ "summary": "Change Profile Pic",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/account/me/bannerimage": {
+ "put": {
+ "tags": [
+ "Change Banner"
+ ],
+ "summary": "Change Banner",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/account/me": {
+ "delete": {
+ "tags": [
+ "Delete Account"
+ ],
+ "summary": "Delete Account",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/relationships/v6/current/friends": {
+ "get": {
+ "tags": [
+ "Get All Relationships"
+ ],
+ "summary": "Get All Relationships",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/relationships/v1/relationshipwith/:playerId": {
+ "get": {
+ "tags": [
+ "Relationship with Player"
+ ],
+ "summary": "Relationship with Player",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/relationships/v3/:id": {
+ "post": {
+ "tags": [
+ "Add Friend"
+ ],
+ "summary": "Add Friend",
+ "description": "Sends player with `ID` a friend request.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "Remove Friend"
+ ],
+ "summary": "Remove Friend",
+ "description": "Removes player with `ID` as a friend / retracts friend request.",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/relationships/v1/favorite": {
+ "get": {
+ "tags": [
+ "Favourite Friend"
+ ],
+ "summary": "Favourite Friend",
+ "description": "Sends player with `ID` a friend request.",
+ "parameters": [
+ {
+ "name": "id",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/relationships/v1/unfavorite": {
+ "get": {
+ "tags": [
+ "Unfavourite Friend"
+ ],
+ "summary": "Unfavourite Friend",
+ "description": "Sends player with `ID` a friend request.",
+ "parameters": [
+ {
+ "name": "id",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/PlayerCheer/v1/create": {
+ "post": {
+ "tags": [
+ "Cheer Player"
+ ],
+ "summary": "Cheer Player",
+ "description": "Data to be sent is classified into categories as shown below:\n\n| **Value** | **Category** |\n| --- | --- |\n| 0 | General |\n| 10 | Helpful |\n| 20 | Sportmanship |\n| 30 | Great Host |\n| 40 | Creative |",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/subscription/details/:id": {
+ "get": {
+ "tags": [
+ "Subscriber Count"
+ ],
+ "summary": "Subscriber Count",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/announcements/club/:id": {
+ "post": {
+ "tags": [
+ "Send Announcement"
+ ],
+ "summary": "Send Announcement",
+ "description": "| **Value** | **Description** |\n| --- | --- |\n| id | Requester's personal \"club id\" - found from [https://clubs.rec.net/subscription/details/](https://clubs.rec.net/subscription/details/10441985)ID
|\n| title | Intended announcement title |\n| body | Intended announcement description |\n| meta | {\"Type\":1,\"JsonData\":\"{\\\\\"RoomId\\\\\":**_____**}\"} |\n| imageName | image name (eg. \"c3dfd748c00d4fa5bd7bf530d5cc066c.jpg\") |\n\n## Meta Properties\n\n| **Property** | **Values** |\n| --- | --- |\n| Type | 0 = \"Default Announcement\", 1 = Room Accouncement, 3 = Event |\n| Json Data | \"Room ID\", \"PlayerEventId\" |",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/subscription/my/subscriptions": {
+ "get": {
+ "tags": [
+ "Subscription IDs"
+ ],
+ "summary": "Subscription IDs",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/subscription/my/subscribers": {
+ "get": {
+ "tags": [
+ "Subscriber IDs"
+ ],
+ "summary": "Subscriber IDs",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/subscription/:id": {
+ "post": {
+ "tags": [
+ "Subscribe"
+ ],
+ "summary": "Subscribe",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "Unsubscribe"
+ ],
+ "summary": "Unsubscribe",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/inventions/v1/featured": {
+ "get": {
+ "tags": [
+ "Current Featured Inventions"
+ ],
+ "summary": "Current Featured Inventions",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/inventions/v2/search": {
+ "get": {
+ "tags": [
+ "Search Inventions"
+ ],
+ "summary": "Search Inventions",
+ "description": "",
+ "parameters": [
+ {
+ "name": "value",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/inventions/v1/toptoday": {
+ "get": {
+ "tags": [
+ "Top Inventions"
+ ],
+ "summary": "Top Inventions",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/inventions/v1/details": {
+ "get": {
+ "tags": [
+ "Invention Tags from ID"
+ ],
+ "summary": "Invention Tags from ID",
+ "description": "",
+ "parameters": [
+ {
+ "name": "inventionId",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/inventions/v1": {
+ "get": {
+ "tags": [
+ "Invention Details from ID"
+ ],
+ "summary": "Invention Details from ID",
+ "description": "",
+ "parameters": [
+ {
+ "name": "inventionId",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/thread": {
+ "get": {
+ "tags": [
+ "Get Messages Latest"
+ ],
+ "summary": "Get Messages Latest/Oldest",
+ "description": "",
+ "parameters": [
+ {
+ "name": "mode",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "maxCount",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ },
+ "post": {
+ "tags": [
+ "Send Message"
+ ],
+ "summary": "Send Message",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/thread/:id/message": {
+ "get": {
+ "tags": [
+ "Messages From ID Latest"
+ ],
+ "summary": "Messages From ID Latest/Oldest",
+ "description": "",
+ "parameters": [
+ {
+ "name": "MessageCount",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "Mode",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/stats/overview": {
+ "get": {
+ "tags": [
+ "Stats Overview"
+ ],
+ "summary": "Stats Overview",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/creatorCompensation/v1/requirements": {
+ "get": {
+ "tags": [
+ "Meets Creator Requirements"
+ ],
+ "summary": "Meets Creator Requirements",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/creatorCompensation/v1/earnedTokenBalance": {
+ "get": {
+ "tags": [
+ "Earned Token Balance"
+ ],
+ "summary": "Earned Token Balance",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/creatorCompensation/v1/bonusPeriod": {
+ "get": {
+ "tags": [
+ "Bonus Period"
+ ],
+ "summary": "Bonus Period",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/actionlink/newPlayerFriendCodeConsumptionCount": {
+ "get": {
+ "tags": [
+ "Players Referred Count"
+ ],
+ "summary": "Players Referred Count",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/stats/creatorstats": {
+ "get": {
+ "tags": [
+ "Creator Stats"
+ ],
+ "summary": "Creator Stats",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/stats/creatorstatsDaily": {
+ "get": {
+ "tags": [
+ "Room Daily Stats"
+ ],
+ "summary": "Room Daily Stats",
+ "description": "",
+ "parameters": [
+ {
+ "name": "roomId",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "numberOfDays",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/stats/roomkeys": {
+ "get": {
+ "tags": [
+ "Room Keys"
+ ],
+ "summary": "Room Keys",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/stats/roomConsumables": {
+ "get": {
+ "tags": [
+ "Room Consumables"
+ ],
+ "summary": "Room Consumables",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/stats/currencyPurchaseOffers": {
+ "get": {
+ "tags": [
+ "Currency Packages"
+ ],
+ "summary": "Currency Packages",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/stats/inventions": {
+ "get": {
+ "tags": [
+ "Inventions List"
+ ],
+ "summary": "Inventions List",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/playlists/:playlistId": {
+ "get": {
+ "tags": [
+ "Get Playlist Information From ID"
+ ],
+ "summary": "Get Playlist Information From ID",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/subscription/top/creators": {
+ "get": {
+ "tags": [
+ "Top Creators"
+ ],
+ "summary": "Top Creators",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/subscription/top/creators/count": {
+ "get": {
+ "tags": [
+ "Number of Top Creators"
+ ],
+ "summary": "Number of Top Creators",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/player": {
+ "post": {
+ "tags": [
+ "Device Stats "
+ ],
+ "summary": "Device Stats / Last Online",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/influencerpartnerprogram/influencer": {
+ "get": {
+ "tags": [
+ "Influencer Support"
+ ],
+ "summary": "Influencer Support",
+ "description": "",
+ "parameters": [
+ {
+ "name": "accountId",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/influencerpartnerprogram/isinfluencer": {
+ "get": {
+ "tags": [
+ "ID is Influencer"
+ ],
+ "summary": "ID is Influencer",
+ "description": "",
+ "parameters": [
+ {
+ "name": "accountId",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/showcase": {
+ "post": {
+ "tags": [
+ "Change Room Showcases on Profile"
+ ],
+ "summary": "Change Room Showcases on Profile",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/actionlink": {
+ "post": {
+ "tags": [
+ "Create Meetup"
+ ],
+ "summary": "Create Meetup",
+ "description": "| **Value** | **Type** | **Description** |\n| --- | --- | --- |\n| data | json | {\"ExtraJson\":\"{\\\\\"RoomId\\\\\":51437513}\",\"Type\":1} |\n| validHours | int | Number of hours that the meetup link is valid for |\n| codeType | int | ?? |\n| extraDataId | int | Extra data such as Room ID. |",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/messages/v3/get": {
+ "get": {
+ "tags": [
+ "Get Notifications"
+ ],
+ "summary": "Get Notifications",
+ "description": "",
+ "parameters": [
+ {
+ "name": "skip",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "take",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "forWebsite",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/itemWishlists/v1/wishlist/me": {
+ "get": {
+ "tags": [
+ "Get Wishlist"
+ ],
+ "summary": "Get Wishlist",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/relationships/v1/mute": {
+ "post": {
+ "tags": [
+ "Ignore"
+ ],
+ "summary": "Ignore",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/roomcurrencies/v1/currencies": {
+ "get": {
+ "tags": [
+ "Currencies"
+ ],
+ "summary": "Currencies",
+ "description": "",
+ "parameters": [
+ {
+ "name": "roomId",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/roomcurrencies/v1/getAllBalances": {
+ "get": {
+ "tags": [
+ "Get All Currency Balances"
+ ],
+ "summary": "Get All Currency Balances",
+ "description": "",
+ "parameters": [
+ {
+ "name": "roomId",
+ "in": "query",
+ "description": "",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ },
+ "/api/avatar/v3/gifts/generate": {
+ "get": {
+ "tags": [
+ "New Request"
+ ],
+ "summary": "New Request",
+ "description": "",
+ "parameters": [],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ }
+ }
+ }
+ }
+ },
+ "components": {
+ "schemas": {},
+ "securitySchemes": {}
+ }
+}
\ No newline at end of file