POST
/
launcher
/
get-message-channels
Get Message Channels
curl --request POST \
  --url https://api.basement.fun/launcher/get-message-channels \
  --header 'Content-Type: application/json' \
  --data '{
  "launcherJwt": "<string>",
  "limit": 20,
  "skip": 0
}'
{
  "total": 123,
  "limit": 123,
  "skip": 123,
  "data": [
    {
      "_id": "<string>",
      "name": "<string>",
      "chatPicture": "<string>",
      "createdAt": 123,
      "updatedAt": 123,
      "participants": [
        {
          "wallet": "<string>",
          "userGroup": 123,
          "permissions": [
            "<string>"
          ]
        }
      ],
      "gameId": "<string>"
    }
  ]
}

Headers

X-Request-Nonce
string

Random string identifier for request (for signature verification)

X-Request-Signature
string

MD5 hash for request verification

Body

application/json

Response

200
application/json

Successful response

The response is of type object.