GET
/
users
/
inboxes
curl --request GET \
  --url https://api-staging.boost.xyz/users/inboxes \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "draft": true,
    "config": {
      "features": [
        "boost-blitz"
      ],
      "supportedActionTypes": [
        "bridge"
      ],
      "projects": [
        {
          "ids": [
            "<string>"
          ],
          "name": "<string>"
        }
      ],
      "rewardTokenNetworks": [
        "<string>"
      ],
      "rewardTokenAddresses": [
        "<any>"
      ],
      "referrerAddress": "<any>",
      "theme": {},
      "logo": "<string>",
      "tags": [
        "<string>"
      ],
      "creatorAddresses": [
        "<any>"
      ],
      "sortBy": "<string>"
    },
    "createdAt": "<string>",
    "updatedAt": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Success
id
string
required
name
string
required
slug
string
required
draft
boolean
required
config
object
required
createdAt
string
required
updatedAt
string
required